8.5 KiB
theme, title, info, author, transition, mdc, lineNumbers, monaco, aspectRatio, canvasWidth, layout, class
| theme | title | info | author | transition | mdc | lineNumbers | monaco | aspectRatio | canvasWidth | layout | class |
|---|---|---|---|---|---|---|---|---|---|---|---|
| seriph | Lesson 22 — How Do You Test an Agent Instead of Its Final Answer? | English video course for AI Agents in Depth | Bojie Li | slide-left | true | false | false | 16/9 | 980 | cover | cover |
How Do You Test an Agent Instead of Its Final Answer?
Environments, state, datasets, and executable verification
Problems this chapter will solve
Lesson 22
How Do You Test an Agent Instead of Its Final Answer?
Lesson 23
How Do You Judge Quality Without Hiding Failure?
Lesson 24
Which Agent Should You Ship?
Lesson 25
Did the Agent Improve—or Did the Numbers Move?
Why this problem matters
Initial state
Every run begins from the same controllable world.
Interaction
The Agent receives realistic tools, errors, and user disclosures.
Verification
Success is read from external state—not self-reported.
Three ideas to keep in view
Dataset
Initial state + goal + boundary cases + success criteria
Environment
State transitions, reset, tools, and termination
Protocol
Tool-only tasks or progressive user simulation
The book's visual model
Answer benchmark vs. Agent evaluation
Answer benchmark
- One prompt
- One response
- String or judge score
Agent evaluation
- Mutable state
- Multi-turn trajectory
- Executable outcome checks
Reset, act, and inspect
state = environment.reset(case.seed)
trajectory = agent.run(case.goal, environment.tools)
outcome = environment.snapshot()
passed = verifier.check(outcome, trajectory)
store(case, trajectory, outcome, passed)
Test the claim
Score a reporting Agent from external state
Observe: Tool-call correctness, arithmetic, evidence citations, and unsupported-claim vetoes
class: course-terminal
Switching to the terminal
$ cd chapter6/public-health-reporting-eval && python demo.py
What the evidence supports
Finding 1
A resettable environment turns a trajectory into a repeatable experiment.
Finding 2
Progressive disclosure tests whether an Agent knows what to ask.
Finding 3
Objective state checks are stronger than judging the final prose alone.