Chapter CMulti-Agent SystemsPage 4 of 8

Multi-Agent Systems

Weigh the tradeoffs

Optimize under real constraints: explain multi-agent systems by connecting a concrete decision to observable evidence.

~13 minTradeoffs

Before you start

Why this matters

Imagine you own a software-release workflow and must explain one decision to a teammate who knows basic AI vocabulary but has never operated this feature. Write two sentences: what problem does multi-agent systems solve, and what evidence would show it is solving that problem? Do not name a vendor or model yet. This separates the enduring idea from one implementation.

1Learn the idea

Read

There is no free optimum

See it

Agent loop
01Plan
02Act
03Observe
04Check

Think → act with a tool → observe → repeat (with a human check)

Parallel specialists can reduce elapsed time and improve review independence, but duplicate tokens and inconsistent assumptions. A supervisor simplifies control yet becomes a bottleneck. Debate can surface errors while producing costly agreement theater if agents share the same blind spot. This is why “best” must always finish the sentence: best for which users, traffic, risk, hardware, budget, and deadline?

Start with constraints, not preferences. A hard privacy rule, an accessibility requirement, or a two-second interaction budget eliminates designs before a weighted score is useful. Among feasible choices, compare expected utility. A simple decision model is:

utility = task_value - error_cost - inference_cost - delay_cost - operations_cost

The terms need not share natural units; agreed weights make assumptions visible. Run sensitivity analysis. If a small change in the error-cost weight flips the winner, the decision is fragile and needs better evidence or a reversible rollout.

Read

A decision matrix

For a software-release workflow, compare at least a simple baseline, a moderate design, and a maximal design. Rate each on quality, severe failures, latency, variable cost, privacy, debuggability, and team burden. Do not let one average score compensate for a prohibited failure. Apply gates first.

A release planner assigns code review, test analysis, and changelog drafting in parallel. The test agent finds a migration failure; the supervisor blocks deploy. Without artifact versions, the changelog agent later overwrites the blocker with an older status. Adding immutable results and a deploy gate preserves the failure signal; three agents help only because their contract is explicit. The lesson is not the final setting; it is the sequence of evidence and the willingness to choose a less impressive configuration when it better satisfies the whole system.

Read

Hidden costs

Count retries, fallbacks, duplicated tokens, review labor, index updates, GPU idle capacity, incident response, and evaluation maintenance. Per-token price alone often reverses the wrong decision. Likewise, local operation is not free after hardware purchase, and automation is not free when humans must repair low-quality cases.

Opportunity cost matters too. A complex architecture may gain two quality points while delaying the feedback loop by a month. A simpler version with a clean trace and rollback can teach more. Choose the smallest design that tests the riskiest assumption.

Read

Reversibility and scope

Prefer reversible choices under uncertainty: canary traffic, versioned indexes, expiring memory, adapters rather than irreversible data changes, and feature flags around orchestration. Restrict early exposure to cases where failure is recoverable. Consequences—not model size—determine the required approval level.

Finally, state who bears each cost. A system can improve an aggregate metric while shifting work to reviewers, slowing users on poor connections, or degrading one language. Segment results and ask whether the people receiving benefits are also absorbing the errors. That question turns an abstract tradeoff into an accountable product decision.

Checking tutor…

Continue learning · glossary & guides