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 →

A Bayesian multi-LLM orchestration cuts simulated hiring pipeline costs by roughly one-third and slashes demographic parity gaps in a 1,000-resume test. Most of the savings come from aggregating diverse LLMs and updating beliefs sequentially, with targeted information gathering providing additional benefit.

Bayesian Orchestration of Multi-LLM Agents for Cost-Aware Sequential Decision-Making
Danial Amin · January 04, 2026
arxiv quasi_experimental 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. Danial Amin unresolved corpus identity

Semantic Scholar

Latest observation:

  1. Danial Amin provider ID
A Bayesian, cost-aware multi-LLM orchestration system reduced simulated hiring pipeline costs by 34% and narrowed demographic parity gaps (max group gap 22 → 5 percentage points) on a 1,000-resume test versus the best single-LLM baseline, with most gains attributable to model aggregation and sequential updating.

Citation observations

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

Large language models (LLMs) are increasingly deployed as autonomous decision agents in settings with asymmetric error costs: hiring (missed talent vs wasted interviews), medical triage (missed emergencies vs unnecessary escalation), and fraud detection (approved fraud vs declined legitimate payments). The dominant design queries a single LLM for a posterior over states, thresholds "confidence," and acts; we prove this is inadequate for sequential decisions with costs. We propose a Bayesian, cost-aware multi-LLM orchestration framework that treats LLMs as approximate likelihood models rather than classifiers. For each candidate state, we elicit likelihoods via contrastive prompting, aggregate across diverse models with robust statistics, and update beliefs with Bayes rule under explicit priors as new evidence arrives. This enables coherent belief updating, expected-cost action selection, principled information gathering via value of information, and fairness gains via ensemble bias mitigation. In resume screening with costs of 40000 USD per missed hire, 2500 USD per interview, and 150 USD per phone screen, experiments on 1000 resumes using five LLMs (GPT-4o, Claude 4.5 Sonnet, Gemini Pro, Grok, DeepSeek) reduce total cost by 294000 USD (34 percent) versus the best single-LLM baseline and improve demographic parity by 45 percent (max group gap 22 to 5 percentage points). Ablations attribute 51 percent of savings to multi-LLM aggregation, 43 percent to sequential updating, and 20 percent to disagreement-triggered information gathering, consistent with the theoretical benefits of correct probabilistic foundations.

Summary

Main Finding

Treating multiple LLMs as approximate likelihood providers and performing explicit Bayesian inference (eliciting p(evidence | state) via contrastive prompts, aggregating across models, applying explicit priors, and doing VOI-driven sequential updating) yields large, provable improvements for cost-sensitive, sequential decision-making. In a resume‑screening instantiation this approach cut total costs by 34% (saving $294k) vs the best single‑LLM baseline and substantially reduced demographic disparities (max group difference from 22 to 5 percentage points).

Key Points

  • Diagnosis of failure mode: standard LLM agent pipelines treat models as discriminative classifiers that output p(state | evidence) and apply thresholds. The paper proves fundamental limitations of that paradigm for sequential decision problems:
    • Theorem (Sequential Updating Impossibility): you cannot compute a posterior after new evidence p(s | x1, x2) from a discriminative model's p(s | x1) and x2 alone (without re-querying on the joint input), because the likelihood p(x2 | s, x1) is missing.
    • Discriminative posteriors hide and entangle priors learned from training data, which can mismatch deployment base rates and systematically bias decisions.
    • Discriminative/batch querying prevents principled value‑of‑information (VOI) calculations necessary to decide whether to acquire costly additional information.
  • Proposed alternative: treat each LLM as providing approximate likelihoods p(evidence | state) rather than posterior scores. Key steps:
    • Elicit p(x | s) via contrastive prompting for each hypothesized state s.
    • Aggregate across multiple diverse LLMs using robust statistics to form an ensemble likelihood.
    • Combine ensemble likelihoods with explicit, domain‑appropriate priors and apply Bayes’ rule for sequential belief updating.
    • Use expected‑utility maximization (incorporating asymmetrical costs) to choose actions and VOI calculations to decide whether to acquire additional information (phone screens, tests, authentication).
    • Use multi‑LLM ensembling to detect and mitigate model‑specific bias, improving fairness metrics.
  • Empirical results (resume screening example):
    • Dataset: 1,000 resumes evaluated.
    • LLM ensemble: GPT‑4o, Claude 3.5 Sonnet, Gemini Pro, Grok, DeepSeek.
    • Action cost model: false hire / missed qualified = $40,000; onsite interview = $2,500; phone screen = $150.
    • Outcome: total cost reduction of $294,000 (34% improvement) relative to best single‑LLM baseline; demographic parity improved (max group difference down from 22 to 5 percentage points; 45% improvement).
    • Ablations: multi‑LLM aggregation accounted for 51% of cost savings, sequential updating 43%, and disagreement‑triggered information gathering 20% (ablation overlaps reflect combined effects).
  • Additional claimed benefits: principled VOI enables cost‑effective information acquisition; explicit priors allow deployment‑appropriate calibration; ensemble likelihoods reduce disparate impact.

