When Routing Collapses: On the Degenerate Convergence of LLM Routers
Guannan Lai, Han-Jia Ye
TL;DR
The paper identifies routing collapse in LLM routing, where increasing user budgets cause routers to over-rely on the strongest model, wasting compute and undermining cost savings. It shows this is driven by a mismatch between predicting scalar scores and making discrete, rank-based decisions, especially when model performance margins are small. To address this, it introduces EquiRouter, a ranking-focused router that uses model-conditioned representations and a ranking-loss objective to directly supervise per-query model orderings, promoting fair consideration of cheaper models. Empirically, EquiRouter achieves substantial cost reductions (≈17% on RouterBench and ≈12% on MMR-Bench) while maintaining or improving performance, and it introduces the Routing Collapse Index (RCI) to quantify and monitor collapse across benchmarks and even under out-of-domain conditions.
Abstract
LLM routing aims to achieve a favorable quality--cost trade-off by dynamically assigning easy queries to smaller models and harder queries to stronger ones. However, across both unimodal and multimodal settings, we uncover a pervasive yet underexplored failure mode in existing routers: as the user's cost budget increases, routers systematically default to the most capable and most expensive model even when cheaper models already suffice. As a result, current routers under-utilize small models, wasting computation and monetary cost and undermining the core promise of routing; we term this phenomenon routing collapse. We attribute routing collapse to an objective--decision mismatch: many routers are trained to predict scalar performance scores, whereas routing decisions ultimately depend on discrete comparisons among candidate models. Consequently, small prediction errors can flip relative orderings and trigger suboptimal selections. To bridge this gap, we propose EquiRouter, a decision-aware router that directly learns model rankings, restoring the role of smaller models and mitigating routing collapse. On RouterBench, EquiRouter reduces cost by about 17\% at GPT-4-level performance compared to the strongest prior router. Our code is available at https://github.com/AIGNLAI/EquiRouter.
