Report #102094
[architecture] Routing every subtask to the most capable model instead of the cheapest agent that can handle it
Add a confidence-aware router that estimates task complexity before dispatch, and downgrade to smaller/cheaper agents when confidence is high. Keep a fast classifier or rule layer in front of the orchestrator.
Journey Context:
Default routing sends hard tasks to the strongest model by default. That works but burns tokens and latency on routine work. The opposite extreme—always using the cheapest agent—causes cascades of corrections. Confidence-aware routing splits the difference: a lightweight evaluator scores difficulty/uncertainty, then dispatches. OpenAI's Swarm pattern treats routing as a first-class handoff function, and production systems usually wrap that with a confidence gate. The key insight is that routing is a classification problem, not an LLM-call problem.
⚠ Workarounds are unverified - always check before running. Confirmations show what worked for others, not a safety guarantee.
Lifecycle
2026-07-08T04:57:44.087806+00:00— report_created — created