ρ-COLLAPSE

DEFT: Forming Efficient Multi-Agent Committees

A calibrate-once protocol that beats five-seeds-and-vote in every domain we tested, at 3–9× lower cost. The reason it can: your five agents are casting 1.3 votes.

Neff = N / (1 + (N−1)ρ)N = 5 votes castfive seeds of one model · ρ ≈ 0.7Neff ≈ 1.3what the agreement is worth

The world is going multi-agent. Coding agents fan out into sub-agents that review each other’s diffs. Medical and legal assistants only surface an answer when several models concur. Eval harnesses grade responses by how many judges agree. The fastest-rising committee of all is the LLM-as-a-judge1,2:1  Zheng et al., 2023. Judging LLM-as-a-Judge with MT-Bench and Chatbot Arena. NeurIPS 2023.2  Liu et al., 2023. G-Eval: NLG Evaluation Using GPT-4 with Better Human Alignment. EMNLP 2023. models grading models went from evaluation shortcut to the field’s default measuring instrument in under three years, and its newest form is a panel of diverse judges whose consensus is read as ground truth.33  Verga et al., 2024. Replacing Judges with Juries: Evaluating LLM Generations with a Panel of Diverse Models. arXiv 2024. Orchestration frameworks ship committee patterns as first-class primitives, and every serious AI product roadmap now has a box labeled “multiple models vote.” Which means agent selection, routing, collaboration, and communication are quietly becoming some of the deepest engineering problems of our time: who should be on the team, how many seats should it have, how should they talk, and when should you believe them?

Almost every deployed answer to that last question is the same one: agreement equals confidence. And the most common way to build the committee is the cheapest one: sample five completions of the same model at temperature 0.7 and take the majority vote.4,54  Wang et al., 2023. Self-Consistency Improves Chain of Thought Reasoning in Language Models. ICLR 2023.5  Li et al., 2024. More Agents Is All You Need. TMLR 2024. We measured what that construction actually buys, across 11,250 frontier-model completions in three domains, and then built the protocol the measurements demand. It is called DEFT, for Design-Effect-guided Frugal Teams: a calibrate-once recipe that decides who sits on the committee, how many seats it gets, and what its agreement is worth. It wins every head-to-head we ran. In law it scores 0.667 against the default’s 0.585 at a third of the cost. In medicine it scores 0.832 against 0.817 at a ninth of the cost. In science, 0.891 against 0.867 at a fifth. And it usually does this while buying fewer seats, not more.

2026-07-24T01:17:05.382375 image/svg+xml Matplotlib v3.11.1, https://matplotlib.org/ 300 500 1,000 2,000 4,000 cost: output tokens per item (log scale) 0.55 0.60 0.65 0.70 0.75 0.80 0.85 0.90 plurality accuracy 0.585 0.667 Law 0.817 0.832 Medicine 0.867 0.891 Science DEFT beats five-seeds-and-vote in every domain, at 3–9× lower cost five seeds of one model (industry default) DEFT committee
Figure 1: the head-to-head. How to read it: every point is a committee. The vertical axis is accuracy (higher is better); the horizontal axis is what the committee costs to run, in output tokens per question, on a log scale (further left is cheaper). Gray points are the industry default, five seeds of DeepSeek V4 with majority voting. Blue points are the committee DEFT selects for that domain. Each arrow connects a domain’s default to DEFT’s pick, and every arrow points up and to the left: more accurate and cheaper, in all three domains. Because the x-axis is logarithmic, the arrow lengths understate the savings; medicine’s gap is 9.3×.

DEFT is deliberately boring. You measure two numbers per candidate model on about 100 calibration questions, and from there arithmetic makes every decision. No prompt engineering, no debate rounds, no learned router. This post explains why something that simple beats current practice, and the answer is not that DEFT is clever. The answer is that the default is badly mispriced: multi-agent committees everywhere are running head-count math on voters who are secretly the same voter. Any protocol that prices the redundancy correctly starts the race ahead.

Your committee is mispriced because its votes are photocopies

