The Commonplace
Home Papers Evidence Explore Trends Syntheses Digests References Docs 🎲 Workforce Futures
← Papers
Direction, evidence grade, and study type are AI-generated labels (gpt-5-mini), not human-verified. Syntheses are LLM-written. "Tensions" are machine-detected candidates, not confirmed contradictions. A research-acceleration tool, not peer review. How this is built →

An online progress-guided router for multi-agent LLM workflows cuts operating energy and runtime by adaptively selecting models at each step, maintaining task success on code, math and QA benchmarks while respecting time and cost budgets.

ProgRouter: Online Progress-Guided Orchestration for Multi-Agent LLM Workflows under Quality-Cost Tradeoffs
Songyuan Li, Ahmed M. Abdelmoniem, Shiqiang Wang · August 26, 2026
arxiv other medium evidence 7/10 relevance Full text usable extracted full text Source PDF

Structured author observations

Linked only from stored provider relations; the raw author line above is never matched by name.

Arxiv

Latest observation:

  1. Songyuan Li unresolved corpus identity
  2. Ahmed M. Abdelmoniem unresolved corpus identity
  3. Shiqiang Wang unresolved corpus identity

Semantic Scholar

Latest observation:

  1. Somgyuan Li provider ID
  2. Ahmed M. Abdelmoniem provider ID
  3. Shi-Qiang Wang provider ID
PROGROUTER is an online progress-guided routing framework that adaptively selects LLM agents stepwise in multi-agent workflows to reduce operating cost and latency while preserving task-solving performance across code, math, and long-form QA benchmarks.

Citation observations

Cumulative provider counts captured on specific dates; providers are never combined.

Multi-agent large language model (LLM) workflows have emerged as a powerful paradigm for solving complex, open-ended tasks through collaborative reasoning among specialized LLM agents, but they incur substantial operating costs due to repeated LLM invocations and long-horizon context accumulation. Existing cascade routing methods make one-shot, query-level decisions and cannot adapt to the dynamic, state-dependent nature of multi-step workflows, in which the right LLM at each step depends on evolving task progress, remaining task difficulty, and cost-efficiency requirements. We present ProgRouter, an online progress-guided routing framework that adaptively selects LLM agents across workflow steps to preserve task-solving quality while adhering to time and cost budgets. ProgRouter introduces a multi-view task progress scorer that combines coarse workflow outcome regimes with fine-grained signals on subtask completion, progress trends, and workflow state quality. Then, a dual-path task progress predictor and an adaptive meta-gating mechanism estimate the progress gain for each candidate routed LLM. ProgRouter makes online step-wise routing decisions that balance progress gain, task time budgets, and long-term operating cost efficiency. Experiments on HumanEval Plus, MBPP, MATH-500, and ASQA, spanning agentic code generation, mathematical reasoning, and retrieval-augmented long-form question answering, demonstrate that ProgRouter reduces the operating cost relative to key baselines while maintaining strong task-solving performance.

Summary

Main Finding

PROGROUTER is an online, progress-guided routing framework for multi‑agent LLM workflows that dynamically selects which LLM instance to call at each workflow step. By estimating stepwise progress gains and balancing them against per-task and long‑term cost/time budgets, PROGROUTER substantially lowers operating cost (energy/time) versus strong baselines while preserving or improving task success across diverse agentic domains (agentic code generation, mathematical reasoning, retrieval‑augmented QA).

