
قائد موسيقي متعدد الوكلاء ينسق نماذج خبراء رائدة للاستدلال القوي، والترميز، والبحث، مع 1M سياق، وإدخال صور، وبحث على الويب.
قائد موسيقي متعدد الوكلاء ينسق نماذج خبراء رائدة للاستدلال القوي، والترميز، والبحث، مع 1M سياق، وإدخال صور، وبحث على الويب.
يدعم إدخال النص والصور، وسياق رمز بسعة 1M، واستدعاء الدوال، ومخرجات منظمة بوضع JSON، وبحث ويب مدمج. الاستدلال دائما مع مستويات الجهد عالية، xhigh، وأقصى (xhigh وmax يبذلان أكبر جهد). البحث على الويب لا يفرض رسوما منفصلة؛ تعكس تكلفته في رموز التوزيع الموسيقي التي يبلغ عنها القائد أثناء استخدامها. رموز التوزيع يتم تحصيلها بنفس معدلات الإدخال والإخراج مثل الرسالة والإجابة النهائية، لذا حتى الطلبات القصيرة تتضمن تكلفة التنسيق.
يعرف أيضا باسم Sakana AI Fugu Ultra, Fugu-Ultra
fugu-ultraPOST /v1/chat/completionsPOST /v1/responsesPOST /v1/messagesLive pay-as-you-go rates from the EmpirioLabs catalog. You are billed only for what you use, with no monthly minimum.
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 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."}
]
}'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)Request parameters supported by the Fugu Ultra API on EmpirioLabs. Defaults apply when a field is omitted.
| المعامل | النوع | افتراضي | النطاق / القيم | الوصف |
|---|---|---|---|---|
| max_tokens | integer | 32768 | 1 to 131072 | Maximum number of output tokens for the final answer. The conductor needs room to work, so very small values can return empty output. |
| reasoning_effort | enum | high | high, xhigh, max | How 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_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 | object | - | - | OpenAI-compatible JSON mode for structured output. |
فوجو ألترا هو قائد موسيقي متعدد الوكلاء: كل طلب ينسق مجموعة من النماذج الخبيرة ويجمع أعمالهم في إجابة واحدة. التأخير والتدفق - قد تستغرق الردود من بضع ثوان إلى بضع دقائق في التعليمات المعقدة. - يتم إرجاع الإجابة الكاملة دفعة واحدة عند انتهاء النموذج، وليس رمزا تلو الآخر. يتم قبول البث، لكنه يقدم الاستجابة الكاملة في النهاية بدلا من بث الرموز أثناء توليدها. - اترك مساحة كبيرة max_tokens الرأس، لأن الحدود الصغيرة جدا قد تقصر أو تفرغ الإجابة. القدرات - إدخال نص وصورة، مع سياق رمز بقيمة 1M. - دائما على التفكير. العالي هو الافتراضي؛ xhigh و max هما نفس الحد الأقصى للجهد. - استدعاء الدوال، وضع JSON، وبحث ويب مدمج يستشهد بمصدره عند توفره (بدون رسوم منفصلة). الفوترة - يتم تحصيلها عند الاستخدام الكامل للرمز، بما في ذلك رموز التنسيق التي يستخدمها النموذج داخليا، لذا حتى الأوامر القصيرة تحمل بعض التكلفة. - المستوى السياقي: الطلبات التي تزيد عن 272 ألف رمز إدخال إجمالي تستخدم المعدل الأعلى المعروض.
On EmpirioLabs, Fugu Ultra is billed pay as you go: المدخلات <=272K $7.50; >272K $15.00 لكل 1M رموز مطالبة; الإنتاج <=272K $45.00; >272K $67.50 لكل مليون رمز مولد; قراءة الذاكرة المؤقتة الضمنية <=272K $1.50; >272K $3.00 لكل مليون رمز إدخال مخبأ. The live rate card on this page always matches what the API charges.
Fugu Ultra supports a 1M-token context window with up to 131,072 output tokens per response.
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.
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.
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.