Use cases
Real projects built using NEO, from LLM benchmarks to agent swarms. Pick a workflow below to browse, or start with a featured use case.
24 use cases · 7 workflows · production-tested
Agents with brittle tool calls. Prompts that need another pass. Evals before you trust a model swap. NEO lives in VS Code or Cursor and helps you turn that work into real code and runs, so you iterate on behavior, not boilerplate.
Get started def run_eval(model, tasks):- results = model.predict(tasks)+ results = batch_eval(model, tasks)+ log_regression(results) return score(results)