Key Points

  • Problem framed: online constrained orchestration of heterogeneous LLMs across multi‑step, stateful workflows to maximize task success under per‑task time/cost budgets and a long‑run average operating‑cost constraint.
  • Coordinator + ledger: a reasoning-oriented coordinator LLM maintains structured workflow ledgers (state, traces, subtasks) and decides which agent role to dispatch; PROGROUTER decides which LLM instance should instantiate the chosen role.
  • Multi‑view task progress scorer: maps workflow state s_t to a normalized progress score g(s_t) in [0,1] by combining four views:
    • overall outcome regime (coarse anchor: invalid / recoverable / partial / complete),
    • subtask completion fraction,
    • short‑term progress trend (delta),
    • workflow state quality (semantic/structural signals). These are aggregated hierarchically to produce dense intermediate supervision.
  • Dual‑path progress predictor:
    • structured path: tabular features (progress, subtasks, history, candidate model) → tree regressor;
    • semantic path: coordinator-produced textual summary → sentence embedding → tree regressor;
    • meta‑gating: tree‑based combiner adaptively weights the two path outputs to estimate predicted progress gain ˆy_t(m) for each candidate LLM m.
  • Online decision rule:
    • score(m) = V·(1−g(s_t))·ˆy_t(m) − Q·(E(m)−eE) − c_Γ·Γ(m) − c_E·E(m)
    • Q is a virtual cost queue (Lyapunov‑style) tracking long‑run budget violation; c_Γ and c_E are budget‑aware exponential penalties based on fraction of consumed per‑task time/cost budgets.
    • At each step, select m that maximizes score(m). Exploration via ε‑greedy sampling collects labeled progress deltas for online predictor updates; ε decays over time.
  • Practical design choices emphasize low overhead: lightweight encoders (e.g., MiniLM), tree regressors (XGBoost/RF) and inexpensive gating so prediction of all candidates is feasible at each step.

Data & Methods

  • Workflow model: multi‑agent workflows w = {C, R, M} with a coordinator C and worker roles R; each role can be instantiated by models from a model zoo M (various sizes/capacities).
  • Objective: maximize average task success subject to per‑task time Γ_w and energy/cost E_w constraints and a long‑run average energy constraint eE.
  • Datasets / task domains:
    • HumanEval Plus and MBPP (agentic code generation),
    • MATH‑500 (mathematical reasoning),
    • ASQA (retrieval‑augmented long‑form QA).
  • Baselines compared include cascade routing approaches, MasRouter, and simple heuristics (e.g., single‑model or static cascades).
  • Metrics reported: task success (pass/precision), operating cost measured as energy consumption (Joule), and execution time (seconds). Experiments show PROGROUTER reduces operating cost relative to baselines while maintaining strong task performance and respecting the long‑term cost constraint eE.
  • Training/online learning: predictor trained online from exploration samples (realized g(s_{t+1})−g(s_t) as label); periodic model updates; ε‑decay to shift from exploration to exploitation.

Implications for AI Economics

  • Lower operating cost per task: adaptive routing that invokes stronger (costlier) models only when expected marginal progress warrants it reduces energy and compute billed per workflow — directly lowering operational expenditure for service providers and deployers.
  • Better utilization of model heterogeneity: quantitative, online valuation of marginal progress encourages maintaining a model zoo (small/medium/large) and allocating calls dynamically — enabling cost‑efficient capacity planning and investment across model sizes.
  • Pricing and SLAs: with predictable long‑run average cost guarantees (virtual queue control), providers can design service tiers or dynamic pricing that trade latency/quality against cost, and craft SLAs that incorporate adaptive routing policies.
  • Market effects: reduced marginal cost for complex tasks might lower end‑user prices or enable more frequent/longer agentic workflows; conversely, improved cost efficiency could shift demand toward more agentic, multi‑step applications.
  • Sustainability and regulation: energy reductions at the workflow level contribute to lower carbon footprints; regulators and buyers may prefer providers that adopt progress‑guided orchestration for greener AI services.
  • Incentive & allocation design: the method highlights the economic value of improved progress estimation (better predictors) — investments in instrumentation (ledgers, progress features) and online learning can yield direct operating‑cost returns.
  • Operational caveats: PROGROUTER requires exploration (which has short‑term costs), accurate progress scorer design, coordinator-led state instrumentation, and reliable per‑model cost/time accounting. These implementation costs and potential miscalibration risks must be factored into economic evaluations.

