The Commonplace
Home Papers Evidence Explore Trends Syntheses Digests References Docs 🎲 Workforce Futures
← Papers
Direction, evidence grade, and study type are AI-generated labels (gpt-5-mini), not human-verified. Syntheses are LLM-written. "Tensions" are machine-detected candidates, not confirmed contradictions. A research-acceleration tool, not peer review. How this is built →

LLMs can tell when their single-pass answer is likely wrong, supporting a cheap stay-or-escalate gate; but they cannot reliably choose which expensive multi-agent collaboration workflow will succeed, so cost-aware routing remains an open deployment problem.

LLMs Can Predict Failure Risk, But Struggle to Predict Which Collaboration Protocol Pays Off: Cost-Aware Protocol Routing Across Reasoning Tasks
Chih-Hsuan Yang, Jingyan Jiang, Cheng-Hau Yang, Vikram Vasudevan, Huihuo Zheng, Venkatram Vishwanath, Rajeev Thakur · August 14, 2026
arxiv descriptive medium evidence 7/10 relevance Full text usable extracted full text Source PDF

Structured author observations

Linked only from stored provider relations; the raw author line above is never matched by name.

Arxiv

Latest observation:

  1. Chih-Hsuan Yang unresolved corpus identity
  2. Jingyan Jiang unresolved corpus identity
  3. Cheng-Hau Yang unresolved corpus identity
  4. Vikram Vasudevan unresolved corpus identity
  5. Huihuo Zheng unresolved corpus identity
  6. Venkatram Vishwanath unresolved corpus identity
  7. Rajeev Thakur unresolved corpus identity

Semantic Scholar

Latest observation:

  1. Chih-Hsuan Yang provider ID
  2. Jingyan Jiang provider ID
  3. Chen Yang provider ID
  4. Vikram Vasudevan provider ID
  5. Huihuo Zheng provider ID
  6. Venkat Vishwanath provider ID
  7. Rajeev Thakur provider ID
On a large matched benchmark, same-model confidence probes reliably predict when a Baseline LLM answer will fail (high AUROC), enabling a useful stay-or-escalate gate, but they perform poorly at selecting which costly multi-agent collaboration protocol (PER or Broadcast) will provide marginal value, leaving cost-aware protocol routing unresolved.

Citation observations

Cumulative provider counts captured on specific dates; providers are never combined.

Multi-agent large language model (LLM) systems can improve reasoning by spending more computation, but deployment requires deciding when extra collaboration is worth its cost. We isolate this decision by running every problem under four protocols while holding the solver fixed within each setting: direct solving (Baseline), iterative self-correction (Single), planner-executor-reviewer collaboration (PER), and multi-agent deliberation (Broadcast). The primary benchmark comprises 4,181 competition-level math problems; paired robustness checks cover four benchmarks spanning competition math, biology, and broader science with two solver families. Across fixed policies, trained routers, and frozen LLM routers, conservative policies under-escalate, whereas higher-solve frozen routers often over-escalate. A post-answer, pre-collaboration gpt-oss-120b probe ranks Baseline failures with 0.8847 AUROC (4,151 parseable cases; 95% CI [0.8732, 0.8955]). The same score remains informative for predicting whether any collaboration helps (0.7683 AUPRC), but is much weaker for identifying PER- or Broadcast-specific value (0.1674 and 0.1041 AUPRC). Separately, the pre-answer self-confidence gate reaches 78.0% solve at 45K tokens, compared with 73.8% at 71.3K for a frozen gpt-oss-120b router and 92.4% for a retrospective fixed-order oracle. Across 10 paired model-condition settings, the oracle adds 23.2-58.3 points of retrospective coverage over Baseline, but protocol profiles vary by task. In the six settings with held-out router evaluations, oracle gaps remain 18.5-28.9 points. Confidence can therefore support initial escalation, while protocol-specific cost-aware routing remains unresolved.

Summary

Main Finding

Multi-agent collaboration protocols (iterative self-correction, planner–executor–reviewer (PER), broadcast deliberation) increase solve rates versus a single direct LLM pass, but the marginal value of each protocol is task-dependent and hard to predict. Same-model confidence signals reliably predict when the Baseline is likely to fail (useful for a binary stay-or-escalate gate), but they are weak at selecting which expensive protocol will pay off. As a result, conservative routers under-escalate (miss recoverable solves) and aggressive/frozen-LLM routers over-escalate (pay large token costs), leaving cost-aware protocol routing an open problem.

