0 cumulative citations
View corpus contextA Pandora’s-Box routing rule lets AI systems avoid many expensive value-estimation calls while keeping allocation quality, using closed-form reservation prices to decide when extra computation is worth the cost; in decentralized bidding, inspection improves efficiency when estimates are accurate but can advantage strategic agents under noisy competition.
Citation observations
Cumulative provider counts captured on specific dates; providers are never combined.
Heterogeneous AI systems composed of multiple models, architectures, harnesses, or inference-time settings can improve quality and efficiency by routing queries to the specialist who can answer most effectively at the lowest cost. Routing requires estimating each specialist's expected return, but this value estimation has a cost. Cheap estimators (e.g., embedding-based predictors) are fast but noisy, while accurate estimators (e.g., fine-tuned models with access to retrieval results or partial reasoning traces) are expensive. We formalize this tradeoff as an instance of Pandora's Box, the classical problem of optimal search with costly inspection. Under a Gaussian signal model, the resulting policies have closed-form value-of-information expressions that determine, for each specialist and input, whether refining the value estimate is worth its cost. We call the centralized policy Pandora's Router. We extend this to a decentralized setting, Pandora's Bidder, where specialists independently decide whether to invest in self-assessment before accepting an offered price to claim a query. Experiments across three domains---a standard multi-LLM benchmark, retrieval-augmented specialists, and LLMs with variable inference-time reasoning---show that Pandora's Router matches the routing quality of exhaustive estimation, while querying the expensive estimator far less often. In the decentralized setting, value-of-information reasoning improves allocative efficiency when competing estimates are accurate; when competing estimates are noisy, however, it can increase the strategic specialist's utility at the expense of others.
Summary
Main Finding
Routing queries among heterogeneous AI specialists should account for the (non‑negligible) cost of value estimation. Casting the problem as a Pandora’s Box instance yields simple, interpretable value‑of‑information (VOI) rules: compute expensive value estimates only when their expected upside exceeds their cost. Under a Gaussian signal model these VOI rules (reservation prices) have closed‑form expressions. A centralized policy (Pandora’s Router) recovers near‑optimal allocation quality while invoking costly estimators far less often than exhaustive inspection. In a decentralized variant (Pandora’s Bidder), specialists deciding whether to pay for self‑assessment at posted prices can improve allocative efficiency when competing estimates are accurate, but strategic inspection can also redistribute surplus (helping the inspecting specialist at others’ expense) when competing signals are noisy.
Key Points
- Problem formulation
- Each specialist m has a cheap estimate Fm(x) (always available) and a costly, more accurate estimate Gm(x) obtainable for cost cg,m.
- The router’s objective: maximize expected reward of the assigned specialist minus total estimation costs.
- Estimation itself is an economic decision (tradeoff between cost and information value).
- Pandora’s Box mapping
- Specialists ↔ boxes; paying cg to observe Gm is opening a box.
- Reservation price ursv_m (Weitzman) encodes when opening a box is worth the cost: E[(Vm − ursv_m)+] = c_m (Vm is the unknown reward).
- Two variants:
- Pandora‑OI (obligatory inspection): must open chosen boxes; optimal policy opens boxes in descending reservation‑price order and stops according to remaining reservation prices.
- Pandora‑NI (non‑obligatory inspection): you may commit sight‑unseen to an unopened box; NP‑hard in general, so the paper uses a tractable “committing” policy with a backup price ubackup_m defined similarly.
- Gaussian signal model & closed form
- Under a conditional Gaussian model for the relationship between cheap and costly signals, the VOI expressions and reservation/backup prices have closed forms that are straightforward to compute per input and per specialist.
- Decentralized setting (Pandora’s Bidder)
- Specialists face a posted price (current best offer) and decide whether to invest in self‑assessment (pay cost to learn Gm) before claiming the query.
- This models a single stage of an ascending‑price mechanism with costly preference elicitation; it isolates incentives and strategic value of private estimation.
- Empirical domains and findings
- Three empirical settings: Math (inference‑time CoT partial traces), RAG (retrieval‑augmented specialists with private corpora), and EmbedLLM (large model pool routing).
- Cheap estimator: KNN on prompt embeddings (Fm). Costly estimator: small fine‑tuned LMs predicting reward from prompt + private auxiliary info (Gm).
- Calibration/training/test splits used to fit estimators and calibrate VOI parameters.
- Table highlights (held‑out calibration MSE; cost ratios):
- Math: MSE(F)=0.154 vs MSE(G)=0.096; cg/cf ≈ 5.8
- RAG: MSE(F)=0.175 vs MSE(G)=0.109; cg/cf ≫ (very large; retrieval costs dominate)
- EmbedLLM: MSE(F)=0.266 vs MSE(G)=0.198; cg/cf ≈ 1.6
- Results:
- Pandora’s Router matches the routing quality of exhaustive estimation but runs costly estimators far less often.
- In decentralized auctions, VOI reasoning improves allocative efficiency when competing estimates are reliable; if competitor estimates are noisy, strategic inspection can increase one specialist’s utility while harming others.
Data & Methods
- Formal model
- Inputs X; for each specialist m the true (cost‑adjusted) reward Rm has conditional expectation ρm(x) = E[Rm | X = x].
- Two estimators per specialist: cheap Fm(x) (computed free in their setup) and costly Gm(x, Zm) revealed after paying cost cg,m (Zm is auxiliary info, e.g., partial CoT or retrieval).
- Router chooses which Gm to compute (sequentially) and then selects a specialist; utility = realized reward − sum of estimator costs.
- Analytical approach
- Reduction to Pandora’s Box (Weitzman 1979; non‑obligatory variant Doval 2018).
- Define reservation price ursv_m by the VOI equation E[(Vm − ursv_m)+] = c_m; backup price ubackup_m used for committing policies in non‑obligatory inspection.
- Under a Gaussian conditional model linking F and G (and the true reward), closed‑form expressions for VOI and reservation/backup prices are derived, enabling per‑input decisions.
- Decentralized mechanism modeling
- Pandora’s Bidder: posted price auction stage; each specialist decides whether to pay cg to refine its private estimate before submitting a claim.
- Analysis focuses on allocative efficiency and specialist payoff under variations in competitor signal quality.
- Empirical methodology
- Value estimators trained on training split; calibration split used to fit Gaussian VOI parameters and estimate MSE/cost ratios; test split for final evaluation.
- Domains:
- Math: partial chain‑of‑thought tokens constitute private info for Gm; target models differ in cost/accuracy.
- RAG: Gm uses retrieved documents (private corpora like PubMed/Wikipedia); retrieval cost large.
- EmbedLLM: large candidate pool, costs proportional to parameter counts; Gm is a fine‑tuned regressor on prompt.
- Baselines: exhaustive estimation (always run G for all specialists), cheap‑only routing, and other heuristic routing strategies.
- Metrics: expected reward minus estimation costs; fraction of queries invoking costly estimators; allocation quality compared to oracle.
Implications for AI Economics
- Explicitly pricing information acquisition
- Value estimation is an economic action; system designers should price/charge for expensive estimation steps (retrieval, partial reasoning, fine‑tuned scoring) and incorporate VOI reasoning to avoid wasteful checks.
- Cost‑sensitive routing design
- Providers can implement lightweight cheap screens (embeddings/KNN) and selectively trigger costly inference only when reservation prices indicate positive VOI—improves cost‑effectiveness without substantial quality loss.
- Market design and incentives
- Decentralized specialists with private information (e.g., specialized corpora, internal benchmarks, partial reasoning access) can strategically invest in self‑assessment. Mechanism designers must consider:
- When accurate competing signals exist, allowing costly self‑assessment increases allocative efficiency.
- When signals are noisy, strategic inspection can produce winner‑takes‑more outcomes, redistributing surplus and potentially harming fairness.
- Posted‑price or auction formats should account for the costs of preference elicitation and the possibility of strategic withholding or over‑investing in self‑assessment.
- Decentralized specialists with private information (e.g., specialized corpora, internal benchmarks, partial reasoning access) can strategically invest in self‑assessment. Mechanism designers must consider:
- Value of private information and access asymmetries
- Specialists with private retrieval corpora or internal tooling hold market power: the VOI framework quantifies when private information justifies higher prices or reserved allocation.
- Transparency about what information the router can access vs what specialists can privately compute will affect market outcomes.
- Practical operational guidance
- Use calibrated, low‑cost estimators as default screens and compute reservation prices (or their approximations) to decide when to run expensive checks.
- For systems with many candidate models, sequential inspection in reservation‑price order is an efficient control flow.
- Directions for policy and future research
- Extend results beyond Gaussian signal assumptions and to multi‑stage/continuous inspection costs.
- Study equilibrium behavior in repeated markets with learning specialists, dynamic pricing, and richer auction formats.
- Analyze fairness and distributional effects when some specialists can afford more self‑assessment or have privileged data access.
- Consider regulatory implications where private data access creates persistent allocation advantages.
Short summary: The paper formalizes routing with costly value estimation as Pandora’s Box, provides closed‑form VOI/reservation rules under a Gaussian model, implements centralized (Pandora’s Router) and decentralized (Pandora’s Bidder) policies, and empirically demonstrates that selective costly estimation achieves near‑optimal allocation while significantly reducing estimation cost—highlighting important economic and mechanism‑design consequences for multi‑model AI systems.
Assessment
Claims (8)
| Claim | Direction | Outcome | Confidence & Evidence | Details |
|---|---|---|---|---|
| Under a Gaussian signal model, Pandora’s Router has closed-form value-of-information expressions that determine whether refining a specialist’s value estimate is worth its cost. Organizational Efficiency | positive | Efficiency of deciding when to purchase more accurate specialist-value estimates |
Reading fidelity
high
Study strength
high
|
not reported
|
| Pandora’s Router matches the routing quality of exhaustive value estimation while querying the expensive estimator substantially less often. Task Allocation | positive | Routing quality and frequency of expensive-estimator queries |
Reading fidelity
high
Study strength
medium
|
not reported
|
| In decentralized allocation, value-of-information reasoning improves allocative efficiency when competing estimates are accurate. Task Allocation | positive | Allocative efficiency in decentralized specialist competition |
Reading fidelity
high
Study strength
medium
|
not reported
|
| When competing estimates are noisy, value-of-information reasoning can increase the strategic specialist’s utility at the expense of other specialists. Market Structure | mixed | Strategic specialist utility and distribution of gains across competing specialists |
Reading fidelity
high
Study strength
medium
|
not reported
|
| The cheap and costly value estimators used in the experiments differ in predictive accuracy: the costly estimator has lower held-out calibration MSE than the cheap KNN estimator in Math, RAG, and EmbedLLM. Decision Quality | positive | Value-estimation mean-squared error |
Reading fidelity
high
Study strength
medium
|
Math: MSE 0.154 (cheap) vs 0.096 (costly); RAG: 0.175 vs 0.109; EmbedLLM: 0.266 vs 0.198
|
| The Math experiment evaluates routing over 16,512 mathematical problems spanning MATH, Omni-Math, AIME, and HMMT. Task Completion Time | positive | Routing performance for mathematical reasoning tasks |
Reading fidelity
high
Study strength
medium
|
n=16512
|
| In the Math setting, the costly estimator uses the first 20 tokens of a model’s chain-of-thought reasoning trace to predict reward, and its reported calibration MSE is lower than that of the cheap KNN estimator. Decision Quality | positive | Prediction accuracy for mathematical-specialist reward |
Reading fidelity
high
Study strength
medium
|
n=16512
MSE 0.096 vs 0.154
|
| Pandora’s Router can inspect specialists sequentially in reservation-price order and stop when the current best observed value exceeds the highest reservation price among the remaining specialists. Task Allocation | positive | Cost-aware specialist-selection and stopping efficiency |
Reading fidelity
high
Study strength
high
|
not reported
|