Sakana Fugu – a conductor orchestrating multiple specialised AI models

    Sakana Fugu: Orchestrator, Not Monolith

    29. Juni 20265 min read
    Till Freitag

    TL;DR:Sakana AI's Fugu is a lightweight selection head that routes prompts across a pool of specialised LLMs. Two variants (Fugu, Fugu-Ultra), 1M context, from $5/1M tokens. In benchmarks the constellation matches Anthropic's Fable/Mythos – without depending on any single provider. A strategic response to the Fable 5 export lockout of June 12, 2026."

    Till Freitag

    What this is about

    On June 22, 2026, Sakana AI released the Fugu Technical Report (arXiv 2606.21228). Fugu is not another foundation model in the race for bigger weights. It is an orchestrator – a lightweight selection head that routes incoming prompts across a pool of specialised LLMs from different providers.

    The timing is no accident. Ten days earlier, on June 12, 2026, the US Department of Commerce placed export controls on Anthropic's Fable 5 and Mythos. Overnight, teams lost API access with no migration path. Fugu is the strategic answer: if every single model is a single point of failure, the fix isn't a bigger model – it's less dependence on any one of them.

    The thesis behind Fugu

    Three years of frontier development have followed one assumption: a model that can do everything beats many models that each do one thing. More parameters, more data, more RLHF – one stack ends up at the top of the leaderboard.

    Sakana quietly questions that assumption. Providers increasingly specialise: Anthropic on long-context reasoning, OpenAI on tool use, Z.ai on cheap coding, Moonshot on agent loops, Google on multimodality. If you want the best model for each sub-task, you don't need a bigger monolith – you need a good router.

    That's Fugu. A model whose only job is to pick the right model for the prompt at hand.

    Architecture: selection head, not mixture of experts

    When people hear "multi-model," they often think of Mixture of Experts (MoE) inside a single model. Fugu is the exact opposite: the experts are external models from different providers, and the router is a separate, small model that sits in front of the actual inference call.

    Prompt
      │
      ▼
    ┌──────────────┐
    │ Fugu Router  │  (small selection head)
    └──────┬───────┘
           │ picks model
           ▼
    ┌───────────────────────────────────────────┐
    │  Claude  │  GPT  │  GLM-5.2  │  Kimi K2  │
    └───────────────────────────────────────────┘
           │
           ▼
       Response

    The benefit: models are swappable. When a provider drops out (export control, outage, price hike), the route changes, not the architecture.

    How the router learns

    Fugu is trained in two stages:

    1. Supervised Fine-Tuning (SFT) on labelled prompt → best-model pairs. Sakana built a pipeline that runs every prompt through all candidate models and evaluates the outcomes.
    2. Online adaptation – the router updates continuously as new models enter the pool or existing ones change.

    That's the real trick: the router doesn't just know which model is good, but which model is good for which kind of prompt. A coding prompt goes somewhere different from a legal research query or a marketing copy task.

    The two variants

    VariantAudienceInput price
    FuguStandard, low overhead$5 / 1M tokens
    Fugu-UltraHigher routing quality, more candidate modelshigher

    Both support up to 1M context – important, because the router can re-pick the model per turn even in long conversations.

    Benchmarks: matches Fable and Mythos

    Per Sakana's technical report, Fugu reaches aggregate benchmark levels comparable to Anthropic's Fable 5 and Mythoswithout training a frontier model itself. The performance comes from the pool, not from its own weights.

    That's the important point: Fugu doesn't "beat" Fable through better model engineering, but through better model-selection engineering. An architectural win, not a scaling win.

    What this means strategically

    Three shifts we've been seeing in client work that Fugu now makes explicit:

    1. Single-vendor strategies are dead. Saying "we run on OpenAI" as an architecture statement in 2026 builds concentration risk. The Fable lockout wasn't an exception – it was a preview.
    2. Routing becomes its own discipline. Just as load balancing and caching became their own categories, model routing becomes its own layer in the stack. Fugu is the first serious standalone implementation.
    3. "Best model" is a routing question, not a model question. Competition shifts from the foundation model up to the orchestration layer above it. The same move we described in Agent Harness as a Category.

    Where Fugu fits in our stack

    We rarely deploy a single model in client projects anyway. What we currently solve with hand-built routers and heuristics (Claude for reasoning, GLM for coding bulk, Kimi for agent loops, local models for sensitive data) Fugu could take over as a service.

    Open questions for us:

    • Latency overhead. How many milliseconds does the router call cost in front of every inference call?
    • Cost predictability. If the router itself decides which expensive model to call, how do we plan budgets?
    • Privacy. What does Sakana see when we route prompts through them?
    • On-prem? Can Fugu run locally, or is it cloud-API only?

    We'll test it over the next weeks inside our AutoClaw pipeline and in a client project currently routing between GLM-5.2 and Claude Fable 5. Report to follow.

    Build vs. buy

    The obvious question: why not build it yourself? A router is conceptually trivial – a few regex rules, a small classifier, done. We build these regularly.

    The difference comes down to two things:

    1. Training data. Sakana built a pipeline that continuously generates prompt → best-model labels. Replicating the clean version of that costs more than most teams want to invest.
    2. Adaptivity. The moment GLM-6 or Claude Fable 6 lands, the router has to evaluate and slot in the new model. Static rules age fast.

    For internal tools with three cleanly separated use cases (coding, writing, reasoning): build it yourself. For products with open prompt spaces that need to use the best model at any time: buy Fugu or something equivalent.

    What comes next

    Fugu is the start of a category. We expect over the next six months:

    • Open-source routers on Hugging Face that replicate Fugu's approach.
    • Cloud providers (AWS Bedrock, Azure AI) announcing their own routing layers.
    • Privacy-first routers that include local models in the pool – relevant for regulated industries.

    If you're building an AI architecture today, at minimum design the routing layer as its own module, even if it currently calls just one model. Otherwise the rewrite in 12 months gets expensive.

    Sources

    TeilenLinkedInWhatsAppE-Mail

    Related Articles

    Z.ai GLM-5.2 – performance comparison against Claude and Western frontier models
    June 25, 20265 min

    Z.ai GLM-5.2 – why the next frontier leap comes from China

    Z.ai ships GLM-5.2 – more than doubling GLM-5.1, close to Claude Fable 5, cheaper, deployable on-prem. While US frontier

    Read more
    Futuristic AI orchestration interface with interconnected model nodes on dark background
    March 11, 20264 min

    Perplexity Computer: 19 AI Models, One System – The End of Single-Model Thinking

    Perplexity just launched Computer – a multi-model agent that orchestrates 19 AI models to complete complex workflows aut

    Read more
    Local AI on a laptop – notetaker, LLM, privacy shield
    June 24, 20264 min

    Is Local AI Killing the AI-SaaS Startups? An Honest View From the Engine Room

    Meetily takes meeting notes fully locally. Qwen runs on a laptop. RTX Spark hits notebooks in 2026. Are all the AI-wrapp

    Read more
    Gemma 4 12B Coder running locally on a developer laptop – code symbols streaming from a 12B chip
    June 15, 20264 min

    Gemma 4 12B Coder: Local Code Generation Becomes the Default

    Google ships the Gemma 4 12B Coder — the specialized coding variant of the Gemma 4 stack. 12B parameters in GGUF format,

    Read more
    Odysseus by PewDiePie – self-hostable AI workspace with chat, agents and documents as an alternative to ChatGPT and Claude
    June 13, 20263 min

    PewDiePie's Odysseus: The real question isn't AI sovereignty – it's the AI workplace

    PewDiePie's open-source project Odysseus hit 30,000 GitHub stars in 48 hours. The more interesting question behind it: w

    Read more
    Builder looking skeptically at a routing diagram of multiple AI models
    June 5, 20264 min

    Lovable Model Routing: Why Output Quality Has Slipped for Builders

    Lovable now routes chat requests across different models depending on the task. From a builder's perspective, output qua

    Read more
    NVIDIA RTX Spark – Local AI First: laptop as a local AI cloud while hyperscaler infrastructure shows cracks
    June 3, 20265 min

    NVIDIA RTX Spark: When the Laptop Becomes the AI Cloud – Local AI First Gets Real

    DGX Spark was the prelude, RTX Spark is the rollout. Why NVIDIA's RTX Spark platform flips the cloud-default assumption

    Read more
    Gemma 4 AI model running on a compact mini PC – frontier intelligence goes local
    April 6, 20264 min

    Gemma 4: Frontier Intelligence Goes Laptop-Sized – The Hype Is Real

    Google's Gemma 4 delivers GPT-4 level intelligence in 14 GB. 85 tokens per second on consumer hardware, 256K context, na

    Read more
    Model Routing Guide – decision matrix for choosing the right AI model per task
    March 30, 20264 min

    Model Routing Guide – Which AI Model for Which Task?

    Using GPT-4o for everything is like taking a Porsche to the bakery. Model routing saves 80% of AI costs – without qualit

    Read more