Agreement-as-confidence rests on a theorem with a load-bearing word in it. If five agents with 80% accuracy err independently, the chance they unanimously converge on the same wrong answer is about one in three hundred thousand. That is Condorcet’s jury theorem, from 1785,66  Condorcet, 1785. Essai sur l’application de l’analyse à la probabilité des décisions rendues à la pluralité des voix. Paris, 1785. and it is the reason “two models concurred” feels like evidence. If the agents’ errors are correlated, the same arithmetic is fiction.

Survey statisticians solved the corrupted version of this problem seventy years ago. Poll five people from one household and you did not collect five opinions. Kish (1965)77  Kish, 1965. Survey Sampling. John Wiley & Sons. called the fix the design effect, and it converts N correlated voters into the number of independent voters they are actually worth:

Neff = N / (1 + (N − 1) · ρ)

Here ρ is the pairwise error correlation: how often two models are wrong on the same questions. ρ = 0 is a true second opinion. ρ = 1 is a photocopy. The formula sanity-checks at both extremes: at ρ = 0 you get Neff = N, and at ρ = 1 you get Neff = 1, five copies of one voter.

Correlation itself is no longer news to researchers. Kim, Garg, Peng & Garg document substantial error correlation across 350+ models, rising with accuracy and shared provider,88  Kim, Garg, Peng & Garg, 2025. Correlated Errors in Large Language Models. ICML 2025. and Kohli prices a fixed panel of nine frontier judges at roughly two effective votes.99  Kohli, 2026. Nine Judges, Two Effective Votes: Correlated Errors Undermine LLM Evaluation Panels. arXiv 2026. But almost nobody deploying committees measures ρ, and nobody had priced the construction practitioners actually ship — temperature seeds of a single model — or watched how the answer moves across diversity regimes and knowledge domains. So we measured it, at scale: 8 frontier models, 750 MMLU-Pro questions1010  Wang et al., 2024. MMLU-Pro: A More Robust and Challenging Multi-Task Language Understanding Benchmark. NeurIPS 2024. across science, medicine, and law (about ten answer options per question, which keeps lucky-guess collisions rare), and three committee designs with five seats each. Design one is the industry default, five seeds of DeepSeek V4 at temperature 0.7. Design two is five models from five different Chinese labs (DeepSeek, Kimi, Qwen, GLM, ByteDance Seed) at temperature 0. Design three crosses cultures: DeepSeek, Kimi, Claude, GPT-5-mini, and Gemini, also at temperature 0. After filtering to questions where all five members produced a definite answer, 9,549 responses survive, and every ρ estimate carries a 500-iteration bootstrap confidence interval.

2026-07-24T01:17:05.887516 image/svg+xml Matplotlib v3.11.1, https://matplotlib.org/ 0.0 0.2 0.4 0.6 0.8 1.0 pairwise error correlation ρ (95% bootstrap CI) same-model ×5 seeds cross-family (CN) cross-culture same-model ×5 seeds cross-family (CN) cross-culture same-model ×5 seeds cross-family (CN) cross-culture Law N_eff 1.24 N_eff 1.69 N_eff 1.55 Medicine N_eff 1.27 N_eff 1.33 N_eff 1.42 Science N_eff 1.37 N_eff 1.45 N_eff 1.77 independent errors No committee we measured is close to independent
Figure 2: every committee we measured. How to read it: each row is one committee in one domain. The dot is the measured error correlation ρ, and the whiskers are the 95% bootstrap confidence interval. The dashed line at ρ = 0 is what the vote count silently assumes; the right margin converts each row into effective independent agents out of a nominal five. No row comes close to the dashed line. Same-model committees (gray) sit at ρ = 0.66–0.76, which is 1.24–1.37 effective agents. Diversity helps and never finishes the job: the most independent committee money can currently buy measures ρ = 0.46, worth 1.77 agents of five. And look at the law rows: the all-Chinese-lab committee (blue) is more independent than the culturally mixed one (green), 0.49 versus 0.55. Diversity is a property of the errors, not of the roster’s passports, which is exactly why DEFT measures it instead of assuming it.