Key Points

  • Benchmark & protocols
    • Main benchmark: 4,181 competition-level math problems (Omni-MATH 2), each run once under four fixed protocols with the same solver:
      • BASELINE (direct): avg 18.2K tokens, solve 56.3%
      • SINGLE (iterative self-correction): 47.6K tokens, solve 78.5%
      • PER (planner–executor–reviewer): 401.9K tokens, solve 84.9%
      • BROADCAST (multi-agent deliberation): 622.1K tokens, solve 88.9%
    • Retrospective fixed-order oracle (choose first successful protocol in cost order) achieves 92.4% solve on held-out split and serves as an upper-bound diagnostic.
  • Failure-risk vs protocol-value distinction
    • Post-answer probe (same model, after producing Baseline answer) predicting Baseline correctness:
      • AUROC = 0.8847 (n = 4,151 parseable cases), AUPRC = 0.8950 — strong signal for failure risk.
    • Same failure-risk score applied to protocol-specific targets:
      • Any collaboration helps: AUPRC = 0.7683
      • PER-first success: AUPRC = 0.1674
      • Broadcast-only success: AUPRC = 0.1041 — protocol-specific precision weak.
  • Practical gate
    • Pre-answer self-confidence gate (keep Baseline if confidence ≥70, else escalate to Single) reaches 78.0% solve at 45.0K tokens. This dominates some frozen-router points on the cost–solve frontier but remains 14.4 percentage points below the retrospective oracle on held-out data.
  • Router behavior & trade-offs
    • Heuristic Tier-majority policy: 65.0% solve at 28.9K tokens.
    • Trained lightweight logistic routers (text+metadata) offered modest gains but did not approach oracle.
    • Frozen-LLM routers (e.g., gpt-oss-120b shown as router) raise solves (73.8% → up to ~80–83% for larger routers) at dramatically higher token costs and large excess relative to oracle.
    • Errors are directional:
      • Tier-majority: under-escalates 27.4%, over-escalates 12.5%
      • gpt-oss-120b router: under 18.0%, over 33.3%
      • Larger frozen routers: under 6–11%, over 63–71%
  • Robustness & task dependence
    • Paired checks across 4 benchmarks (OmniMath, JEEBench, SciBench, LAB-Bench) and two solver families (gpt-oss-120b, Gemma-4-31B-it) — oracle improves coverage over Baseline by 23.2–58.3 percentage points across settings.
    • Protocol profiles vary by dataset and solver; Broadcast is often the strongest but does not uniformly dominate PER.
  • Limitations noted by authors
    • Cost measured in token counts only (not latency, price, energy).
    • One deterministic run per problem–protocol (no repeated-sampling expected-utility estimate).
    • Oracle is retrospective and non-deployable; findings show task dependence rather than universal rules.

Data & Methods

  • Matched-execution design: every problem evaluated deterministically under all four protocols using the same solver stack per comparison, enabling exact post hoc comparisons and a fixed-order oracle.
  • Main dataset: Omni-MATH 2 subset (4,181 problems); additional datasets: JEEBench, SciBench, LAB-Bench (with two prompt variants) yielding 10 paired settings across two solvers.
  • Routers evaluated:
    • Fixed policies (Baseline, Tier-majority).
    • Learned lightweight routers: five-class logistic regression over metadata ± TF–IDF text features (stratified splits for train/dev/test).
    • Frozen-LLM routers: label-only prompting that outputs one of the five actions.
    • Pre-answer and post-answer confidence probes from the solver model.
  • Metrics:
    • Solve rate (coverage), average tokens consumed, excess tokens (per-problem positive overpayment vs the retrospective oracle), under- and over-escalation rates, AUROC/AUPRC for failure/benefit prediction.
  • Key numerical results cited above (solve rates, token costs, probe AUROC/AUPRC, oracle gaps) are from the held-out splits and broader matched runs; confidence intervals given for many comparisons via bootstrap.

