There's a seductive idea in AI right now: if one model is good, a committee of models must be better. Put several copies of a language model in a room, let them argue, and out comes a smarter answer — a digital jury, a parliament of minds, or a swarm that hunts for truth the way bees hunt for food. The research literature on multi-agent reasoning has spent four years testing exactly this claim, from simple majority votes to formal debate protocols to swarms guided by optimization algorithms.

The results are more nuanced — and more useful — than the hype suggests. Here's what the science actually says about when models should argue, collaborate, and vote.

The baseline: one model, many minds#

Before committees, there was a simpler trick. Self-consistency (Wang et al., Google Research, 2022) doesn't use multiple models at all: it samples many different reasoning paths from a single model, then takes the most common answer. Think of it as asking one person to think a problem through five different ways and going with the answer they keep landing on. The authors call it a "self-ensemble" — no extra training, no auxiliary models, it works off the shelf.

The numbers are striking. With PaLM-540B, self-consistency lifted GSM8K accuracy from 56.5% to 74.4% — a 17.9-point absolute gain — and added 11.0 points on SVAMP, 12.2 on AQuA, 6.4 on StrategyQA, and 3.9 on ARC-challenge. Notably, the gains grew with model capability: bigger models seem to hold multiple valid reasoning strategies internally, and a single greedy decode just doesn't surface them all.

This matters because self-consistency is the bar every multi-agent scheme must clear — at matched compute. A three-agent system that beats one cheap single-shot call proves nothing about debate itself; it may just be winning on extra inference budget. Any honest comparison controls for that.

The debate era: a society of minds#

The flagship debate paper is Du et al. (2023, ICML 2024), "Improving Factuality and Reasoning in Language Models through Multiagent Debate." The setup: three instances of ChatGPT independently answer a question, then read each other's responses and revise over two rounds, converging on a final answer. The key mechanism is that agents must respond to specific critiques rather than just regenerating from scratch.

It worked. Arithmetic accuracy rose from 67% to 82%, GSM8K from 77% to 85%, MMLU from 64% to 71%, and factual accuracy on biography generation from 66% to 74%. Cross-model debate (ChatGPT plus Bard) worked too — the agents could start out both wrong and still converge on the right answer through argument.

But even the original paper carried caveats that later research would sharpen: debate is expensive (roughly nine model calls per question), long debates strain context windows, and convergence doesn't guarantee correctness — models can confidently entrench a wrong consensus that's hard to break.

The skeptical turn: does debate earn its compute?#

"Should we be going MAD?" (Smit et al., ICML 2024) put multiple debate protocols through their paces and concluded that multi-agent debate "does not reliably outperform other proposed prompting strategies, such as self-consistency and ensembling" — and is "more sensitive to different hyperparameter settings and difficult to optimize." One vivid detail: the Multi-Persona protocol went from one of the worst performers to roughly 15% better on USMLE once its "agreement intensity" — how strongly agents should agree with each other — was tuned.

Then Zhang et al. (2025), "Stop Overvaluing Multi-Agent Debate," ran the most systematic evaluation yet: five debate methods across nine benchmarks and four foundation models. Their finding: debate "often fails to outperform simple single-agent baselines such as Chain-of-Thought and Self-Consistency, even when consuming significantly more inference-time computation." A 2025 scaling analysis drove the point home, measuring multi-agent setups consuming 4 to 220 times more tokens than single-agent approaches across seven datasets, while self-consistency stayed "extremely competitive" at a fraction of the budget.

The one robust remedy Zhang et al. found was model heterogeneity — mixing different foundation models rather than several copies of the same one. They call it "a universal antidote" to the weaknesses of current debate frameworks, and argue the field should embrace it as a core design principle.

The deeper lesson: the gains attributed to "agents debating" come mostly from diversity of perspective plus aggregation, not from the deliberation mechanics themselves. Three copies of the same model with the same prompt add cost without proportional benefit. What helps is uncorrelated errors — and identical twins don't have those.

