This post introduces and explains the position paper "Position: agentic AI orchestration should be Bayes-consistent" (arXiv:2605.00323) in a Feynman-style, example-driven walkthrough.
Paper Information
- Title: Position: agentic AI orchestration should be Bayes-consistent
- Authors: Pierre Alquier, Matthias Bauer, Wray Buntine, Andrew Davison, Gintare Karolina Dziugaite, Maurizio Filippone, Andrew Y. K. Foong, Vincent Fortuin, Dimitris Fouskakis, Jes Frellsen, Eyke Hüllermeier, Theofanis Karaletsos, Mohammad Emtiyaz Khan, Nikita Kotelevskii, Salem Lahlou, Yingzhen Li, Fang Liu, Clare Lyle, Thomas Möllenhoff, Konstantina Palla, Maxim Panov, Yusuf Sale, Kajetan Schweighofe, Artem Shelmanov, Siddharth Swaroop, Martin Trapp, Willem Waegeman, Andrew Gordon Wilson, Alexey Zaytsev
- arXiv: 2605.00323
- Categories: Artificial Intelligence, Machine Learning
- "If the user asks about weather → call the weather API"
- "If code execution fails → try to fix the code"
- Action A: call the weather API → EU = 0.6×10 + 0.25×3 + 0.15×0 = 6.75
- Action B: call the air-quality API → EU = 0.6×2 + 0.25×10 + 0.15×0 = 3.7
- Action C: ask a clarifying question → EU = 5
- Calibrated beliefs: if the system says "80% confident," it should be right 80% of the time. Current LLMs tend to be overconfident; calibration techniques include temperature scaling, conformal prediction, and Bayesian neural networks.
- Human-AI collaboration: Bayesian agents can ask proactive questions when information value is high, explain their uncertainty ("70% confident; the main unknown is..."), and defer decisions to humans when stakes are high and uncertainty is large.
- Alquier, P., et al. (2026). Position: agentic AI orchestration should be Bayes-consistent. *arXiv preprint arXiv:2605.00323*.
- Bayes, T. (1763). An Essay towards solving a Problem in the Doctrine of Chances. *Philosophical Transactions of the Royal Society*.
- Russell, S., & Norvig, P. (2020). *Artificial Intelligence: A Modern Approach* (4th ed.). Pearson.
- Ghahramani, Z. (2015). Probabilistic machine learning and artificial intelligence. *Nature*, 521(7553), 452-459.
- Kahneman, D. (2011). *Thinking, Fast and Slow*. Farrar, Straus and Giroux.
The Central Argument
Today's LLM-based agents often behave like overconfident experts: they give a single deterministic answer even when the underlying information is insufficient. Current agentic frameworks (ReAct, AutoGPT, etc.) typically rely on deterministic heuristics in the orchestration layer:
These rules pretend the world is fully predictable. In open-ended environments—ambiguous user intent, unexpected tool failures—they break down because they cannot represent uncertainty.
The paper's position: the orchestration layer (not the LLM itself) should be Bayes-consistent, meaning it should:
1. Maintain beliefs — probability distributions over hidden task variables (e.g., "60% the user wants weather, 25% air quality, 15% small talk") rather than committing to one interpretation.
2. Update beliefs via Bayes' rule: P(intent | new evidence) ∝ P(new evidence | intent) × P(intent). As interactions proceed, uncertainty shrinks but never fully disappears.
3. Act by expected utility: EU(action) = Σ P(state) × U(action, state), weighing the value of an action against its cost under each possible state.
Worked Example: Choosing an Action Under Uncertainty
Suppose the system believes the user wants weather (60%), air quality (25%), or is just chatting (15%):
A is optimal. But if beliefs shift to weather 30% / air quality 50% / chat 20%, the EU values become 3.75 / 5.6 / 5, and calling the air-quality API becomes the best choice. The optimal action depends on the belief state—Bayesian orchestration lets the system adapt its decisions to its own uncertainty.
Why the Orchestration Layer, Not the LLM Itself?
Making the LLM itself an explicit Bayesian belief-update engine is computationally expensive and conceptually non-trivial. The orchestration layer, however, is the natural control hub for decision-making under uncertainty—like a conductor who doesn't play every instrument but must understand the whole score.
Practical Design Patterns
Why It Matters
Uncertainty is a feature, not a bug. Properly quantified uncertainty enables optimal information gathering, robust risk assessment, and adaptive policies. An AI that honestly expresses uncertainty is safer than one that feigns certainty and is wrong. In the short term, the authors expect more reliable agents, more efficient (and cheaper) tool calling, and better human-AI collaboration; in the long term, Bayesian orchestration could mark the step from "deterministic machine" to "manager of uncertainty"—a prerequisite for trustworthy AI partners.