Takeaway: PROGROUTER shows that combining dense, multi‑view progress signals with an online, queue‑aware routing objective enables economically meaningful reductions in the operating cost of agentic LLM workflows while preserving quality — a promising approach for providers and deployers seeking scalable, cost‑aware AI services.

Assessment

Paper Typeother Evidence Strengthmedium — The paper reports empirical improvements on multiple public benchmarks (code, math, long-form QA) comparing PROGROUTER to several baselines, with measured metrics for task success, energy, and time; however, evidence is limited to benchmark tasks, simulated/controlled operating-cost budgets, and a model zoo of specific LLMs, with no field deployment, causal identification, or statistical-significance reporting in the provided text. Methods Rigormedium — The method is well-specified (multi-view progress scorer, dual-path predictor, online Lyapunov-style control and exploration-exploitation), and evaluated across multiple standard datasets and baselines; but the excerpt shows limited information on hyperparameter sensitivity, ablation studies, statistical significance, real-world workload heterogeneity, or robustness to different model zoos and coordinator designs. SampleEvaluation uses agentic LLM workflows on four benchmarks: HumanEval Plus and MBPP (code generation), MATH-500 (mathematical reasoning), and ASQA (retrieval-augmented long-form question answering). Experiments use a heterogeneous model zoo (multiple LLMs of varying sizes/capacities, e.g., Qwen variants referenced), compare to baselines such as CASCADIA and MasRouter and an 'educated guessing' baseline, and report task success/pass rates, energy consumption (Joules), and execution time (seconds) under per-task and long-term operating-cost budgets (eE) with online routing and predictor learning. Themesproductivity org_design GeneralizabilityBenchmarks are synthetic/academic (code/math/QA) and may not reflect real-world production task distributions or user behavior, Results depend on the particular model zoo and coordinator design; different LLMs, cost profiles, or tool integrations could change outcomes, Operating-cost and time budgets in experiments may not match cloud pricing, latency SLAs, or energy accounting in production settings, Progress-scorer heuristics and feature engineering may need domain-specific tuning, limiting out-of-the-box transfer, No evidence presented for long-running field deployments, multi-tenant interactions, or adversarial/workload-shift robustness

Claims (6)

ClaimDirectionOutcomeConfidence & EvidenceDetails
PROGROUTER achieves a 93.0% task completion (Pass) rate on HumanEval Plus. Output Quality positive HumanEval Plus code-generation pass rate
Reading fidelity high
Study strength medium
93.0% Pass
0.12
On HumanEval Plus, PROGROUTER uses 4796 J of energy, satisfying the stated long-term operating-cost efficiency requirement of 4800 J. Organizational Efficiency positive Workflow operating energy consumption
Reading fidelity high
Study strength medium
4796 J against eE = 4800 J
0.12
Among the methods satisfying the long-term energy requirement on HumanEval Plus, PROGROUTER has the highest reported Pass rate. Output Quality positive Task completion rate under the operating-cost constraint
Reading fidelity high
Study strength medium
93.0% Pass
0.12
PROGROUTER is designed to make online, step-wise LLM-agent routing decisions that jointly account for predicted task-progress gain, task-specific time and cost budgets, and long-term operating-cost efficiency. Organizational Efficiency positive Quality-cost efficiency of multi-agent workflow orchestration
Reading fidelity high
Study strength low
not reported
0.06
PROGROUTER learns its task-progress predictor online through exploration and subsequent updates, without requiring offline training data. Organizational Efficiency positive Online adaptation of LLM routing policy
Reading fidelity high
Study strength low
not reported
0.06
Across HumanEval Plus, MBPP, MATH-500, and ASQA, the experiments report that PROGROUTER reduces operating cost relative to key baselines while maintaining strong task-solving performance. Organizational Efficiency mixed Task-solving performance and operating cost across four agentic workflow benchmarks
Reading fidelity high
Study strength medium
not reported
0.12

Notes