Fugu Max API

Cost-efficient multi-agent conductor that assembles a right-sized expert team per task, with 1M context, image input, and web search.

Sakana AIText Generation1M contextReleased Sep 10, 2026Proprietary EndpointNew

About Fugu Max

Cost-efficient multi-agent conductor that assembles a right-sized expert team per task, with 1M context, image input, and web search.

Supports text and image input, a 1M token context, function calling, strict JSON Schema structured output, and built-in web search. Reasoning is always on with effort levels high and xhigh; max is accepted as an alias of xhigh. One flat token rate at every context length. Built-in web search and page fetch bill per executed call. Full orchestration token usage is billed at the displayed input, output, and cache rates.

Also known as Sakana AI Fugu Max

reasoningmultimodalweb searchfunction callingagentic codingstructured outputcache

Fugu Max specs

Model ID
fugu-max
Author
Sakana AI
Category
Text Generation
Released
Sep 10, 2026
Context window
1M tokens
Max output
131,072 tokens
Input
TextImage
Output
Text
Structured output
JSON Schema
Endpoints
POST/v1/chat/completionsPOST/v1/responsesPOST/v1/messagesPOST/v1beta/models/fugu-max:generateContent
Alternate model IDs
fugu-max-v1.0sakana/fugu-maxsakana/fugu-max-v1.0

Fugu Max API pricing

Live pay-as-you-go rates from the EmpirioLabs catalog. You are billed only for what you use, with no monthly minimum.

Type
Spec
Rate
Input
per 1M prompt tokens
$2.00
Output
per 1M generated tokens
$6.00
Implicit cache read
per 1M cached input tokens
$0.25
Web search
per call when invoked
$0.007
Web extractor
per call when invoked
$0.007
Compare on the full pricing page

How to call the Fugu Max API

Fugu Max serves the OpenAI-compatible Chat Completions API. Point any OpenAI SDK at https://api.empiriolabs.ai/v1 with your EmpirioLabs API key and use the model id fugu-max. Get an API key from the EmpirioLabs dashboard.

cURL
curl https://api.empiriolabs.ai/v1/chat/completions \
  -H "Authorization: Bearer $EMPIRIOLABS_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "fugu-max",
    "messages": [
      {"role": "user", "content": "Write a haiku about the ocean."}
    ]
  }'
Python (OpenAI SDK)
from openai import OpenAI

client = OpenAI(
    base_url="https://api.empiriolabs.ai/v1",
    api_key="YOUR_EMPIRIOLABS_API_KEY",
)

response = client.chat.completions.create(
    model="fugu-max",
    messages=[{"role": "user", "content": "Write a haiku about the ocean."}],
)
print(response.choices[0].message.content)
Full Fugu Max API reference

Fugu Max API parameters

Request parameters supported by the Fugu Max API on EmpirioLabs. Defaults apply when a field is omitted.

ParameterTypeDefaultRange / valuesDescription
max_tokensinteger3276816 to 131072Maximum number of output tokens for the final answer. Must be at least 16. The conductor needs room to work, so very small values can truncate or empty the answer.
reasoning_effortenumhighhigh, xhigh, maxHow hard Fugu Max reasons. Reasoning is always on. The default is high; xhigh and max are aliases of the same maximum effort.
tool_web_searchbooleanfalse-Enable built-in web search. Adds $0.007 to the request cost for each invoked call, and a single request can run more than one call. Page fetches are billed at the...
toolsarray[]-OpenAI-compatible function calling tool definitions.
tool_choiceobject--OpenAI-compatible tool choice control.
response_formatenum--Return structured JSON output. JSON mode returns any valid JSON object; JSON Schema mode enforces the exact schema you provide.

Good to know

Fugu Max is the cost-efficient multi-agent conductor: each request assembles a right-sized team of expert models for the task and composes their work into a single answer.

Latency and streaming

  • Simple prompts usually return in a few seconds, and heavier prompts take longer while the conductor works.
  • The full answer is returned all at once when the model finishes, not token by token. Streaming is accepted, but it delivers the complete response at the end rather than streaming tokens as they generate.
  • max_tokens must be at least 16. Leave generous headroom, since very small limits can truncate or empty the answer.

Capabilities

  • Text and image input, with a 1M token context.
  • Always-on reasoning. high is the default, xhigh raises the effort, and max is accepted as an alias of xhigh.
  • Function calling, strict JSON Schema structured output, and built-in web search that cites its sources when available.

Billing

  • Billed on full token usage, including the orchestration tokens the model uses internally, so even short prompts carry some cost.
  • One flat token rate at every context length, with no higher rate for long prompts.
  • Built-in web search and page fetch are billed per executed call at the rates shown, and a single request can run more than one call.

Per-tool billing (usage.tool_usage)

When this model invokes tools (web search, code interpreter, etc.) inside a single request, the response carries a normalized usage.tool_usage map alongside the token counts. The example below shows the shape, exact field names, units, and which tools appear can vary slightly per provider:

"usage": {
  "prompt_tokens": 123,
  "completion_tokens": 456,
  "cost_usd": 0.0042,
  "tool_usage": {"web_search": 3, "code_interpreter": 1}
}

The tool counts are already factored into cost_usd, they are surfaced for transparency so you can audit per-tool billing. The field is omitted when no tools were invoked.

Fugu Max API: common questions

How much does the Fugu Max API cost?

On EmpirioLabs, Fugu Max is billed pay as you go: Input $2.00 per 1M prompt tokens; Output $6.00 per 1M generated tokens; Implicit cache read $0.25 per 1M cached input tokens. The live rate card on this page always matches what the API charges.

What is the context window of Fugu Max?

Fugu Max supports a 1M-token context window with up to 131,072 output tokens per response.

Is the Fugu Max API OpenAI-compatible?

Yes. Fugu Max serves the OpenAI-compatible Chat Completions API, so existing OpenAI SDKs work by pointing base_url at https://api.empiriolabs.ai/v1 and setting the model id to fugu-max.

Can I try Fugu Max in the browser before integrating?

Yes. The EmpirioLabs playground runs Fugu Max in the browser with the same parameters the API exposes, so you can test prompts before writing code.

How do I get a Fugu Max API key?

Create an EmpirioLabs account, then generate a key under API Keys in the dashboard. Billing is pay-as-you-go credits, so you only pay for the requests you make.

Ready to use better endpoints?

Check out our pricing or reach out if you want your own model deployed on our stack.