Two facts about committees follow immediately. First, temperature is not a personality transplant. Seeds phrase differently, sometimes even reason differently, and then fail on the same questions anyway. Second, “just add more agents” runs out almost instantly: at ρ ≈ 0.5–0.65, the eighth seat adds roughly 0.02 effective agents while still casting a full, correlated vote that can tip a plurality onto a shared wrong answer. More seats can actively make the committee worse, and in our enumeration they do.

The protocol

DEFT is the design-effect formula run in reverse. Instead of diagnosing a committee you already have, it decides who to hire, when to stop hiring, and how much to trust the room once it votes.

CALIBRATE  (once, ~100 items, K·|D_cal| model calls)
    for each candidate model m:   p̂_m  ← accuracy on D_cal
    for each pair (i, j):         ρ̂_ij ← corr. of error indicators

FLOOR      Q ← models within δ = 0.10 of the best p̂
SIZE       N* ← grow N while the marginal hire adds ≥ ε = 0.10
           effective agents at the pool’s measured ρ̂ (Kish)
FILL       S ← the N* cheapest members of Q within budget
PRICE      per item: k of |S| agree → k_eff = k · N_eff/|S| →
           corrected posterior q; accept iff q ≥ τ, else escalate

Everything after calibration is pure arithmetic. It re-runs per domain for free, it is deterministic given the calibration set, and it is monotone in its constraints: shrinking the budget or the seat cap never increases cost. The interesting question is why these four moves and not others, and this is where the measurements earn their keep. Every line of DEFT is licensed by a measured failure of something greedier we tried first.

FLOOR, because minimizing ρ hires incompetence

The obvious protocol, and the first one we tried, goes: if correlation is the disease, select the roster that minimizes ρ. This is a trap, and it is the most instructive negative result in the paper. Because all eight models answered all 750 questions at temperature 0, every subset of the pool is a scoreable committee, so we enumerated all 219 of them. Within every domain, committee ρ̄ correlates positively with plurality accuracy (Spearman +0.13 to +0.36). Chasing low ρ recruits bad models.

The mechanism first showed up as an ablation surprise: drop the weakest model from a committee and the measured ρ rises by 0.09–0.18. A weak agent’s scattered errors look statistically independent, because it disagrees with everyone, including when everyone is right. We call this the competence confound, and it is why DEFT consults accuracy first and ρ only afterwards. The floor removes the models whose “diversity” is really just noise, before the diversity math is allowed to run.

SIZE, because the marginal hire adds a fiftieth of an expert

With the floor applied, how many seats should you buy? The enumeration gives a blunt answer: small committees saturate. The best size-3 committee matches or beats the best committee of any size in every domain, and the full 8-model pool is strictly worse (in law, 0.715 for the best trio versus 0.699 for all eight). That is exactly what the design effect predicts, so DEFT lets the measured ρ̂ draw the staircase and stops climbing when the next step gets too shallow:

2026-07-24T01:17:05.629751 image/svg+xml Matplotlib v3.11.1, https://matplotlib.org/ 1 2 3 4 5 6 7 8 committee seats N 1.0 1.5 2.0 2.5 3.0 3.5 4.0 4.5 N_eff: effective independent agents ρ = 0: what the vote count assumes nearly independent (ρ = 0.1) Medicine ρ̂ = 0.65: DEFT stops at 2 seats (seat 3 would add only +0.093) Law ρ̂ = 0.51: DEFT stops at 3 seats (seat 4 would add only +0.096) The SIZE step: measured correlation, not the operator, sets the committee size
Figure 3: the SIZE step. How to read it: the horizontal axis is committee seats N, and the vertical axis is Neff, the number of independent experts those seats are actually worth. The steep dashed diagonal is the world the vote count assumes, where every seat adds a full expert. The dotted curve shows a nearly independent pool (ρ = 0.1) for contrast. The two solid curves are our measured domains, and they are nearly flat: at medicine’s ρ̂ = 0.65 the second hire brings a fifth of an expert and the third brings +0.09, under DEFT’s ε = 0.10 bar, so DEFT buys a committee of two and stops. Law’s ρ̂ = 0.51 licenses exactly three. The same threshold yields different sizes because the measured correlation differs: the data, not the operator, makes that call.

