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 →

Counting compute flips leaderboard outcomes: when latency, tokens and API calls are penalized, models that buy small factuality gains via brute-force tactics (e.g., Best-of-N) lose to leaner agents—MAS-HQ exposes this deployment-relevant trade-off with a reproducible Q-Score.

The Cost of Knowing: A Resource-Aware Protocol for Benchmarking Hallucination Beyond Static Leaderboards
Keyu Li, Jin Gao, Dequan Wang · July 27, 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. Keyu Li unresolved corpus identity
  2. Jin Gao unresolved corpus identity
  3. Dequan Wang unresolved corpus identity

Semantic Scholar

Latest observation:

  1. Keyu Li provider ID
  2. Jin Gao provider ID
  3. Dequan Wang provider ID
MAS-HQ is a resource-aware benchmarking protocol that subtracts a normalized operational-cost penalty from factuality scores (Q-Score), revealing reproducible ranking reversals where higher raw factuality is often purchased with disproportionate compute and latency.

Citation observations

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

On standard factuality tasks, frontier models now cluster near the top of the scale. The question is therefore shifting from how factual a system is toward how much compute that factuality costs. Static leaderboards score factuality in isolation and treat compute as free, so they cannot tell a genuinely better system apart from one that simply spends more. Consider a ranking reversal. A brute-force Best-of-4 agent posts the higher raw factuality score (H-Score 0.9169 vs 0.9103) and would top a static leaderboard, but once cost is counted it is the worse system, losing on Q-Score (0.5169 vs 0.5217) at roughly four times the tokens and latency, under a reported cost weight whose sensitivity we sweep. So the system that tops a static leaderboard can be the worse one to deploy. To make this trade-off visible, we introduce MAS-HQ (Multi-Agent System Hallucination Quest), a resource-aware evaluation protocol. It wraps any factuality detector and normalizes for cost, and it pits systems against each other rather than scoring them in isolation. The Q-Score measures factuality minus normalized cost under a competitive match. Across summarization and open-domain QA, single-agent baselines drift into resource-heavy over-optimization, while competition elicits more resource-efficient policies. These gains are small but consistent, and stable across 100 trials. The axis stays discriminative for frontier systems (Gemini-2.5-Pro, and GPT-5) whose raw factuality scores are already bunched near the ceiling. MAS-HQ provides a reproducible way to measure how much a factual answer costs.

Summary

Main Finding

Static factuality leaderboards that treat compute as free can mislead deployment choices: agents that “buy” marginal factuality with much higher compute (e.g., Best-of‑N sampling) can top static leaderboards yet be inferior once operational cost is counted. The paper introduces MAS‑HQ, a resource‑aware head‑to‑head evaluation protocol and a reference Q‑Agent that jointly scores factuality and normalized cost (the Q‑Score). Across summarization and open‑domain QA on news passages, MAS‑HQ reveals small but reproducible ranking reversals and pushes agents toward more resource‑efficient policies—even for frontier models (GPT‑5, Gemini‑2.5‑Pro).

Key Points

  • Problem framed: leaderboards score factuality in isolation and implicitly assume infinite compute; this rewards brute‑force strategies (e.g., Best‑of‑N) that can be costly to deploy.
  • MAS‑HQ protocol: pairs agents in competitive matches, measures factuality with any plugged‑in detector (H‑Score), computes a normalized operational cost penalty, and combines them into the Q‑Score: Q‑Score = (1/N) * sum_i (α * H‑Score_i − β * P_i) where P_i aggregates normalized API calls, tokens (input+output), review iterations, and wall‑clock time over the agents in the match. α and β are deployment knobs.
  • Q‑Agent reference architecture: modular components (Policy Agent, Summarization Agent, Review Agent, Evaluation Agent) and an optional “vision mechanism” that reveals limited opponent telemetry when costly actions (e.g., review) are taken.
  • Primary empirical finding: a Best‑of‑4 baseline had higher raw factuality (H‑Score 0.9169) than a Q‑Agent (H‑Score 0.9103) but lost on Q‑Score (0.5169 vs. 0.5217) while spending ~4× tokens and latency. The reversal is reproducible across 100 trials.
  • The cost‑of‑knowing trade‑off persists for SOTA models (GPT‑5, Gemini‑2.5‑Pro): higher H‑Score does not guarantee a win once normalized cost is scored.
  • Sensitivity and ablations: β tunes between raw, resource‑agnostic ranking (β → 0) and cost‑dominated behavior (large β). β = 0.01 was used as an intermediate illustrative setting; β = 0 collapses to static leaderboard behavior. MAS‑HQ is metric‑agnostic (quality detector can be replaced) and scales to >2 agents.
  • Protocol design choice: cost penalty is relative (max‑normalized within a match), so Q‑Score is match‑specific; intrinsic rankings would require tournament/Elo aggregation (left for future work).

