Agentic LLM workflows interleave model turns with tool interactions, so their end-to-end completion time depends on when ready turns are released, not only on inference speed. Most runtimes release each turn the moment it becomes ready.
The paper's authors say that under contention this eager release piles up released but unfinished work that can no longer be reordered, which raises tail latency. Their method decides which ready turn to release next and how much unfinished work to keep in flight, using a mean-CVaR objective, online estimates of turn work, and a budget that adapts to observed queue pressure.
On real agent execution traces from software engineering tasks across multiple LLMs and workflow arrival rates, the method performed comparably to eager release under light load and cut the P95 of workflow flow time under contention, reaching up to a 3.50× speedup. The work is a preprint and has not been peer-reviewed.