Implications for AI Economics

  • Deployment trade-offs and pricing
    • Stronger protocols materially increase token consumption (order-of-magnitude jumps), so deploying them universally is economically inefficient. Platforms and providers should consider per-instance routing policies or differentiated pricing to reflect marginal computation costs.
    • Given strong gains in solve rates but large token overheads, monetization can follow a tiered-service model: charge more for "deliberation" protocols or expose protocol choices as premium options (pay-for-escalation).
  • Decision-theoretic routing and expected value of computation
    • The useful post-answer failure signal supports simple decision rules (binary gates) that improve cost-efficiency. But the inability to predict protocol-specific marginal gains implies the need for richer per-instance expected-value estimation (expected benefit of running PER vs Broadcast minus their incremental costs).
    • Economic optimization requires modeling utility of a correct answer (task-dependent) vs token cost; this naturally calls for cost-aware objective functions during router training (e.g., maximize expected net utility rather than solve rate).
  • Market and product design consequences
    • Over-escalation by aggressive routers (especially frozen LLMs) implies high operational costs for cloud providers / app operators — incentives exist to tune routers towards economically optimal escalation thresholds.
    • Service-level agreements (SLAs) and capacity planning must account for skewed, protocol-dependent token demands — unpredictable bursts when many instances escalate to PER/Broadcast can affect provisioning and pricing.
  • Research & investment priorities from an economics perspective
    • Investment in protocol-value prediction (better signals, access to intermediate reasoning traces, causal analyses of when protocols help) can yield large cost savings by preventing unnecessary escalations.
    • Training routers with explicit cost-sensitive losses, reinforcement learning under realistic cost models, or multi-armed bandit approaches with costs could close part of the oracle gap.
    • Developing lightweight proxies for protocol value (e.g., richer metadata, partial traces, cheap verification tests) could be high ROI: reducing token waste while recovering much of the oracle coverage.
  • Risk-management and welfare considerations
    • For critical applications where correctness has high value, paying for expensive protocols may be justified; for low-stakes settings, conservative gating limits costs but accepts higher failure risk. Economists and product managers should quantify the societal/firm-level value of correctness to guide these choices.

Overall, the paper shows that while LLM self-confidence can be monetically useful for a first-stage decision to escalate, per-problem selection among costly collaboration protocols remains unresolved — a clear opportunity for economically-motivated methods that optimize expected net benefit (value of correct output minus computation cost).

Assessment

Paper Typedescriptive Evidence Strengthmedium — Large matched benchmark (4,181 Omni-MATH2 problems) and robustness checks across additional benchmarks and two solver families provide substantial empirical support for claims about failure-risk prediction and routing trade-offs; however the paper reports a single deterministic run per problem–protocol (no fresh-run variability), uses a retrospective oracle (not deployable), measures cost mainly in tokens (not price/latency/energy), and does not establish causal mechanisms for protocol differences, limiting the strength for broader causal or deployment conclusions. Methods Rigorhigh — Design uses full within-instance evaluation of four protocols, stratified train/dev/test splits, bootstrap uncertainty intervals, multiple solvers and benchmarks for robustness, and clear pre-specified evaluation metrics (solve rate, tokens, excess). Limitations are acknowledged (single-run determinism, token-based cost, retrospective oracle), but the experimental and statistical procedures are well-documented and appropriate for the stated diagnostic goals. SamplePrimary dataset: Omni-MATH2 (4,181 competition-level math problems) run deterministically under four protocols using gpt-oss-120b solver; robustness datasets include JEEBench, SciBench, and LAB-Bench (various prompt conditions) producing ten paired settings, with additional analyses using Gemma-4-31B-it; routers evaluated via stratified train/dev/test splits (typical sizes reported), frozen LLM routers and lightweight logistic routers over text/metadata; outcomes are exact-answer correctness, token counts, and retrospective oracle labels. Themeshuman_ai_collab productivity adoption IdentificationWithin-instance matched comparisons: each problem is executed deterministically under four fixed collaboration protocols (Baseline, Single, PER, Broadcast) with the same solver held fixed per setting; retrospective fixed-order oracle (first successful protocol in the cost-ordered sequence) provides an upper-bound diagnostic; learned and frozen routers are evaluated on held-out splits to predict which protocol to choose. No randomized assignment or causal identification beyond within-problem outcome comparisons. GeneralizabilityCost measured primarily in logged tokens — may not map directly to monetary cost, latency, or energy in deployment., Single deterministic execution per problem–protocol — does not capture stochastic variability under repeated runs., Retrospective fixed-order oracle is diagnostic only and not a deployable policy or an estimate of expected per-instance utility., Main router/comparison focuses on one solver family and one math benchmark; robustness checks exist but scope remains limited across domains and model families., Protocol-specific mechanisms (why PER vs Broadcast help) are not causally identified — task dependence is observed but not explained.