Data & Methods

  • Tasks and data: evaluation on >1,000 long‑form news passages used as information‑synthesis proxies (808–813 passages evaluated per head‑to‑head match after filtering for model safety refusals).
  • Factuality metric: automated discriminator from the hallucination leaderboard (Bao et al., 2024). Human validation: blind expert evaluation on 100 randomly sampled summaries produced Pearson r = 0.96 with the discriminator H‑Score.
  • Q‑Score components:
    • H‑Score_i ∈ [0,1] for each task i (from the plugged detector).
    • P_i = normalized penalty aggregating API calls, total tokens (input+output), review iterations, and runtime; max‑normalized within the match.
    • α, β > 0 are deployment parameters (α = 1, β = 0.01 used as the main reported point; sweeps performed).
  • Q‑Agent implementation:
    • Policy Agent (PA): chooses actions {continue, review, end} given private state and optional opponent telemetry.
    • Summarization Agent (SA): generates initial summary (not directly cost‑aware to avoid trivial "say less" shortcuts).
    • Review Agent (RA): optional refinements, consumes review budget R (R = 3 in experiments).
    • Evaluation Agent (EA): computes H‑Score and tracks resource use to inform PA decisions.
    • Vision mechanism: parameterized telemetry knob; when enabled, costly actions reveal a snapshot of opponent state to the rival.
  • Baselines and comparisons: single‑agent Best‑of‑N (N=1,2,4) baselines; multiple LLM families tested (GPT‑4o‑mini, GPT‑5, Gemini‑2.x, Grok‑3, Qwen‑Max, Deepseek‑v3).
  • Reproducibility checks: repeated matches (100 trials) to assess variance; ablations for β, review component, vision knob; also tested replacing Q‑Agent with standard ReAct agent under same rules.

Implications for AI Economics

  • Model selection and procurement: MAS‑HQ demonstrates that pure accuracy rankings can be misleading for deployment decisions. Procurement should consider the marginal cost of factuality (compute, latency, API calls), not only raw accuracy.
  • Pricing and SLAs: α and β map to deployment SLAs and cost–quality trade‑offs. Buyers and providers can use MAS‑HQ‑style curves to set SLA parameters, price API tiers, or choose models that optimize operational utility given latency/token budgets.
  • Incentives for system design: scoring cost alongside accuracy discourages brute‑force, resource‑heavy mitigation tactics (e.g., large Best‑of‑N runs) and incentivizes more efficient verification/revision policies or architectural changes (e.g., cheaper retrieval pipelines, selective review).
  • Market signals and competition: head‑to‑head, match‑relative penalties simulate competitive deployment settings where cost is relative; this can change ordering among providers and inform competitive strategy (e.g., optimize for cost‑adjusted utility rather than raw H‑Score).
  • Capacity planning and cost‑benefit analysis: MAS‑HQ produces reproducible, quantifiable trade‑off estimates that can feed capacity planning, budget allocation, and marginal cost calculations for real‑time systems (finance, news intelligence) where latency matters.
  • Limitations and further economic modeling:
    • Q‑Score is match‑specific because penalties are normalized across co‑present competitors; deriving an intrinsic, market‑wide ranking requires tournaments or Elo‑style aggregation.
    • The protocol measures operational proxies (tokens, API calls, runtime), not direct monetary cost; mapping to $ cost requires provider pricing data.
    • Results depend on the chosen factuality detector and α/β settings; detector reliability and SLA calibration are economic inputs to the evaluation.
    • Additional externalities (e.g., user trust, monetized errors, downstream costs of hallucination) are not directly priced in the Q‑Score and would need domain‑specific extensions.
  • Practical takeaways for economists and practitioners:
    • Use resource‑aware evaluation when making deployment or procurement choices.
    • Report cost‑sensitivity (α, β) and provide cost‑accuracy curves rather than single static metrics.
    • Consider tournament aggregation to produce market‑level rankings and incorporate provider pricing to translate normalized penalties into monetary terms.

Summary: MAS‑HQ operationalizes “cost of knowing” by combining any factuality detector with a normalized operational cost penalty in a competitive match format. The protocol surfaces deployment‑relevant trade‑offs, punishes brute‑force, expensive strategies, and yields reproducible ranking changes that static leaderboards hide—insights directly relevant to AI procurement, SLA design, and economic evaluation of LLM systems.

Assessment

