Benchgen
Models/sakana-ai/

Fugu

DraftPublic

Model Details

Fugu

Organization Type Context License Modality Released

Quick answer: Fugu is Sakana AI's multi-agent orchestration model, released 22 June 2026. It routes tasks across a dynamic pool of frontier LLMs — assembling and coordinating expert agents internally — and exposes everything through a single OpenAI-compatible API endpoint. Fugu balances performance with low latency, making it the default pick for everyday coding, code review, and interactive chatbot services.

At a Glance

Where Fugu leads

  • Frontier-class coding performance — 92.9% on LiveCodeBench, 87.8% on LiveCodeBench Pro.
  • Single-endpoint simplicity: no multi-agent plumbing required in user code.
  • Provider resilience — agent pool is swappable; no single-vendor dependency.
  • Compliance controls: opt specific providers or models out of the agent pool.

Where it lags

  • Per-task cost depends on which underlying models activate; less predictable than a flat rate.
  • Not available in EU/EEA markets (GDPR compliance in progress).
  • Architecture opacity: routing decisions and model selections are not exposed by the API.

Best for: everyday coding assistance, code review, responsive chatbots, and interactive services that need frontier capability without multi-agent engineering overhead.

What Fugu Is

Fugu is the standard tier of Sakana AI's Sakana Fugu product, a multi-agent system that presents as a single foundation model. When a request arrives at the Fugu endpoint, Fugu's orchestrator — itself a language model trained to coordinate agents — decides whether to handle the task directly or to assemble and direct a team of specialist models. The user never sees that coordination layer; from outside, it behaves like a single model call.

The orchestration technology is grounded in two ICLR 2026 papers from Sakana AI: TRINITY, which trains a lightweight evolved coordinator to assign Thinker, Worker, and Verifier roles across multiple LLMs; and The Conductor, which uses reinforcement learning to discover natural-language coordination strategies. Fugu inherits these learned coordination patterns and applies them dynamically to each incoming task.

Fugu's agent pool is configurable for compliance-sensitive teams. Users can opt specific providers or models out of the pool — for example, routing entirely through on-premises or EU-approved models — while retaining the single-endpoint interface. This positions Fugu as a practical hedge against API access disruptions: if a provider restricts access, Fugu reroutes around it automatically.

Specifications

FieldValue
OrganizationSakana AI
Model typeMulti-agent orchestration system
API identifierfugu
AccessClosed, API only (OpenAI-compatible)
Context windowUp to 272K tokens (standard rate); higher supported at premium rate
ArchitectureLearned model orchestration (TRINITY + Conductor, ICLR 2026)
LicenseProprietary
Release date22 June 2026
ModalityText
AvailabilityGlobal (excluding EU/EEA)

Pricing

Fugu uses a blended rate model based on which agents are active, not a fixed per-token price.

ScenarioRate
Single agent activeStandard rate of that underlying model
Multiple agents activeSingle rate of the top-tier model in the active pool

Fees are never stacked — adding more agents does not multiply the bill. You can also subscribe:

PlanPriceUsage
Standard$20/monthLightweight daily use
Pro$100/month10× Standard — focused working sessions
Max$200/month20× Standard — heavy, long-running workloads

Every subscription tier includes access to both Fugu and Fugu Ultra. Source: Sakana Fugu pricing.

Context Window

Fugu has a context window that supports up to 272K tokens at standard rates, with extended context available at a higher rate. At 272K tokens this covers approximately 400+ pages of text in a single request — sufficient for full codebases, long research papers, or multi-document analysis tasks.

Fugu vs Alternatives

ModelGPQA-DLiveCodeBenchPrice (in/out per 1M)
Fugu95.5%92.9%blended (top-tier agent rate)
Fugu Ultra95.5%93.2%$5 / $30
Claude Fable 5~92.0%87.8%Proprietary (restricted)
Gemini 3.1 Pro~93.6%~85.3%$2 / $12

Fugu and Fugu Ultra both exceed the GPQA Diamond scores of individually callable frontier models, because Fugu can coordinate multiple reasoning specialists simultaneously. The practical tradeoff: Fugu's variable pricing is harder to forecast for heavy workloads, and it is unavailable in the EU/EEA.

How Fugu Performs on Real Agent Tasks

Sakana AI's beta data from nearly 500 early users — covering code review, paper reproduction, cybersecurity analysis, and patent research — consistently showed Fugu outperforming single-call frontier models on long, multi-step tasks. In an AutoResearch experiment, Fugu Ultra (the stronger sibling) drove 123 experiment iterations autonomously over 14 hours, finishing with the best mean bits-per-byte across four seeds. In a security assessment test, Fugu executed a full recon-to-report pipeline from a single scoped instruction, staying inside scope without destructive actions.

For Benchgen users, the relevant signal is reliability-under-repetition: the public benchmark scores show Fugu's ceiling, but what matters for a specific domain workflow is whether it completes that workflow consistently. Because Fugu's routing is non-deterministic and provider-dependent, Benchgen runs expose variance that single-trial vendor benchmarks cannot.

Use Fugu via API

from openai import OpenAI  # Fugu exposes an OpenAI-compatible API

client = OpenAI(
    api_key="YOUR_SAKANA_API_KEY",
    base_url="https://api.sakana.ai/v1",  # replace with actual endpoint
)

response = client.chat.completions.create(
    model="fugu",
    messages=[{"role": "user", "content": "Review this Python function for bugs..."}],
)
print(response.choices[0].message.content)

Frequently Asked Questions

What is Sakana Fugu? Sakana Fugu is a multi-agent AI system by Sakana AI that presents as a single OpenAI-compatible model. It routes requests through a coordinated pool of frontier LLMs, handling model selection and agent orchestration internally. Fugu is the balanced-latency variant; Fugu Ultra is tuned for maximum quality on hard tasks.
How is Fugu different from a standard LLM? Fugu is itself a language model trained to coordinate other LLMs — it dynamically assembles and directs teams of specialist agents rather than generating answers from a single set of weights. The coordination uses learned strategies from Sakana AI's TRINITY and Conductor research (ICLR 2026).
How much does Fugu cost? Fugu pricing is a blended rate: you pay the rate of the highest-tier underlying model that is active for your request. When only one agent is active, you pay that model's standard rate. Multiple agents never stack fees. Subscription plans start at $20/month (Standard), $100/month (Pro), and $200/month (Max).
Can I control which models Fugu uses? Yes — for Fugu, you can opt specific providers or models out of the agent pool via the Sakana console. Fugu Ultra's pool is fixed to deliver its maximum performance.
Is Fugu available in the EU? Not yet. Sakana AI is working toward GDPR compliance. The service is currently unavailable to users in EU and EEA member states.

Specs and scores sourced from Sakana AI's Fugu announcement and the Fugu technical report. Last updated 2026-06-22.

Benchmark Leaderboards

This model isn’t on any benchmark leaderboard yet.