When LLM-driven agents hand work to each other, the conversation gets expensive fast. Each hop adds tokens, latency, and compute. BANDMAS, a new arXiv preprint, treats that traffic like a network rather than a chat log: every message is split by semantic role, and only the chunks whose predicted contribution to the final answer beats their resource cost get forwarded.
The framing borrows from networking, not from prompt engineering. Existing multi-agent setups either prune whole agents or drop redundant messages wholesale, which leaves downstream steps starved for evidence. BANDMAS instead scores each fragment — labeled as "evidence" or "request" — with a replay-derived signal, then schedules it against a budget.
The reported numbers are scope-honest: on a frozen Qwen3-4B, the authors measure 53.2% to 77.3% fewer application-layer bytes across SciFact, HotpotQA, and FanOutQA, and the highest mean task score among bandwidth-constrained baselines on all three. That's a single frozen model, three reasoning benchmarks, and author-reported results — no peer review.
Why it matters beyond the paper: as multi-agent stacks graduate from demos to wired-up pipelines, agent-to-agent traffic becomes a first-class cost category, the way east-west traffic did inside datacenters. The next engineering layer isn't a better prompt or a bigger model — it's a scheduler. BANDMAS is an early entry in that category, and the mental model — agents as endpoints, messages as flows, the scheduler as the new plane — is the part worth keeping whether or not the numbers hold up.