Refacto AI

Industry story

SemiAnalysis Launches AgentX 1.0: First Open-Source Agentic Inference Benchmark

agents coding-agents evals gpu-supply inference

SemiAnalysis has released AgentX 1.0, the first fully open-source benchmark for multi-turn agentic coding inference at 1 million token context length, published under Apache 2.0. The benchmark was built using over $3M in real-world Claude Code and OpenAI Codex traces — 8,000 sessions, 3.4 million requests, and 610 billion tokens — and is designed to measure realistic production workloads characterized by long context, high prefix reuse, sub-agent bursts, and numerous tool calls, rather than the artificial fixed-sequence-length tests that previously dominated.

The benchmark already reflects a major market shift: agentic workloads (where AI models autonomously execute multi-step tasks using tools and sub-agents) overtook standard ChatGPT-style spending in OpenAI's Enterprise segment in April 2026, following a Claude Code inflection point in November 2025. AgentX has driven over 70 upstream pull requests (code contributions) across key open-source inference serving frameworks — vLLM, SGLang, TensorRT-LLM, and others — optimizing real-world production performance. Tier-1 AI labs' capacity planning teams are already consuming the benchmark's public API.

Analysis

Showing the shorter version.

Your draft

SemiAnalysis, Dylan Patel's shop, just dropped AgentX 1.0: an open-source benchmark built from $3M in real Claude Code and Codex traces, 610 billion tokens, 1M-token context. The claim underneath it is the part that matters: agentic spend has overtaken chat spend in OpenAI's enterprise segment, and no inference stack was tuned for that traffic shape.

The benchmark is Apache 2.0 and built from live production traces, which is rare. Most benchmarks are synthetic fiction; this one reflects what actually ran. That earns it credibility. It has also already driven 70 upstream pull requests in vLLM and SGLang, which means the serving frameworks are being rewritten around what AgentX exposes.

The corpus is narrow, though. Two providers, both frontier labs, both coding agents. If you serve open-weight models, non-coding agents, or anything vertical, AgentX is describing someone else's traffic. The composition bias matters for tuning; it matters less for the underlying physics.

Start with the physics. Agentic workloads are long-context, prefix-heavy, and spiky. Sub-agents burst unpredictably, which creates scheduling problems. Prefix reuse at 1M context is a memory-bandwidth and KV-cache problem, not a FLOP problem. That quietly rewrites the GPU buying case. If you procured on training-era FLOP-per-dollar math, you optimized the wrong axis. AMD's MI300X, with its larger HBM pool, reads better for this workload than the FLOP leaderboards ever suggested. The bottleneck moved from raw compute to memory, and that changes which chip you rent.

The practical implication for anyone pricing inference contracts: agentic workloads burn 10-100x the tokens of a chat turn because they loop, call tools, and spawn sub-agents. Your contract was priced against a traffic mix that no longer exists. AgentX gives you a way to model your real token burn before the bill arrives.

The way to use it is simple. Run AgentX against your own traffic. Compare your actual KV-cache hit rate and batch-size distribution against the benchmark's. If they rhyme, the physics generalize and you act on it. If they diverge hard, you have a coding-agent benchmark, not yours.

The call: by end of Q1 2027, vLLM or SGLang ships disaggregated prefill/decode as a default or first-class configuration, with agentic workloads named as the motivation. Confidence is medium. The 70 upstream PRs and the burst-scheduling problem point straight at disaggregation; it is already landing as experimental in both frameworks. The old model of running prefill and decode on the same GPU is inefficient when a sub-agent burst can starve the decode step. The fix is to split them onto separate pools. When a benchmark is driving PRs at this rate and tier-1 labs are using it for capacity planning, the frameworks follow. Revisit by 2027-03-31.

The narrow corpus is a caveat. The physics of prefix reuse punishing HBM bandwidth hold whether the agent writes code or files support tickets, and that is what re-prices the chip decision.

Also covered this issue

Comments