Learning Compositional Meta-Routing for Agentic Workflows: An Executable Benchmark
Introduces an executable benchmark with 504 tasks across data analysis, frozen-corpus research, and document processing to evaluate agentic workflow routing Proposes a budget-aware meta-router using independent regularized logistic heads that compose heterogeneous operations (answer directly, decompose, retrieve, execute code, delegate, verify) from raw task text The learned policy achieves 100% success on held-out test data with 43% lower cost than static workflows, but drops to 75.9% on a lexi
Analysis
TL;DR
- Introduces an executable benchmark with 504 tasks across data analysis, frozen-corpus research, and document processing to evaluate agentic workflow routing
- Proposes a budget-aware meta-router using independent regularized logistic heads that compose heterogeneous operations (answer directly, decompose, retrieve, execute code, delegate, verify) from raw task text
- The learned policy achieves 100% success on held-out test data with 43% lower cost than static workflows, but drops to 75.9% on a lexical-shift challenge split
- Static routing outperforms learned routing on out-of-distribution lexical-shift tasks (93.5% vs 75.9%), revealing lexical generalization as the principal limitation
- Results establish a reproducible testbed and bounded proof of concept, not evidence of live-LLM performance
Why It Matters
This work addresses a critical gap in agentic AI: the routing problem of deciding which reasoning and execution operations to compose before producing an answer. As AI systems increasingly rely on multi-step workflows, understanding how to efficiently route tasks across heterogeneous operations becomes essential for building cost-effective, scalable agents. The benchmark also provides a standardized, machine-checkable evaluation framework that the community can build upon.
Technical Details
- Benchmark composition: 216 training, 72 development, 108 held-out test, and 108 locked lexical-shift challenge tasks spanning three domains: data analysis, frozen-corpus research, and document processing
- Meta-router architecture: Independent regularized logistic heads predict operation probabilities from word and character features, with temperature scaling performed on development data
- Greedy composition under budgets: Operations are greedily composed subject to route-cost and action-count constraints, enabling budget-aware decision-making
- Evaluation methodology: Outcomes are machine-checked after operations execute, providing objective success metrics; the lexical-shift challenge tests generalization to unseen vocabulary distributions
- Performance results: Learned policy achieves 100% success on held-out test (vs 93.5% static, 56.5% one-shot), with 43% cost reduction over static; on lexical-shift split, learned drops to 75.9% vs 93.5% static while remaining 49% cheaper
Industry Insight
- The significant performance gap between held-out test (100%) and lexical-shift challenge (75.9%) suggests that current routing approaches rely heavily on surface-level lexical patterns rather than semantic understanding—investing in vocabulary-invariant routing representations should be a priority
- Static routing policies demonstrate surprising robustness on out-of-distribution tasks, implying that simpler baselines may remain competitive in production settings where lexical diversity is high; practitioners should benchmark learned routers against static baselines before deployment
- The machine-checkable benchmark design sets a precedent for reproducible agentic evaluation; the community should adopt similar executable testbeds to move beyond self-reported metrics and enable fair comparison across routing approaches
Disclaimer: The above content is generated by AI and is for reference only.