Data & Methods

  • Application case: automated resume screening with a three‑stage decision space (resume → optional phone screen → onsite interview/hire/reject).
  • Dataset: 1,000 anonymized resumes (paper provides domain assumptions about base rates and demographic groups for fairness evaluation).
  • LLMs used: GPT‑4o, Claude 3.5 Sonnet, Gemini Pro, Grok, DeepSeek (selected for diversity).
  • Likelihood elicitation:
    • Contrastive prompting: for each candidate state s (e.g., unqualified, borderline, qualified, exceptional), prompt models to estimate the probability of observing the resume or additional evidence given that state (p(x | s)).
    • Robust aggregation: combine per‑model likelihood estimates using robust statistics (e.g., median, trimmed mean, or heavy‑tailed aggregation) to reduce model‑specific bias and outliers.
  • Bayesian pipeline:
    • Start with explicit deployment priors p(s) (calibrated to known base rates).
    • Compute posterior p(s | evidence) ∝ p(evidence | s) · p(s).
    • Sequential updates: when new evidence arrives (e.g., phone screen), use the elicited likelihood for that observation to update posteriors without re‑querying joint inputs.
  • Decision rule and VOI:
    • Expected‑utility maximization with asymmetric cost function (domain cost matrix provided).
    • Compute VOI for potential information acquisition as expected reduction in decision cost minus information cost; acquire info if VOI > cost.
  • Fairness mitigation:
    • Inspect ensemble likelihoods by demographic group; apply statistically principled recalibration or re‑weighting if systematic differences persist to reduce selection‑rate disparities.
  • Evaluation metrics:
    • Total monetary cost (sum of action costs and error costs).
    • Fairness: maximum selection‑rate difference across demographic groups (demographic parity proxy).
    • Ablation: remove components (multi‑LLM aggregation, sequential updating, info‑triggering) to estimate contribution to savings.

Implications for AI Economics

  • Economic value of principled inference: explicitly modeling likelihoods and priors and computing VOI can generate substantial monetary savings in high‑volume, high‑cost decision pipelines (the paper reports a 34% reduction in the hiring case). For firms processing large applicant or transaction volumes, such gains scale linearly with throughput.
  • Resource allocation and optimal information purchase: VOI‑based acquisition provides a formal way to trade off inexpensive, incremental information (phone screens, tests, extra authentication) against expensive downstream mistakes, enabling firms to optimize operational budgets and staffing.
  • Costly consequences of hidden priors: the paper highlights that model priors learned from training corpora can create systematic over‑ or under‑selection; correcting these via explicit priors avoids inflated downstream process costs (e.g., interview fatigue, lower hire quality).
  • Fairness as an economic constraint: ensemble likelihoods plus explicit priors allow operators to reduce disparate impacts while still preserving informativeness, thereby lowering legal/regulatory risk and potential liability costs—important in regulated domains (employment, lending, healthcare).
  • Role of multi‑LLM ensembles: combining diverse models acts as a form of model insurance—reducing variance, bias, and tail errors—and can be economically justified when the marginal cost of extra LLM queries is outweighed by avoided error costs.
  • Deployment considerations and open practical trade‑offs:
    • Eliciting p(x | s) reliably from LLMs and aggregating across models imposes extra API and computation costs; firms must compare these costs vs expected error reductions.
    • Accurate domain priors and realistic cost models are essential; mis‑specified priors or cost matrices can negate benefits.
    • Legal/regulatory acceptance may favor transparent, decision‑theoretic pipelines that separate likelihoods and priors (better auditability), but claims about model‑elicited likelihood fidelity warrant further validation in each domain.
  • Broader implication: AI economics should shift from accuracy‑centric evaluations to decision‑theoretic metrics (expected monetary/social cost, VOI, fairness constraints). Architectures that expose or approximate generative components enable economically and socially superior policies in sequential, cost‑sensitive settings.

If you want, I can extract the concrete decision‑rule formulas used in the paper (posterior update, VOI expression, expected utility calculation) and summarize the experimental protocol (prompts, aggregation rules, statistical tests) in more technical detail.

Assessment

