INQUIRING LINE

When does letting an AI pick which model handles each task actually beat one strong model or a fixed team?

When does multi-agent routing quality actually exceed single-agent or static ensemble performance?

This explores the conditions under which a system that chooses which models or agents handle each task beats one strong model or a fixed team that runs the same way every time.


This explores the conditions under which a system that chooses which models or agents handle each task beats one strong model or a fixed team that runs the same way every time. The corpus points to three conditions: the options being routed between are complementary, the routing decides more than 'which model', and the task still has headroom. It also carries one large caveat about who is paying for the tokens.

The clearest win comes when the models are good at different things and the router can tell which is which. Avengers-Pro clusters queries by meaning and sends each cluster to the model that handles it best. It scores 7% higher than GPT-5-medium, or matches it at 27% lower cost, and earlier work had ten 7B models with routing surpassing GPT-4.1 Can routing beat building one better model?. That suggests selection can be a stronger lever than scaling. It also explains why fixed ensembles disappoint. Redundant members add little, and diverse mediocre traces can beat redundant strong ones because an aggregator needs different material to arbitrate Can diverse mediocre traces outperform redundant expert traces?. A static team can't check whether its members complement each other. DyLAN, by contrast, scores each agent's contribution and switches off the uninformative ones during inference Can multi-agent teams automatically remove their weakest members?.

Routing also does better when it decides more than which model to call. MasRouter jointly picks the collaboration structure, the number of agents, each agent's role, and which LLM each one gets. It beats single-model routing by 3.51% accuracy and cuts HumanEval costs by 49% What decisions must multi-agent routing systems optimize simultaneously?. Structure is where teams tend to go wrong: across 180 configurations, topology choice changed error amplification by 4–17×, and tool-heavy coordination hurt complex tasks When does adding more agents actually help systems?. Real tasks usually need several skills composed together, so the router has to break the task apart and assemble a plan, not just pick one option How should agents route across thousands of skills?. Capability-vector matching keeps that discovery step cheap as the pool of agents grows Can semantic capability vectors replace manual agent routing?.

The third condition is headroom. The same scaling study finds coordination stops helping above roughly 45% accuracy, so routing pays off where the baseline is weak and wastes effort where one agent already does well. Adding more agents doesn't help indefinitely either. As networks grow, agents agree too late or accept neighbors' claims without checking, and errors spread Why do multi-agent systems fail to coordinate at scale?.

The caveat is that research attributes about 80% of multi-agent performance variance to token budget, not coordination intelligence How does test-time scaling work at the agent level? What makes multi-agent teams actually perform better?. A router that beats an ensemble may simply be spending more. The more convincing wins are the ones that hold accuracy while spending less, such as the 27% and 49% cost cuts above. Judging them also takes more than a success rate, because identical success rates can hide large differences in efficiency and reliability How should we measure agent system performance beyond task success?. The corpus has no head-to-head comparison at matched token budgets, so whether routing beats a well-funded static ensemble is still open.


Sources 11 notes

Can routing beat building one better model?

Avengers-Pro achieves 7% higher accuracy than GPT-5-medium by routing queries to optimal models per semantic cluster, or matches its performance at 27% lower cost. Ten 7B models with routing previously surpassed GPT-4.1 and 4.5, suggesting selection is a stronger lever than scaling.

Can diverse mediocre traces outperform redundant expert traces?

SPIRAL shifts RL reward from individual traces to sampled sets, optimizing for complementarity rather than per-trace accuracy. Diverse mediocre traces outperform redundant strong ones because aggregators need raw material to arbitrate, not confirmation.

Can multi-agent teams automatically remove their weakest members?

DyLAN's three-step importance scoring mechanism (propagation, aggregation, selection) quantifies individual agent contributions and automatically removes uninformative agents during inference, optimizing team composition without task-specific tuning.

What decisions must multi-agent routing systems optimize simultaneously?

MasRouter shows that routing in multi-agent systems must jointly optimize collaboration topology, agent count, role allocation, and per-agent LLM assignment through a cascaded controller. This unified approach surpasses single-model routing by 3.51% accuracy while cutting HumanEval costs by 49%.

When does adding more agents actually help systems?

Across 180 configurations, three dominant effects predict multi-agent success: tool-coordination trade-offs harm complex tasks, coordination stops helping above 45% accuracy, and topology choice controls error amplification by 4–17×. Architecture-task alignment, not agent count, determines outcomes.

Show all 11 sources
How should agents route across thousands of skills?

Real agent tasks demand composing multiple skills rather than selecting one. The routing problem becomes decompose-retrieve-compose: break queries into atomic sub-tasks, retrieve skills per sub-task, and assemble them into dependency-aware plans.

Can semantic capability vectors replace manual agent routing?

Versioned Capability Vectors embedded in HNSW indices couple semantic matching with policy and budget constraints, making capability discovery a first-class operation that scales sub-linearly as agent heterogeneity increases.

Why do multi-agent systems fail to coordinate at scale?

AgentsNet benchmark shows agents fail to coordinate strategies either by agreeing too late or adopting strategies without informing neighbors. Agents accept neighbor information without verification, enabling error propagation while remaining capable of detecting direct conflicts.

How does test-time scaling work at the agent level?

Research shows 80% of multi-agent performance variance comes from token budget, not coordination intelligence. LatentMAS and shared-KV-cache approaches offer ways to decouple performance gains from token costs.

What makes multi-agent teams actually perform better?

Research shows 80% of performance variance across multi-agent systems stems from token budget, not coordination intelligence. Latent communication and shared cache architectures bypass this token tax by avoiding natural language bottlenecks.

How should we measure agent system performance beyond task success?

Single task-success metrics obscure how agents achieve results across memory, context, and verification layers. Research shows identical success rates can mask enormous differences in efficiency, reliability, and deployment readiness—requiring harness-level benchmarks that measure trajectory, memory hygiene, and verification costs.

Papers this line draws on 8

The research behind the notes this line reads — ranked by how closely each paper relates.