Walk medicine’s staircase by hand and the economics get visceral. Seat one is a full expert: Neff = 1.00. Seat two brings the committee to 1.21. Seat three: 1.31. Seat four: 1.36. Seat eight: 1.45. The second hire brings a fifth of an expert, the eighth brings a fiftieth, and every one of them costs full price and casts a full, correlated vote. Hiring correlated models is buying the same newspaper twice: ρ̂ measures how much they are the same newspaper, Neff counts the distinct newspapers you actually hold, and ε says stop buying when the next copy is 90% repeat.

FILL, because rosters don’t transfer

Floor set, size chosen: which specific models get the seats? Here is the negative result that killed our fancier ideas. Nothing about roster identity survives domain shift. Across our three domains, the accuracy rankings of the 56 size-5 committees correlate at Spearman −0.46 to +0.38, and the ρ̄ rankings at −0.54 to +0.19. Even the correlation structure is domain-specific. There is no “generally diverse” dream team waiting to be discovered; a roster lovingly tuned on one domain is noise on the next.

So DEFT refuses to roster-optimize at all. Any model that survived the floor is good enough, and the remaining degree of freedom goes to the only thing that reliably transfers across domains: the invoice. Seat the cheapest qualifying models and stop. This is where the 3–9× savings come from, and it is a feature born directly from a failure: we spent the roster-search budget because the data proved roster search is fitting noise.

PRICE, because naive consensus overpays by 23–75 points

The committee is hired. Now, what is its agreement worth? This is the question production systems answer implicitly every time they ship an answer because k models concurred, and it is the question with the most expensive wrong answer. For every item, take the largest same-answer cluster among the five agents, call its size k, and compare what independence-assuming Condorcet math predicts against what actually happens:

2026-07-24T01:17:06.198484 image/svg+xml Matplotlib v3.11.1, https://matplotlib.org/ 2 3 4 5 k of 5 agents agree 0.2 0.4 0.6 0.8 1.0 P(plurality answer correct) +58 pts Law 2 3 4 5 k of 5 agents agree naive (independence) corrected (k·N_eff/N) observed Medicine 2 3 4 5 k of 5 agents agree Science The PRICE step: what agreement is actually worth (cross-culture committees)
Figure 4: what agreement is actually worth. How to read it: one panel per domain, for the cross-culture committees. The horizontal axis is the agreement level k, from 2 of 5 agents up to unanimous. The gray dashed line at the top is the naive posterior, the confidence a Condorcet analysis assigns under independence; it starts at 97–100% already at k=2. The blue line is reality, the fraction of those clusters that were actually correct. The shaded region between them is money on fire: at k=2 the gap is +58 points in law and +75 in medicine. The green line is the one-line Kish correction (keff = k·Neff/N) fed with the same ρ̂ from calibration: it hugs the blue reality line within 5–10 points at k = 4–5. Even at unanimity, naive says 100.0% while reality is 86–99%; a law system that trusts unanimity is wrong one time in seven.

This is why PRICE exists and why its last word is “escalate.” In a deployed committee, the corrected posterior, not the vote count, should decide whether an answer ships or goes to a human. And the correction is free at inference time: it reuses the same ρ̂ the SIZE step already bought during calibration.

The scoreboard, and one sentence to steal

DomainDEFT committeeAcctok/item5-seeds acc5-seeds tok/item
Lawclaude + gemini + gpt5-mini0.6671,5570.5854,665
Medicineclaude + kimi (N = 2)0.8322970.8172,759
Scienceclaude + gpt5-mini + kimi0.8918150.8673,823

DEFT wins every domain at 3–9× lower cost, usually with fewer, better, cheaper seats. Read the medicine row again: the protocol looked at the measured correlation, decided a third seat wasn’t worth hiring, and beat the five-seat default with a committee of two at a ninth of the price. And buried in the law column is the cleanest sentence we can offer a practitioner: five temperature-0.7 seeds of one model score 0.585, below the 0.611 of a single temperature-0 call to the same model.

