7.6 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 41 — When Is Multi-Agent Actually Better Than One Agent? | English video course for AI Agents in Depth | Bojie Li | slide-left | true | false | false | 16/9 | 980 | cover | cover |
When Is Multi-Agent Actually Better Than One Agent?
Information gain, parallelism, verification, budgets, and cost
layout: center class: text-center
Why this problem matters
New evidence
Execution, rendering, browsing, and independent observations change the answer.
Parallel time
Independent searches reduce wall-clock latency when resources allow.
Cost
Multi-Agent systems may spend several times—or an order of magnitude—more tokens.
Three ideas to keep in view
Information gain
The verifier observes something unavailable at generation time
Single settlement
One success can resolve the task and stop siblings
Budget awareness
Strategy changes with remaining steps and task value
The book's visual model
More voices vs. More observations
More voices
- Same text
- Same evidence
- More samples and debate
More observations
- Independent tools
- Execution or visual feedback
- Parallel environment interaction
Settle once; cancel the rest
jobs = spawn_parallel(search_shards)
for result in as_completed(jobs):
evidence.merge(result.receipts)
if verifier.sufficient(evidence):
cancel_all(jobs); break
Test the claim
Run parallel web research with independent browsers
Observe: Cited evidence, browser isolation, parallel speedup, timeout handling, and cleanup
class: course-terminal
Switching to the terminal
$ cd chapter10/parallel-web-research && python demo.py
What the evidence supports
Finding 1
Debate over identical evidence often matches a single Agent at equal compute.
Finding 2
External feedback can nearly double performance because it adds observations.
Finding 3
Parallel speedup is real only when setup, contention, and cancellation costs are included.