What does trajectory evaluation add beyond task success rate for LLM agent evaluation?
Same topic, related formats. Practice these next.
Same topic, related formats. Practice these next.
Trajectory eval scores each tool call and state transition along the agent's run, so you can localize where multi-step agents fail. Success rate only tells you that they failed.
Imagine grading a student on a long math problem. Success rate is like marking the final answer right or wrong, you learn nothing about where they went astray. Trajectory evaluation is like grading every line of work: which formula they picked, whether each step followed, whether they did pointless extra steps. Now if twenty students all slip at line 3, you know exactly what to reteach. For an agent that calls tools across many steps, the final-answer grade hides which tool call was wrong, which step was redundant, and which early mistake the agent later recovered from. Reading the whole trajectory turns a single pass-fail number into a map of failure that tells you what to fix.
Everything you need to truly understand this topic: intuition, mechanics, step by step explanation, code, formulas, and worked example. Click to expand.
Everything you need to truly understand this topic: intuition, mechanics, step by step explanation, code, formulas, and worked example.
Everything important, quickly.
4 min: outcome vs process metrics, the four step-level signals (correctness, state, redundancy, recovery), how aggregation localizes a bug, why each distractor overclaims, and the production pattern of gating on success and debugging on the trajectory.
Real products, models, and research that use this idea.
What an interviewer would ask next. Try answering before peeking at the approach.
Red flags and common mistakes that signal junior thinking. Click to expand.
Reporting only end to end success rate for a multi-step agent. A single pass or fail number cannot tell you which step broke, so you cannot localize or fix the failure.
The night-before-the-interview bullets. Scan these on the way to the call.
Primary sources. Skim if you want the original framing.