AI News HubLIVE
In-site rewrite4 min read

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

Sakana AI released Sakana Fugu, a multi-agent orchestration system that routes tasks across a swappable pool of LLMs behind a single API endpoint. Fugu and Fugu Ultra lead coding, reasoning, and agentic benchmarks. The system aims to reduce single-vendor dependency and coordinates expert models internally for complex tasks.

SourceMarkTechPostAuthor: Asif Razzaq

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.

BenchmarkFuguFugu UltraOpus 4.8Gemini 3.1 ProGPT 5.5

SWE Bench Pro*59.073.769.254.258.6

TerminalBench 2.180.282.174.670.378.2

LiveCodeBench92.993.287.888.585.3

LiveCodeBench Pro87.890.884.882.988.4

Humanity’s Last Exam47.250.049.844.441.4

CharXiv Reasoning85.186.684.283.384.1

GPQA-D95.595.592.094.393.6

SciCode60.158.753.558.956.1

τ³ Banking21.720.620.68.420.6

Long Context Reasoning74.773.367.772.774.3

MRCRv286.693.687.984.994.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.

Copy CodeCopiedUse a different Browser

from openai import OpenAI

Endpoint and key come from your Sakana console (console.sakana.ai).

client = OpenAI( base_url="https:///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.

Press & analysis

Hacker News thread · 50 pts ↗ VentureBeat report ↗ Clanker Cloud analysis ↗

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

Check out the Product page and Technical details. Also, feel free to follow us on Twitter and don’t forget to join our 150k+ML SubReddit and Subscribe to our Newsletter. Wait! are you on telegram? now you can join us on telegram as well.

Need to partner with us for promoting your GitHub Repo OR Hugging Face Page OR Product Release OR Webinar etc.? Connect with us

The post Sakana AI Launches Sakana Fugu: An Orchestration Model That Routes Tasks Across a Swappable Pool of Frontier LLMs appeared first on MarkTechPost.