One Agent or Many? How to Decide Between Single and Multi-Agent
In June 2025, two of the sharpest engineering teams in AI published advice that sounds like a flat contradiction, in the same month.
Cognition put out a post titled, bluntly, “Don’t Build Multi-Agents.” Anthropic put out one titled “How we built our multi-agent research system,” in which their multi-agent setup beat a single agent by over 90% on their internal research benchmark.
So which is it? Build multi-agents or don’t?
The answer, and the reason this is worth a whole post, is that they’re both right. They’re describing different tasks. The space between their two conclusions is exactly the decision you have to make every time you design an agentic system: one agent, or several? Get it right and you ship something fast, cheap, and debuggable. Get it wrong in the fashionable direction and you ship something that costs ten times as much and breaks in ways you can’t trace.
Let me lay out what each architecture actually is, the shapes multi-agent comes in, the honest costs, and a framework for choosing.
What they actually are
If you’ve read what an agent really is, the single-agent picture is familiar: one model in a loop. It gets a task, reasons, calls a tool, reads the result, and repeats until done. One context window holding everything it’s seen, one set of tools, one thread of control. Every decision is made by the same model with full view of everything.
A multi-agent system splits that up. Several LLM instances, usually specialized, each often with its own context window, its own role, its own subset of tools, coordinated by some mechanism: a lead agent that delegates, a fixed pipeline, a shared message channel, or direct handoffs between peers.
Single agent
One model, one context, one control loop. It sees everything it has done. Simple, cheap, deterministic-ish, easy to debug.
Multi-agent
Several specialized models, each with its own context and tools, coordinated. More capable on the right task, and far more moving parts.
One thing to note before going further: this is generative-AI, LLM-agent territory. It has nothing to do with classical multi-agent reinforcement learning, which shares the name and none of the design questions.
The shapes multi-agent comes in
“Multi-agent” isn’t one thing. When you do decide to use several agents, you’re picking a topology, and they’re not interchangeable. These names are broadly consistent across LangGraph, Google’s ADK, Microsoft’s Agent Framework, and AWS Bedrock.
The debate, and why both sides are right
Now back to those two posts, because reading them together is the whole lesson.
That’s the reconciliation, and it’s the single most useful idea here. Anthropic themselves say it plainly: their approach fits “heavy parallelization” and work that “exceeds single context windows,” and it does not fit “domains that require all agents to share the same context or involve many dependencies between agents.” They even note most coding tasks have fewer truly parallel pieces than research. Cognition and Anthropic aren’t arguing. They’re pointing at different tasks and giving the correct answer for each.
The part nobody puts on the slide: cost
Here’s why the default should be single-agent, and why “let’s use agents for everything” is an expensive habit. Multi-agent buys capability with tokens, a lot of them. Anthropic measured it.
An agent already uses roughly 4x the tokens of a plain chat, because it loops and accumulates context. A multi-agent system uses about 15x. And in their evaluation, token usage alone explained about 80% of the performance variance, which means the capability gain is largely something you’re paying for in tokens, not getting for free. Their own honest caveat: multi-agent only pays off “when the value of the task is high enough to pay for the increased performance.”
On top of the token bill, you get coordination latency (the lead has to plan, delegate, and synthesize, each an extra call), compounding errors across agents, and a system that’s genuinely harder to debug because the failure might be in any of several models or in how they talked to each other.
Single vs multi, side by side
| Dimension | Single agent | Multi-agent |
|---|---|---|
| Cost | ~4x chat | ~15x chat |
| Latency | Lower | Higher (coordination) |
| Debuggability | One trace to read | Many traces, plus their interaction |
| Shared context | Total, sees everything | Split, agents can conflict |
| Parallelism | None | Real, on decomposable tasks |
| Context limit | One window | Scales past one window |
| Best fit | Sequential, coupled, coding | Parallel, read-heavy, research |
The decision, as questions
You don’t choose by vibe or by what’s trending. You choose by answering a few honest questions about the task. If you’re saying “single” to most of these, build one good agent with good tools and stop there.
The takeaway
Multi-agent is not the advanced version of single-agent. It’s a different trade: you spend an order of magnitude more tokens and a lot of simplicity to buy parallelism and specialized context, and that trade is only worth it when the task actually decomposes and is valuable enough to justify the bill.
The reason so many multi-agent projects disappoint is that they were built for tasks that were really sequential and coupled, where a single agent with a good toolset would have been cheaper, faster, and easier to debug. The reason Anthropic’s worked is that research genuinely fans out into independent threads. The reason Cognition warned against it is that coding genuinely doesn’t.
So the honest default is one agent. Give it good tools, good context, and the discipline from the agent design post. Reach for many only when you can look at your task and say, truthfully, “this splits into parallel pieces that don’t need to watch each other.” If you can’t say that, you don’t have a multi-agent problem. You have a single agent that needs better tools.
Foundations for this post: what an agent really is, how AI agents actually work, and LangGraph for building the graphs these topologies run on.
References
Written from scratch. These are the primary, verified sources, including the two posts that frame the debate and the cost numbers. Nothing here is copied from them.
- Anthropic Engineering, how we built our multi-agent research system (source of the 90.2% and token figures): https://www.anthropic.com/engineering/multi-agent-research-system
- Cognition (Walden Yan), Don’t Build Multi-Agents: https://cognition.com/blog/dont-build-multi-agents
- LangGraph multi-agent supervisor (reference): https://reference.langchain.com/python/langgraph-supervisor
- LangChain multi-agent / subagents guide: https://docs.langchain.com/oss/python/langchain/multi-agent/subagents-personal-assistant
- LangChain blog, LangGraph multi-agent workflows: https://www.langchain.com/blog/langgraph-multi-agent-workflows
- Google Developers, guide to multi-agent patterns in ADK: https://developers.googleblog.com/developers-guide-to-multi-agent-patterns-in-adk/
- AWS Bedrock, create multi-agent collaboration: https://docs.aws.amazon.com/bedrock/latest/userguide/create-multi-agent-collaboration.html
- AWS, introducing multi-agent collaboration for Bedrock: https://aws.amazon.com/blogs/aws/introducing-multi-agent-collaboration-capability-for-amazon-bedrock/
- Microsoft Agent Framework overview: https://learn.microsoft.com/en-us/agent-framework/overview/
- OpenAI Swarm (educational multi-agent framework): https://github.com/openai/swarm