Paper Typequasi_experimental Evidence Strengthmedium — The paper shows large, plausible reductions in simulated hiring costs and fairness improvements using multiple proprietary LLMs and ablation analysis, providing reasonably strong internal evidence that the method outperforms single-LLM baselines under the stated assumptions. However, evidence is limited by (a) evaluation in a laboratory/simulation setting rather than live hiring processes, (b) reliance on a single resume dataset of 1,000 cases with unspecified ground-truth hiring outcomes and label quality, (c) sensitivity to the chosen cost parameters and prompt engineering, and (d) use of specific proprietary LLMs that may not generalize to other models or real-world deployment constraints. Methods Rigormedium — The study combines a formal Bayesian framework, theoretical arguments, multi-model ensembles, robust statistics and ablation studies — all signs of careful methodology. Missing or unclear elements reduce rigor: limited reporting of dataset provenance and labeling, lack of statistical significance tests or confidence intervals for reported cost/fairness gains, possible hyperparameter/prompt tuning on test data, limited exploration of robustness to alternative cost specifications, and absence of field validation or randomized deployment. SampleExperiments on a dataset of 1,000 resumes; evaluation compares five LLMs (GPT-4o, Claude 4.5 Sonnet, Gemini Pro, Grok, DeepSeek) under an explicit cost structure (missed hire = $40,000; interview = $2,500; phone screen = $150). The orchestration framework elicits per-state likelihoods via contrastive prompts, aggregates across models, updates beliefs sequentially, and triggers additional information gathering when disagreement is high; reported outcomes include total monetary cost and demographic parity gaps. Paper does not fully specify source of resumes, ground-truth hiring labels, or how demographic groups are defined. Themeshuman_ai_collab labor_markets IdentificationCompare decision pipelines (single-LLM baseline vs. Bayesian multi-LLM orchestration) on a held-out dataset of 1,000 resumes, using an explicit monetary cost model to compute total pipeline costs; use ablation experiments to attribute savings to aggregation, sequential updating, and information gathering. No randomised field deployment — identification rests on controlled algorithmic experiments and counterfactual cost calculations under chosen cost parameters. GeneralizabilitySingle decision domain (resume screening) — results may not transfer to medical triage, fraud detection, or other asymmetric-cost settings without revalidation., Relies on specific proprietary LLMs; performance may change with different model mixes or future model updates., Findings depend on chosen cost parameters (e.g., $40k missed hire); alternate cost specifications could alter relative benefits., Evaluation in simulated/algorithmic conditions rather than live field deployment — operational constraints and human-in-the-loop behavior may change outcomes., Dataset size (1,000 resumes) and unknown provenance/label quality limit external validity across industries, countries, and applicant pools., Prompt engineering, elicitation protocol, and aggregation choices may be tuned to this dataset, risking overfitting.

Claims (9)

ClaimDirectionOutcomeConfidence & EvidenceDetails
The dominant design that queries a single LLM for a posterior over states, thresholds "confidence," and acts is inadequate for sequential decisions with costs. Decision Quality negative suitability of single-LLM posterior-thresholding for sequential cost-sensitive decision quality
Reading fidelity high
Study strength medium
not reported
0.48
We propose a Bayesian, cost-aware multi-LLM orchestration framework that treats LLMs as approximate likelihood models rather than classifiers. Decision Quality positive decision_quality (claimed improvement via methodological change)
Reading fidelity high
Study strength speculative
not reported
0.08
The framework enables coherent belief updating, expected-cost action selection, principled information gathering via value of information, and fairness gains via ensemble bias mitigation. Decision Quality positive coherent belief updating, expected-cost action selection, information gathering effectiveness, fairness (ensemble bias mitigation)
Reading fidelity medium
Study strength speculative
not reported
0.05
In resume screening experiments on 1000 resumes using five LLMs, the proposed system reduces total cost by 294000 USD (34 percent) versus the best single-LLM baseline. Organizational Efficiency positive total monetary cost (aggregate cost across the screening task)
Reading fidelity high
Study strength medium
n=1000
294000 USD (34 percent)
0.48
The system improves demographic parity by 45 percent (max group gap 22 to 5 percentage points) in the resume screening experiments. Inequality positive demographic parity (max group gap in selection rates across groups)
Reading fidelity high
Study strength medium
n=1000
45 percent (max group gap 22 to 5 percentage points)
0.48
Ablation: 51 percent of the cost savings are attributable to multi-LLM aggregation. Organizational Efficiency positive proportion of total cost savings attributable to multi-LLM aggregation
Reading fidelity high
Study strength medium
n=1000
51 percent
0.48
Ablation: 43 percent of the cost savings are attributable to sequential updating. Organizational Efficiency positive proportion of total cost savings attributable to sequential updating
Reading fidelity high
Study strength medium
n=1000
43 percent
0.48
Ablation: 20 percent of the cost savings are attributable to disagreement-triggered information gathering. Organizational Efficiency positive proportion of total cost savings attributable to disagreement-triggered information gathering
Reading fidelity high
Study strength medium
n=1000
20 percent
0.48
Experiments used five LLMs: GPT-4o, Claude 4.5 Sonnet, Gemini Pro, Grok, and DeepSeek. Other null_result experimental model panel composition
Reading fidelity high
Study strength low
n=1000
0.24

Notes