How you decide matters: vote, don't just talk#

If aggregation does the heavy lifting, then how you aggregate becomes the real question — and here the research gets practical.

ReConcile (Chen et al., ACL 2024) structures debate as a round-table conference among diverse models with confidence-weighted voting: more certain models get more influence, and agents state explicit positions with evidence. It delivered up to 11.4% improvement over single-model baselines and even outperformed GPT-4 on three benchmark datasets. A telling detail: explicit agree/disagree statements with justification produced better outcomes than open-ended discussion.

A 2025 comparison of seven decision protocols (Kaesberg et al., ACL Findings) reported that voting improved reasoning-task performance by about 13% while consensus-seeking added only around 3% on knowledge tasks — and that adding more discussion rounds before voting actually reduced performance. Approval voting failed outright in well over half the cases, reportedly because agents sycophantically agreed with each other too readily. The implication is uncomfortable: the picturesque image of AIs hashing things out until they agree may be the worst configuration, not the best.

Liang et al. (EMNLP 2024) explain part of why. They identify "Degeneration-of-Thought": once an LLM locks in confidence, self-reflection alone can't generate novel ideas. Tit-for-tat debate with adaptive termination does help on counter-intuitive reasoning tasks — but debate also reduces divergent thinking when the agents share similar training distributions. Same-model panels, in other words, argue like people from the same echo chamber.

Swarms: search, don't chatter#

The newest branch drops the talking entirely and treats reasoning as a search problem. Zhu et al. (2025) propose Agent-based Swarm Intelligence (ASI): a group of LLM agents collaboratively explores the solution space the way particle swarms explore an optimization landscape. Their SIER framework uses kernel density estimation and non-dominated sorting to balance solution quality against diversity, evaluates the quality of intermediate reasoning steps to correct bad ones, and stops exploration dynamically via quality thresholds. It's early work, but it reframes the question: maybe the swarm metaphor's power isn't communication, it's coordinated exploration.

The sobering counterpoint comes from SwarmBench (2025), the first benchmark for LLM swarm intelligence under decentralization constraints. Its finding: current models "significantly struggle with robust long-range planning and adaptive strategy formation" when coordination must emerge without a central controller and with only partial information. Genuine swarm behavior — no chair, no shared blackboard, just local signals — is still beyond today's agents. Related benchmarks like MultiAgentBench (ACL 2025) add that mesh-style topologies get the best task scores but at the highest token cost, and that internal distrust between agents can be exploited by adversaries.

The practical scorecard#

ApproachWhat it doesWhere it shinesWatch out for
Self-consistencySample N reasoning paths from one model, majority voteMath, logic, structured QAGains shrink as models approach their capability ceiling
Multi-agent debateAgents critique and revise across roundsFactual QA, counter-intuitive problems4–220× token cost; hyperparameter-sensitive
Heterogeneous panelsDifferent models vote, weighted by confidenceGeneral reasoningOrchestration complexity; still costs more
Swarm searchAgents explore solution space like particlesOpen-ended optimizationYoung field; diversity management unsolved

The takeaway#

Strip away the metaphors and the literature converges on five practical rules:

  1. Start with self-consistency. It's the cheapest multi-path method and the baseline everything else must beat at equal compute.
  2. Make your agents genuinely different. Different models, different prompts, different roles — heterogeneity is the one consistently verified booster.
  3. Budget the debate. A round or two of structured critique, then stop. Endless discussion degrades answers and multiplies cost.
  4. Vote; don't seek unanimity. Confidence-weighted voting beats consensus-chasing, and forcing agreement invites sycophancy.
  5. Match the method to the task. The wins concentrate on reasoning problems with verifiable answers. For open-ended knowledge questions, the multi-agent premium rarely pays.

The committee isn't dead — but it turns out a committee works best when its members think differently, vote honestly, and go home early.