Temperature sampling plus voting is not ensembling. When a model’s errors are systematic, sampling five noisy copies and voting launders one model’s biases into false confidence, at five times the price.

What this means if you’re building multi-agent systems

The findings compress into rules you can apply this week:

Where this sits in the literature

The premise — LLM committees are correlated — is by now established territory. Kim et al. documented it pairwise across 350+ models;8 Kohli converted it into an effective-size statement for a fixed panel of nine distinct judges, and showed that cleverer aggregation recovers at most 11% of the lost information — the bottleneck is the panel, not the vote-counting.9 DEFT starts where that diagnosis ends. If the panel is the bottleneck, the question worth solving is which panel to buy.

Two papers get closest to that question. Turkmen, Buyukates & Bastopcu select a size-k committee from equally priced candidates by greedy mutual information, and prove that under correlation, picking the top-k models by accuracy is not optimal.1111  Turkmen, Buyukates & Bastopcu, 2026. Don’t Always Pick the Highest-Performing Model: An Information Theoretic View of LLM Ensemble Selection. arXiv 2026. DEFT solves the priced version of their problem: seats cost dollars, not counts, replicas of cheap models are legal moves, the output is a calibrated posterior rather than a subset, and the correlation structure that drives selection gets a cross-domain transfer test instead of a within-dataset one. Chen bounds what any routing, voting, or mixture policy can gain via the co-failure rate β — the fraction of queries where every model in the pool is wrong — and proves that pairwise ρ cannot identify that floor.1212  Chen, 2026. When Does Combining Language Models Help? A Co-Failure Ceiling on Routing, Voting, and Mixture-of-Agents Across 67 Frontier Models. arXiv 2026. Since DEFT is ρ-centric, that critique deserves a direct answer: β caps the ceiling, but it does not determine what intermediate agreement is worth — P(correct | 3 of 5 agree) depends on the joint error structure below the all-wrong cell, which is exactly what PRICE calibrates. And on multiple-choice, Chen’s own measurements put β near zero: the regime where ρ-based pricing is valid. We will report β alongside ρ for every cell in v2 regardless.

The seeds-versus-diversity question is genuinely contested. Self-MoA showed that sampling only the single best model can beat mixing different LLMs at equal sample counts;1313  Li, Lin, Xia & Jin, 2025. Rethinking Mixture-of-Agents: Is Mixing Different Large Language Models Beneficial? ICML 2025. Chen’s matched-quality comparison finds the reverse once member quality is equalized.12 We think the deployment-relevant axis is neither counts nor quality but dollars, and the design effect explains both results inside one framework: a seed committee is cheap per seat and worth ~1.3 votes, a diverse committee is expensive per seat and worth ~1.8, and which one wins depends on the price of the seats — which is what FILL computes.

What remains ours after that accounting: the measured effective size of the temperature-seed committee, the culture-regime contrast (prior work slices diversity by provider family, not lab region), the priced committee knapsack with replicas, the calibrated posterior as the protocol’s output, and the cross-domain transfer test.

Where this goes next

Version 2 is already scoped, and it is aimed at making the claims bigger, not safer. The head-to-head gets a held-out replication on GPQA-Diamond, so the scoreboard graduates from demonstration to deployment guidance. An all-Western committee cell and a non-English variant will pin down one of the most provocative results in the data: that in US common law, an all-Chinese-lab committee out-diversifies a culturally mixed one, suggesting diversity failure is a property of domains organized around a single culture’s framework. And the pricing formula gets an upgrade: the Kish scaling is the crudest correction that could possibly work, and a Dawid-Skene-style aggregator1414  Dawid & Skene, 1979. Maximum Likelihood Estimation of Observer Error-Rates Using the EM Algorithm. Applied Statistics 28(1). with an explicit correlation term should sharpen it at low agreement levels, where the money is. Two robustness columns join the tables in v2: the co-failure floor β for every committee cell, and tetrachoric correlation estimates alongside the Pearson ones.

