Fugu Ultra API

100万のコンテキスト、画像入力、ウェブ検索を用いて、ハード推論、コーディング、研究のためにフロンティアの専門家モデルをオーケストレーションするマルチエージェント指揮者。

Sakana AIテキスト生成1M コンテキストリリース Jun 21, 2026独自エンドポイント新着

About Fugu Ultra

100万のコンテキスト、画像入力、ウェブ検索を用いて、ハード推論、コーディング、研究のためにフロンティアの専門家モデルをオーケストレーションするマルチエージェント指揮者。

テキストおよび画像入力、1Mトークンコンテキスト、関数呼び出し、JSONモードの構造化出力、組み込みのウェブ検索をサポートします。推理は常に努力レベルが高い、xhigh、max(xhighとmaxが最も努力を多くかける)でオンです。ウェブ検索には別料金はかかりません。そのコストは、指揮者が使用状況を報告するオーケストレーショントークンに反映されます。オーケストレーショントークンはプロンプトや最終回答と同じ入力・出力料金で請求されるため、短いリクエストでもオーケストレーションコストがかかります。

別名 Sakana AI Fugu Ultra, Fugu-Ultra

reasoningmultimodalweb searchfunction callingstructured outputagentic codingcache

Fugu Ultra specs

モデルID
fugu-ultra
プロバイダー
Sakana AI
カテゴリ
テキスト生成
Released
Jun 21, 2026
コンテキスト長
1M tokens
最大出力
131,072 tokens
入力
TextImage
出力
Text
エンドポイント
POST /v1/chat/completions
POST /v1/responses
POST /v1/messages

Fugu Ultra API pricing

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

タイプ
仕様
料金
パスワード
1M プロンプトトークンあたり
<=272K $7.50>272K $15.00
ソリューション
1M生成トークンあたり
<=272K $45.00>272K $67.50
キャッシュの読み込み
1M キャッシュされた入力トークンあたり
<=272K $1.50>272K $3.00
料金ページ全体で比較

How to call the Fugu Ultra API

Fugu Ultra 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-ultra. 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-ultra",
    "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-ultra",
    messages=[{"role": "user", "content": "Write a haiku about the ocean."}],
)
print(response.choices[0].message.content)
Full Fugu Ultra API reference

Fugu Ultra API parameters

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

パラメータタイプデフォルト範囲 / 値説明
max_tokensinteger327681 to 131072Maximum number of output tokens for the final answer. The conductor needs room to work, so very small values can return empty output.
reasoning_effortenumhighhigh, xhigh, maxHow hard Fugu Ultra reasons. Reasoning is always on. The default is high; xhigh and max are aliases of the same maximum effort (more thorough and slower than high).
tool_web_searchbooleanfalse-Enable built-in web search. There is no separate fee; the search cost is reflected in the orchestration tokens billed for the request.
toolsarray[]-OpenAI-compatible function calling tool definitions.
tool_choiceobject--OpenAI-compatible tool choice control.
response_formatobject--OpenAI-compatible JSON mode for structured output.

知っておくと便利

Fugu Ultraはマルチエージェントコンダクターであり、各リクエストが専門家モデルのプールを調整し、それらの作業を単一の回答にまとめます。レイテンシとストリーミング - 複雑なプロンプトの場合、応答は数秒から数分かかることがあります。- モデルが終了した時点で全ての回答が一度に返され、トークンごとに返されるわけではありません。ストリーミングは受け入れられますが、トークンを生成する際にストリームが生成されるのではなく、最終的に完全なレスポンスを届けます。- 非常に小さな限界が答えを切り詰めたり空にしたりする可能性があるため、十分なヘッドルームmax_tokens残すこと。機能 - テキストおよび画像入力、1Mトークンコンテキスト付き。- 常に理屈に傾く。高がデフォルトです。xhighとmaxは同じ最大努力値です。- 関数呼び出し、JSONモード、利用可能な場合は出典を明示する組み込みウェブ検索(別料金なし)。Billing - モデル内部で使うオーケストレーショントークンを含む全トークン使用量で請求されるため、短いプロンプトでも一定のコストが発生します。- コンテキスト階層型:272,000以上のリクエストが表示されたより高いレートを使用します。

Fugu Ultra API: common questions

How much does the Fugu Ultra API cost?

On EmpirioLabs, Fugu Ultra is billed pay as you go: パスワード <=272K $7.50; >272K $15.00 1M プロンプトトークンあたり; ソリューション <=272K $45.00; >272K $67.50 1M生成トークンあたり; キャッシュの読み込み <=272K $1.50; >272K $3.00 1M キャッシュされた入力トークンあたり. The live rate card on this page always matches what the API charges.

What is the context window of Fugu Ultra?

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

Is the Fugu Ultra API OpenAI-compatible?

Yes. Fugu Ultra 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-ultra.

Can I try Fugu Ultra in the browser before integrating?

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

How do I get a Fugu Ultra 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.