MIT-Licensed 744B Ties Frontier: Your Coding Agent Budget Needs a Rewrite
The Convergence
Three data points landed in the same week, pointing the same way: the frontier API premium on coding workloads is compressing toward zero. Zhipu AI's GLM-5.1, a 744B MoE with roughly 40B active parameters and an MIT license, posted 58.4 on SWE-Bench Pro. GPT-5.4 scored 57.7. Claude Opus 4.6 scored 57.3. That is a 1.1-point spread across the top three, comfortably inside the noise band for eval harnesses with fewer than a few hundred tasks.
The real signal is not that GLM-5.1 is 'best.' It's that an MIT-licensed model you can self-host is now competitive with closed frontier APIs on the coding benchmark enterprises actually cite.
In the same week, Grok 4.3 launched at $1.25/$2.50 per million tokens with a 1M context window, a material undercut of incumbent pricing. And AirLLM demonstrated layer-streaming inference that runs 70B models on a 4GB GPU without quantization, trading VRAM for I/O bandwidth.
What the Headlines Don't Tell You
The SWE-Bench Pro gap at the top is 0.7 points, and no one is publishing confidence intervals. Read the leaderboard as 'GLM-5.1 is competitive,' not 'GLM-5.1 is best.' The benchmark measures issue resolution under one harness with specific retrieval assumptions. It does not measure:
- Latency under production batch sizes
- Cost per resolved ticket at your context lengths
- Behavior on half-written internal tickets, the kind filed on a Friday afternoon
- Tool-call reliability and retry behavior on long agent sessions
Grok's 1M window has a cost cliff: pricing doubles past 200K tokens to $2.50/$5.00. Pull the production token-length distribution and compute blended cost at p50/p95/p99 before committing. For most RAG workloads this wins. For whole-codebase agents it may not.
AirLLM is architecturally honest and operationally a batch-only tool. Throughput is bounded by disk-to-GPU streaming bandwidth. Useful for offline eval harness runs. Approximately unusable for interactive latency.
The Math That Changed
| Model | SWE-Bench Pro | Context | Pricing | License |
|---|---|---|---|---|
| GLM-5.1 (744B/40B active) | 58.4 | 200K | Self-host only | MIT |
| GPT-5.4 | 57.7 | — | Premium (closed) | Proprietary |
| Claude Opus 4.6 | 57.3 | — | Premium (closed) | Proprietary |
| Grok 4.3 | Not reported | 1M (2× >200K) | $1.25/$2.50 | Proprietary |
The prior on benchmark swaps like this one: about half of public-benchmark gains survive contact with a production eval, and the surviving half is usually smaller than the headline. That still often justifies migration, but only once cost and latency sit on the same page as accuracy.
The Architecture Tell
MoE with roughly 5% active parameters (40B of 744B) is now the dominant frontier pattern. For training or fine-tuning, dense architectures above 70B are hard to justify on FLOPs-per-quality. Combined with the progressive-disclosure pattern from Claude Skills, tiny description in active context, full instructions lazy-loaded on embedding match, the entire prompt-routing architecture deserves a revisit.
What to do
Run your internal coding eval (SWE-Bench Pro subset + proprietary repo tasks) against GLM-5.1, GPT-5.4, and Claude Opus 4.6 this sprint
Price-model Grok 4.3 for top-3 LLM workloads using actual token distribution at p50/p95/p99 context lengths
Adopt progressive-disclosure prompt routing (embed-match to skill-specific system prompts) in your agent framework
Pilot AirLLM for offline eval harness runs needing full-precision 70B outputs without GPU rental