Orchestration Beats Every Single Frontier Model — Build Your Router This Sprint
The New Leaderboard Reality
Sakana's Fugu and Fugu-Ultra just topped every frontier model on GPQA-Diamond (95.5%), LiveCodeBench, Terminal-Bench 2.1, SWE-Bench Pro, and Humanity's Last Exam — not by being a better model, but by routing tasks across a pool of models including Claude Opus 4.8, Gemini 3.1 Pro, GPT-5.5, and undisclosed open models.
The training recipe matters more than the headline. Sakana used sep-CMA-ES (an evolutionary algorithm) to learn which model to select for which task, evaluated across real agentic harnesses. Fugu-Ultra adds a Conductor coordination model trained with GRPO on a five-step agentic workflow. This is a learned router, not a naive ensemble — the difference between the static heuristics everyone tried in 2024 and a system that now tops every board.
Small Specialists Beat Giants on Narrow Tasks
The second result is equally significant for your serving economics. Stanford/Berkeley's RoboReward fine-tuned Qwen3-VL 8B as a reward model and achieved 0.665 MAE — beating GPT-5 (0.811) and Gemini Robotics-ER 1.5 (0.906) on 2,831 examples. The recipe is reproducible: synthetic negative examples via GPT-5 mini scene descriptions, plus Qwen3-4B relabeling of commands.
A fine-tuned 8B model costing pennies per inference now outperforms GPT-5 at judging task completion. Your expensive LLM-as-judge may be both worse and 20x more costly.
Meanwhile, Laguna XS 2.1 (33B MoE, open-weight, permissive license) posted 63.1% on SWE-bench Multilingual — a self-hostable coding agent baseline that didn't exist last week.
The Pattern to Steal
| Approach | Result | Method | Your Move |
|---|---|---|---|
| Fugu (orchestration) | 95.5% GPQA-Diamond | Learned model selection via evolutionary algo | Build a router over 2-3 models you already pay for |
| RoboReward 8B (specialist) | 0.665 MAE (beats GPT-5) | Fine-tune + LLM-generated hard negatives | Replace your GPT-class judge with a fine-tuned 8B |
| Laguna XS 2.1 (open-weight) | 63.1% SWE-bench Multi | 33B MoE, quantized checkpoints on HF | Benchmark against proprietary coding agent |
Test-time compute scaling reinforces the pattern: a mid-tier model (Terra Pro) reportedly matched the flagship (Sol Pro) when given longer processing time. The optimization frontier has moved from bigger models and fatter prompts to smarter routing and compute allocation.
Separately, Anthropic's own data shows cutting Claude Code's system prompt by 80% improved reasoning on frontier models. Heavy prompting is now actively degrading performance — the opposite of what most production systems assume.
What to do
Build a minimal learned/heuristic router over 2-3 models you already have API access to and benchmark accuracy AND cost-per-solved-task against your single best model
Fine-tune a small model (Qwen3-VL 8B or equivalent) as a reward/judge model using LLM-generated hard negatives, and benchmark MAE vs your current GPT-class judge
Run an ablation stripping production system prompts down ~80% and A/B against current versions on your held-out eval set
Pull Laguna XS 2.1 quantized checkpoints from HuggingFace and run against your coding-agent eval set alongside your proprietary baseline