
Updated multi-agent conductor for hard reasoning, coding, and research, with distinct max effort, 1M context, image input, and web search.
Updated multi-agent conductor for hard reasoning, coding, and research, with distinct max effort, 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 high, xhigh, and a distinct max effort. Web search has no separate fee. Full orchestration token usage is billed at the displayed input, output, and cache rates.
別名 Fugu Ultra, Sakana AI Fugu Ultra v1.1, Fugu-Ultra-v1.1, fugu-ultra-v1-1
fugu-ultra-v1-1/v1/chat/completionsPOST/v1/responsesPOST/v1/messagesPOST/v1beta/models/fugu-ultra-v1-1:generateContentfugu-ultra-v1.1sakana/fugu-ultra-v1-1sakana/fugu-ultra-v1.1EmpirioLabs カタログのライブ従量課金料金です。使った分だけの支払いで、月額最低料金はありません。
Fugu Ultra v1.1 は OpenAI 互換の Chat Completions API を提供します。任意の OpenAI SDK を EmpirioLabs API キーで https://api.empiriolabs.ai/v1 に向け、モデル ID fugu-ultra-v1-1 を使ってください。 EmpirioLabs ダッシュボードで API キーを取得してください。
curl https://api.empiriolabs.ai/v1/chat/completions \
-H "Authorization: Bearer $EMPIRIOLABS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "fugu-ultra-v1-1",
"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-ultra-v1-1",
messages=[{"role": "user", "content": "Write a haiku about the ocean."}],
)
print(response.choices[0].message.content)EmpirioLabs 上の Fugu Ultra v1.1 API が対応するリクエストパラメーターです。フィールドを省略した場合はデフォルト値が適用されます。
| パラメータ | タイプ | デフォルト | 範囲 / 値 | 説明 |
|---|---|---|---|---|
| max_tokens | integer | 32768 | 16 から 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 Ultra v1.1 reasons. Reasoning is always on. high balances speed and performance, xhigh provides deep reasoning for complex problems, and max is the... |
| tool_web_search | boolean | false | - | Enable built-in web search. There is no separate fee; the search cost is reflected in the orchestration tokens billed for the request. |
| 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 Ultra v1.1 is an updated multi-agent conductor: each request coordinates a pool of expert models and composes their work into a single answer.
EmpirioLabs では Fugu Ultra v1.1 は従量課金です。このページのライブ料金表は常に API の請求額と一致します。
Fugu Ultra v1.1 は 1M トークンのコンテキストウィンドウに対応しています(1回の応答あたり最大 131,072 出力トークン)。
はい。Fugu Ultra v1.1 は OpenAI 互換の Chat Completions API を提供しているため、既存の OpenAI SDK は base_url を https://api.empiriolabs.ai/v1 に向けてモデル ID を fugu-ultra-v1-1 に設定するだけで動作します。
はい。EmpirioLabs プレイグラウンドでは API と同じパラメーターで Fugu Ultra v1.1 をブラウザ上で実行できるので、コードを書く前にプロンプトを試せます。
EmpirioLabs アカウントを作成し、ダッシュボードの API Keysでキーを生成してください。課金は従量制クレジットなので、実行したリクエストの分だけ支払います。