Sakana AI Launches Sakana Fugu: An Orchestration Model That Routes Tasks Across a Swappable Pool of Frontier LLMs

Sakana AI Launches Sakana Fugu: An Orchestration Model That Routes Tasks Across a Swappable Pool of Frontier LLMs


Today, Sakana AI launched Sakana Fugu. It is a multi-agent orchestration system that behaves like one model. You send a request to a single endpoint. Fugu decides how to handle it internally. It solves a task directly when that is enough. It also assembles and coordinates a team of expert models when needed. The complexity of a multi-agent system never reaches your code.

TL;DR

  • Fugu delivers a multi-agent system behind one OpenAI-compatible API.
  • Fugu Ultra leads most published coding and reasoning benchmarks.
  • The orchestrator beats the individual models it coordinates.
  • Opt-out and provider routing target compliance and single-vendor risk.
  • Routing is proprietary, so per-query model selection stays hidden.

What is Sakana Fugu

Fugu is itself a language model. It is trained to call other LLMs in an agent pool. That pool includes instances of itself, called recursively. Fugu manages model selection, delegation, verification, and synthesis internally.

Instead of hard-coded roles or workflows, Fugu learns how to coordinate. It decides when to delegate and how agents should communicate. It then combines their work into one answer. From the outside, you call a single model. Inside, a coordinated system of experts does the work.

Sakana AI frames this as a hedge against single-vendor dependency. If one provider restricts access, Fugu routes around the disruption. The research team cites recent export controls on Anthropic’s Fable and Mythos models as motivation. Over time, newer models can be folded into the pool.

Fugu and Fugu Ultra: Two Models, One API

Fugu ships in two variants, both behind one OpenAI-compatible API:

  • Fugu balances strong performance with low latency. It is a default for everyday coding, code review, and chatbots. It also fits tools like Codex. You can opt specific agents out of its pool. That helps teams meet data, privacy, and compliance requirements.
  • Fugu Ultra is tuned for maximum answer quality on hard, multi-step problems. It coordinates a deeper pool of expert agents. Its pool is fixed, so opt-out is not available. The current model ID is fugu-ultra-20260615.

The Research Behind the Orchestrator

Fugu builds on two ICLR 2026 papers Trinity and the Conductor on learned orchestration.

TRINITY uses a lightweight evolved coordinator across several turns. It assigns Thinker, Worker, or Verifier roles to delegate work adaptively. Conductor is trained with reinforcement learning. It discovers natural-language coordination strategies and focused prompts for diverse LLM pools.

Together, they show systems can learn to assemble and route agents per task. That replaces hand-designed workflows.

Interactive Explainer





Source link