
Cost-efficient multi-agent conductor that assembles a right-sized expert team per task, with 1M context, image input, and web search.
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
fugu-max/v1/chat/completionsPOST/v1/responsesPOST/v1/messagesPOST/v1beta/models/fugu-max:generateContentfugu-max-v1.0sakana/fugu-maxsakana/fugu-max-v1.0Live pay-as-you-go rates from the EmpirioLabs catalog. You are billed only for what you use, with no monthly minimum.
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 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."}
]
}'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)Request parameters supported by the Fugu Max API on EmpirioLabs. Defaults apply when a field is omitted.
| Parameter | Type | Default | Range / values | Description |
|---|---|---|---|---|
| max_tokens | integer | 32768 | 16 to 131072 | Maximum 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_effort | enum | high | high, xhigh, max | How hard Fugu Max reasons. Reasoning is always on. The default is high; xhigh and max are aliases of the same maximum effort. |
| tool_web_search | boolean | false | - | 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... |
| tools | array | [] | - | OpenAI-compatible function calling tool definitions. |
| tool_choice | object | - | - | OpenAI-compatible tool choice control. |
| response_format | enum | - | - | Return structured JSON output. JSON mode returns any valid JSON object; JSON Schema mode enforces the exact schema you provide. |
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.
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.
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.
Fugu Max supports a 1M-token context window with up to 131,072 output tokens per response.
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.
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.
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.
Check out our pricing or reach out if you want your own model deployed on our stack.