Claims (10)

ClaimDirectionOutcomeConfidence & EvidenceDetails
On the main held-out split, the four collaboration protocols achieved solve rates of 56.3% for Baseline, 78.5% for Single, 84.9% for PER, and 88.9% for Broadcast, with average token costs of 18.2K, 47.6K, 401.9K, and 622.1K, respectively. Output Quality positive Exact problem-solving correctness and average inference-token cost by protocol
Reading fidelity high
Study strength medium
n=4181
Solve rate increased from 56.3% with Baseline to 88.9% with Broadcast
0.18
The retrospective fixed-order oracle achieved 92.4% solve coverage on the primary held-out test split, compared with 56.3% for Baseline. Output Quality positive Solve coverage
Reading fidelity high
Study strength low
n=423
36.1 percentage-point increase over Baseline
0.09
The frozen gpt-oss-120b router improved solve rate over Baseline but used substantially more tokens: 73.8% solve at 71.3K average tokens versus 56.3% at 18.2K for Baseline. Organizational Efficiency mixed Solve rate and average inference-token expenditure
Reading fidelity high
Study strength medium
n=423
17.5 percentage-point solve-rate increase; 53.1K additional average tokens
0.18
The gpt-oss-120b router reduced under-escalation to 18.0% but increased over-escalation to 33.3%, whereas the Tier-majority policy under-escalated on 27.4% and over-escalated on 12.5% of test problems. Task Allocation mixed Under-escalation and over-escalation rates
Reading fidelity high
Study strength medium
n=423
Under-escalation decreased by 9.4 percentage points while over-escalation increased by 20.8 percentage points
0.18
A post-answer gpt-oss-120b probe predicting Baseline failure achieved 0.8847 AUROC and 0.8950 AUPRC on 4,151 parseable cases. Decision Quality positive Prediction of Baseline answer failure
Reading fidelity high
Study strength medium
n=4151
0.8847 AUROC; 0.8950 AUPRC
0.18
The same post-answer failure-risk score was substantially weaker for identifying protocol-specific value, achieving 0.1674 AUPRC for PER-first success and 0.1041 AUPRC for Broadcast-only success. Task Allocation negative Precision in identifying which collaboration protocol provides marginal value
Reading fidelity high
Study strength medium
n=4151
0.1674 AUPRC for PER-first success; 0.1041 AUPRC for Broadcast-only success
0.18
The pre-answer self-confidence gate achieved 78.0% solve at 45.0K average tokens, compared with 73.8% solve at 71.3K tokens for the frozen gpt-oss-120b router. Organizational Efficiency positive Solve rate relative to inference-token cost
Reading fidelity high
Study strength medium
n=423
4.2 percentage-point higher solve rate and 26.3K fewer average tokens than the frozen router
0.18
Across 10 paired model-condition settings, the fixed-order oracle exceeded Baseline coverage by 23.2–58.3 percentage points. Output Quality positive Retrospective solve coverage relative to direct Baseline solving
Reading fidelity high
Study strength medium
n=7544
23.2–58.3 percentage-point oracle coverage improvement over Baseline
0.18
The strongest fixed protocol varied by task: Broadcast was strongest in nine of the ten settings, while PER exceeded Broadcast by 2.7 points for Gemma on SciBench. Output Quality mixed Protocol-specific solve coverage
Reading fidelity high
Study strength medium
n=7544
Broadcast strongest in 9 of 10 settings; PER exceeded Broadcast by 2.7 percentage points in one setting
0.18
Held-out text-and-metadata logistic routers improved over Baseline by 7.2–37.5 percentage points in all six evaluated settings but remained 18.5–28.9 points below the fixed-order oracle. Task Allocation mixed Solve coverage of held-out protocol routers relative to Baseline and the retrospective oracle
Reading fidelity high
Study strength medium
7.2–37.5 percentage-point improvement over Baseline; 18.5–28.9 percentage-point gap below oracle
0.18

Notes