Concept register · Concept 54 of 64 · Theme: agent infrastructure Reviewed 2026-09-01
assay · concepts · agent-infrastructure
Agent inference infrastructure
Serving multi-turn tool-calling agents is a different engineering problem from serving chatbots. An ever-growing shared prefix, sessions that idle for hours on tools and humans, and effectively unbounded token demand turn KV-cache management into the core serving problem, make routing cache-aware, and put interconnect ahead of raw FLOPs as the binding constraint.
established · assay: watching
7 independent sources · sighted at DevCon London 2026 and the Agentic AI Summit 2026 · last reviewed 2026-09-01
§1What it is
The cache is the serving problem
By turn forty, almost the entire prefill of an agent session is cached history. Prefix caching stops being an optimization and becomes mandatory; without it, time-to-first-token explodes. From there it becomes a memory-hierarchy problem — cache tiered across HBM, DRAM, SSD and pooled memory so an intermittent session never recomputes its earlier turns. And it makes routing cache-aware: round-robin across replicas throws the session's warm cache away, which is why a mid-session switch is expensive in a way that a per-request benchmark never shows.
Interconnect, and changes to generation itself
At scale the binding constraint moves off the accelerator and onto the link between accelerators — a hundred-thousand-GPU facility carries millions of connections that must not error, and a twenty-four-hour agent run is precisely the workload one link hiccup freezes. Generation is changing shape too: speculative decoding and multi-token prediction heads let several tokens land per forward pass, and diffusion-style models denoise a whole sequence in parallel rather than emitting it strictly token by token.
Scarcity above, and a silent correctness bug below
GPU scarcity adds a systems layer on top: even the largest labs cannot get their accelerators in one cluster, so declaring a run's mixed resources across clusters — trainer here, rollout there, CPU sandboxes elsewhere — becomes a scarce skill in its own right. Underneath sits the quiet one: silent train/inference mismatch is the core correctness bug in agent RL, because a mismatch turns an on-policy run off-policy without announcing itself. The mitigations are deterministic kernels and exact chat-template alignment across multi-turn traces.
§2Sightings
DevCon London 2026 · 1 sighting
#05Serving agentsAmit Kushwaha, NVIDIA
Agentic AI Summit 2026 · 6 sightings
#061Diffusion LLMsAditya Grover, Inception
#064Interconnect, not computeNick Harris, Lightmatter
#069Cross-cluster RLHaddad, Burtenshaw, Han, Yang, Bhardwaj
#071Caching at three layersMaddie + Satya, AMD
#090Seven kinds of parallelismWoosuk Kwon, UC Berkeley / Inferact
#091Serving and training togetherBanghua Zhu, SGLang
Also: Kimi Delta Attention; vLLM and SGLang; Miles/Slime, Mooncake and Harbor; SkyPilot, Prime Intellect and Daytona; NeMo Gym and AgentGym; Mercury; Artificial Analysis. Floor-price math from the cross-cluster panel put a leading open model at roughly 11c per million tokens against 44-87c charged.
§3Where Assay stands
Below the API line, and deliberately out of scope
Assay consumes models as a service and runs no serving infrastructure, so none of these techniques is directly actionable. The register carries the concept anyway, because three second-order consequences reach the desks.
Long-horizon durability, cache economics, harvest hygiene
First, durability. If the twenty-four-hour-agent curve these vendors are building for holds, desk sessions will run an order of magnitude longer than today's, and what gets stressed is Assay's own machinery: dispatch claims, worktree discipline, crash recovery. Durable resumable desk state is a design direction rather than a repair, and it is currently designed nowhere — claims recorded as git refs are the closest thing that exists. Second, cache economics as a routing constraint: prefix caching and cache-aware routing are exactly why swapping models mid-session inside a desk loop is expensive, and that consequence is actionable over on model tiering and routing. Third, harvest hygiene. The train/inference-mismatch lesson means a harvested transcript is only usable as distillation or evaluation data if it records the exact harness and chat-template versions that produced it. Assay harvests transcripts without that metadata today — a cheap thing to fix before the corpus grows.
One forward-looking note
The mixed-resource job group is the right mental model if an out-of-band learning pass ever runs at scale: cheap sandboxes for replay, one expensive tier for the judgment step. That is speculative, not designed.
§4Watch
- Whether long-session KV tiering reaches hosted APIs as a priced feature — cache-resume across an idle gap — which is what would make long-idle desk sessions cheap.
- Whether the floor-price gap between token cost and list price closes, since that gap is what currently makes frontier-tier desk work expensive.
- Whether diffusion-style parallel generation ships in a model any adopter would actually route bulk desk work to.