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


Benchmark

Sakana AI compares Fugu against the foundation models it orchestrates. Baselines use provider-reported scores. SWE Bench Pro uses the mini-swe-agent as scaffolding.

Benchmark Fugu Fugu Ultra Opus 4.8 Gemini 3.1 Pro GPT 5.5
SWE Bench Pro* 59.0 73.7 69.2 54.2 58.6
TerminalBench 2.1 80.2 82.1 74.6 70.3 78.2
LiveCodeBench 92.9 93.2 87.8 88.5 85.3
LiveCodeBench Pro 87.8 90.8 84.8 82.9 88.4
Humanity’s Last Exam 47.2 50.0 49.8 44.4 41.4
CharXiv Reasoning 85.1 86.6 84.2 83.3 84.1
GPQA-D 95.5 95.5 92.0 94.3 93.6
SciCode 60.1 58.7 53.5 58.9 56.1
τ³ Banking 21.7 20.6 20.6 8.4 20.6
Long Context Reasoning 74.7 73.3 67.7 72.7 74.3
MRCRv2 86.6 93.6 87.9 84.9 94.8

The orchestrator posts the top score on 10 of 11 rows. Fugu Ultra tops the four coding benchmarks, CharXiv Reasoning, and Humanity’s Last Exam. It ties regular Fugu on GPQA-D. Regular Fugu leads SciCode, τ³ Banking, and Long Context Reasoning. GPT 5.5 wins MRCRv2, the only baseline win here.

Its Fugu models stand shoulder-to-shoulder with Anthropic’s Fable 5 and Mythos Preview. Those two are not in Fugu’s pool, since they are not publicly accessible.

Use Cases

Sakana AI ran a beta with close to 500 early users. The published examples favor long, multi-step tasks.

  • AutoResearch: An agent improved a small GPT’s training recipe autonomously. It ran 123 experiments over roughly 14 hours on one H100 GPU. Fugu Ultra reached the best mean validation BPB of 0.9774, with a best single run of 0.9748.
  • Rubik’s Cube solver: Each model wrote a pure-Python solver, no libraries allowed. Fugu Ultra solved all 300 held-out cubes, averaging 19.72 moves. One baseline matched it closely at 19.76 moves. Two others crashed and solved none.
  • Classical Japanese kana reading order: On a 1610 letter, Fugu Ultra scored NED 0.80. The nearest baseline reached only 0.24.
  • Blindfold chess: Fugu played four games from memory, with no board shown. It beat three frontier models and a 2100-Elo Stockfish engine.
  • Online trading: On one 50-week window, Fugu Ultra returned +19.43% on average across five runs. The other frontier models stayed below +15%. Sakana AI notes past performance does not guarantee future results.

A Minimal API Example

Fugu uses an OpenAI-compatible API, so no SDK migration is required. Point an existing client at your console-provided endpoint.

from openai import OpenAI

# Endpoint and key come from your Sakana console (console.sakana.ai).
client = OpenAI(
    base_url="https://<your-fugu-endpoint>/v1",  # from console.sakana.ai
    api_key="YOUR_SAKANA_API_KEY",
)

resp = client.chat.completions.create(
    model="fugu-ultra-20260615",           # or "fugu"
    messages=[
        {"role": "user",
         "content": "Reproduce the method in this paper and report the gap."},
    ],
)

print(resp.choices[0].message.content)

Token usage and cost are reported per request. So you can monitor spend in real time.

Community Reactions

Sakana Fugu — Early Community Sentiment

A manual review of public reaction on X and Hacker News, with links to every source. Captured June 22, 2026.

12 posts reviewed

Sentiment split (n = 12)

Supportive 3
Skeptical 6
Critical 3

Supportive
Skeptical
Critical
Early reaction skews skeptical. The “is this just a router or wrapper?” question dominates. The clearest supportive voices are Sakana‑affiliated.




Method: sentiment was assigned by hand from a small sample of public posts on June 22, 2026. This is not a statistical survey, and the split can shift as more reactions arrive. Two of the three supportive posts are from Sakana AI or its CEO. Quotes are shortened; follow each link for full context. The Reddit quote is as reported by VentureBeat.
Marktechpost · Sakana Fugu sentiment tracker
Sources: X · Hacker News · VentureBeat