The open questions we would most love the community to attack:

Coda

The multi-agent era is being built on a borrowed intuition: that many minds are safer than one. The intuition is right, and the accounting is wrong. Independence is not a default you get by calling the API five times; it is a scarce, measurable, domain-specific resource, and today almost every committee in production is spending it like it’s free. DEFT is one formula pointed at that mistake: measure ρ, let it size the room, spend the savings on better seats, and discount the applause by the number of distinct voters in it. The teams that internalize this will run cheaper, smaller, sharper committees than the teams that count heads. The vote count was never the evidence. The independence was.

The scale behind these conclusions

The conclusions rest on 11,250 frontier-model completions: 8 frontier models — DeepSeek V4, Kimi, Qwen, GLM, ByteDance Seed, Claude, GPT-5-mini, and Gemini — run against 750 MMLU-Pro questions spanning science, medicine, and law, with roughly ten answer options per question to keep lucky-guess collisions rare. Three five-seat committee designs were scored end to end — same-model seeds, five models from five different labs, and a cross-cultural roster. After filtering to items where all five members produced a definite answer, 9,549 responses survive. Every pairwise ρ estimate carries a 500-iteration bootstrap confidence interval, and every cost figure is measured output tokens per item.

References

  1. Zheng et al., 2023. Judging LLM-as-a-Judge with MT-Bench and Chatbot Arena. NeurIPS 2023.
  2. Liu et al., 2023. G-Eval: NLG Evaluation Using GPT-4 with Better Human Alignment. EMNLP 2023.
  3. Verga et al., 2024. Replacing Judges with Juries: Evaluating LLM Generations with a Panel of Diverse Models. arXiv 2024.
  4. Wang et al., 2023. Self-Consistency Improves Chain of Thought Reasoning in Language Models. ICLR 2023.
  5. Li et al., 2024. More Agents Is All You Need. TMLR 2024.
  6. Condorcet, 1785. Essai sur l’application de l’analyse à la probabilité des décisions rendues à la pluralité des voix. Paris, 1785.
  7. Kish, 1965. Survey Sampling. John Wiley & Sons.
  8. Kim, Garg, Peng & Garg, 2025. Correlated Errors in Large Language Models. ICML 2025.
  9. Kohli, 2026. Nine Judges, Two Effective Votes: Correlated Errors Undermine LLM Evaluation Panels. arXiv 2026.
  10. Wang et al., 2024. MMLU-Pro: A More Robust and Challenging Multi-Task Language Understanding Benchmark. NeurIPS 2024.
  11. Turkmen, Buyukates & Bastopcu, 2026. Don’t Always Pick the Highest-Performing Model: An Information Theoretic View of LLM Ensemble Selection. arXiv 2026.
  12. Chen, 2026. When Does Combining Language Models Help? A Co-Failure Ceiling on Routing, Voting, and Mixture-of-Agents Across 67 Frontier Models. arXiv 2026.
  13. Li, Lin, Xia & Jin, 2025. Rethinking Mixture-of-Agents: Is Mixing Different Large Language Models Beneficial? ICML 2025.
  14. Dawid & Skene, 1979. Maximum Likelihood Estimation of Observer Error-Rates Using the EM Algorithm. Applied Statistics 28(1).
  15. Yax, Oudeyer & Palminteri, 2024. PhyloLM: Inferring the Phylogeny of Large Language Models and Predicting their Performances in Benchmarks. ICLR 2025.

Please cite this work as

Katte, Abhijeet, and Basab Ghosh. “DEFT: Forming Efficient Multi-Agent Committees.” July 2026. https://www.cmul8.com/research/deft/
@misc{katte2026deft,
  author = {Katte, Abhijeet and Ghosh, Basab},
  title  = {DEFT: Forming Efficient Multi-Agent Committees},
  year   = {2026},
  month  = {July},
  url    = {https://www.cmul8.com/research/deft/}
}
· ρ ·