Paper Typedescriptive Evidence Strengthmedium — The paper presents systematic experiments across many widely used LLMs, validates its factuality detector against human judgments (Pearson r=0.96), repeats key matches (100 trials) and runs ablations/sensitivity checks on cost weights, demonstrating consistent but modest ranking reversals; however results depend on chosen penalty normalization (match-relative Pi), deployment-SLA knobs (α,β), the pooled discriminator metric, and a news-passage domain, limiting claims about broader operational settings. Methods Rigormedium — Experimental design is thorough: large sample of long-form news passages (~1,000), intersection filtering (808–813 examples per match), multiple LLMs including frontier models, repeated trials, ablations (β sweep, telemetry knob, N-player), and metric validation; but the cost penalty is relative to competitors (match-specific), no external real-world cost/pricing or latency heterogeneity modeling, and no tournament-style aggregation or equilibrium analysis, which constrain rigor for deployment-general causal claims. SampleExperimental matches on >1,000 long-form news passages (filtered to the intersection both competing LLMs can process, 808–813 passages per head-to-head). Evaluated across multiple foundation models (e.g., GPT-4o-mini, GPT-5, Gemini-2.5-Pro, Qwen-Max, Grok-3-beta, DeepSeek-v3). Factuality (H-Score) computed by a pretrained discriminator from a hallucination leaderboard and validated via blind human eval on 100 samples (Pearson r=0.96). Main protocol parameters: hallucination threshold T=0.85, max review cycles R=3, default α=1 and β=0.01, repeated matches (100 trials) for stability checks. Themesadoption productivity GeneralizabilityCost penalty Pi is max-normalized within each match (relative), so rankings are match-specific and do not directly translate to absolute deployment costs or vendor pricing models., Results depend on chosen α,β (deployment-SLA knobs); different weightings can collapse to pure accuracy or heavily penalize review., Factuality detector choice matters: H-Score is validated on news summaries but other detectors or domains may produce different orderings., Domain-limited: experiments use long-form news passages; behavior on other tasks (code, dialog, specialized knowledge) may differ., Excludes passages that trigger model refusals, which may bias the sample toward less contentious inputs., Lab measurement of latency and API calls may not capture heterogeneous real-world infrastructure, network effects, or priced billing models.

Claims (7)

ClaimDirectionOutcomeConfidence & EvidenceDetails
A Best-of-4 strategy achieves higher raw factuality than Q-Agent A but receives a lower Q-Score once operational cost is included. Organizational Efficiency mixed Factuality-adjusted deployment utility combining H-Score with normalized resource cost
Reading fidelity high
Study strength medium
H-Score 0.9169 vs. 0.9103; Q-Score 0.5169 vs. 0.5217; approximately 4× the token volume and latency
0.18
The Q-Agent A versus Q-Agent B Q-Score advantage is stable across 100 independent trials. Organizational Efficiency positive Q-Score in repeated head-to-head matches
Reading fidelity high
Study strength medium
n=100
Q-Agent A: 0.5216±0.0009 versus Q-Agent B: 0.5131±0.0009
0.18
The cost-adjusted ranking reversal also occurs for frontier systems, including GPT-5 and Gemini-2.5-Pro, whose raw factuality scores are near the top of the scale. Organizational Efficiency mixed Relative ranking based on raw factuality versus cost-adjusted Q-Score
Reading fidelity high
Study strength medium
GPT-5: H-Score 0.9312 vs. 0.9278, but Q-Score 0.5312 vs. 0.5381; Gemini-2.5-Pro: H-Score 0.9264 vs. 0.9221, but Q-Score 0.5264 vs. 0.5310
0.18
Competition can produce more resource-efficient policies than single-agent Best-of-N strategies, capturing similar factuality with lower resource consumption. Organizational Efficiency positive Resource efficiency conditional on factuality
Reading fidelity high
Study strength medium
Q-Agent A: 1.36M tokens and Q-Score 0.5217 versus Best-of-4: 6.32M tokens and Q-Score 0.5169
0.18
The automated hallucination discriminator’s H-Score correlates strongly with expert human judgments. Output Quality positive Agreement between automated factual-consistency scores and expert judgments
Reading fidelity high
Study strength medium
n=100
Pearson correlation 0.96
0.18
Increasing the cost weight changes the optimization trade-off: with no cost penalty the protocol collapses to raw factuality, whereas a higher penalty suppresses review and factuality gains. Task Allocation mixed Review behavior, factuality, and Q-Score as a function of the cost-weight parameter β
Reading fidelity high
Study strength medium
At β=0, Q-Agent A review count is 854 and H-Score is 0.9166; at β=0.01, review count is 791 and H-Score is 0.9103; at β=0.02, review count is 755 and H-Score is 0.9043
0.18
In three-agent competition, the framework continues to produce measurable cost pressure, with the lowest-H-Score agent winning through resource efficiency. Team Performance positive Winner determined by cost-adjusted Q-Score in a three-agent match
Reading fidelity high
Study strength low
n=3
Q-Agent A: H-Score 0.9108 and Q-Score 0.5214; Q-Agent B: H-Score 0.9139 and Q-Score 0.5139; Q-Agent C: H-Score 0.9123 and Q-Score 0.5180
0.09

Notes