Multi-agent evals run the full team trajectory per task, so eval cost grows 10 to 40 times the single-agent baseline; teams tier the set, use cheaper judges, and cache prefixes aggressively.
Imagine a school where the grading process used to be: a student writes one sentence, the teacher marks it. Now imagine the assignment is a group project with five students, and grading means re-running the entire group project from scratch every time you want to check. If you have 500 such projects to grade for every classroom change, the grading itself becomes a bigger workload than the original teaching. Schools that face this make smaller test sets for daily checks, save the full grading run for weekly reviews, and remember the answers to repeated steps so they do not redo work. Multi-agent teams do the same thing with their evals.
Concept explanation~2 min read
Everything you need to truly understand this topic: intuition, mechanics, step by step explanation, code, formulas, and worked example. Click to expand.
Concept explanation~2 min read
Everything you need to truly understand this topic: intuition, mechanics, step by step explanation, code, formulas, and worked example. Click to expand.
Eval cost is one of the quiet surprises of moving from single-agent to multi-agent. The first eval cycle after the migration produces a bill that does not match anyone's intuition, because the per-task cost grew in a way nobody put on a slide. The bill is real, and the response is not to skip evals (production safety depends on them) but to design the eval budget into the workflow alongside the production budget.
This card walks through why the cost scales the way it does, what three tactics teams use to keep it bounded, and the cultural piece that determines whether the discipline actually holds.
Why multi-agent eval cost is not just 'a bit more'
The single-agent eval shape is simple: one LLM call per task. A 500-task eval suite at 5k tokens per task is 2.5M tokens per cycle, which is dollars at mini-tier prices and trivially below the noise floor of the engineering budget.
The multi-agent eval shape is fundamentally different. Each task runs the full team trajectory: the planner reasons, the supervisor routes, the workers act, the critic might loop. Trajectory length is typically 10 to 40 times the per-call length because each turn carries the cumulative shared context.
The arithmetic is unforgiving.
With 500 tasks, a 20-call trajectory, 4k tokens per call, and a frontier-model price, you reach tens of millions of tokens per cycle. Run it on every PR and you have a five-figure monthly eval bill, which is real money even at mini-tier prices and which can easily exceed the production bill if the production volume is modest. This is the cost that catches teams off guard, and it does so within the first few weeks of running multi-agent in CI.
Situations where this technique stops working.
2–4 min · Everything important, quickly.
Real products, models, and research that use this idea.
- Cognition's Devin shipped tiered evals where the fast set runs on every change and the full SWE-bench-style suite runs on integration branches, exactly because the trajectory cost made full-suite-per-PR untenable.
- Anthropic's Claude Code subagent feature uses prompt caching aggressively in its eval harness; the system prompts and tool definitions are stable and benefit from cached prefixes across eval runs.
What an interviewer would ask next. Try answering before peeking at the approach.
QHow would you decide which 50 tasks belong on the fast eval set?
Pick the tasks that historically caught the most regressions, weight by failure-mode diversity (one task per dominant failure shape), and add a small random sample from the long tail to avoid blind spots.
Red flags & common mistakes
The phrases that signal junior thinking. Click to expand.
Red flags & common mistakes
The phrases that signal junior thinking. Click to expand.
Assuming single-agent eval costs scale linearly to multi-agent. They scale by the full trajectory length, which is usually 10 to 40 times the per-task cost.
60 second bullets to scan on the way to the call.
Why a multi-agent eval costs 10 to 40 times a single-agent eval per task
The math: test-set size times trajectory length times per-call tokens
Primary sources. Browse if you want the original framing.
Same topic, related formats. Practice these next.