
Next-generation coding and agent model with engineering-grade code delivery, long-horizon autonomy, and 256K multimodal understanding.
Next-generation coding and agent model with engineering-grade code delivery, long-horizon autonomy, and 256K multimodal understanding.
يعرف أيضا باسم Seed Turbo, ByteDance Seed 2.1 Turbo, Seed-2.1-Turbo, seed-2-1-turbo
seed-2-1-turbo/v1/chat/completionsPOST/v1/responsesPOST/v1/messagesPOST/v1beta/models/seed-2-1-turbo:generateContentbytedance/seed-2-1-turbodola-seed-2.1-turbodola-seed-2-1-turbo-260628أسعار الدفع حسب الاستخدام مباشرة من كتالوج EmpirioLabs. تدفع فقط مقابل ما تستخدمه، بدون حد أدنى شهري.
يقدم Seed 2.1 Turbo واجهة Chat Completions المتوافقة مع OpenAI. وجّه أي OpenAI SDK إلى https://api.empiriolabs.ai/v1 بمفتاح EmpirioLabs API الخاص بك واستخدم معرّف النموذج seed-2-1-turbo. احصل على مفتاح API من لوحة تحكم EmpirioLabs.
curl https://api.empiriolabs.ai/v1/chat/completions \
-H "Authorization: Bearer $EMPIRIOLABS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "seed-2-1-turbo",
"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="seed-2-1-turbo",
messages=[{"role": "user", "content": "Write a haiku about the ocean."}],
)
print(response.choices[0].message.content)معلمات الطلب التي تدعمها واجهة Seed 2.1 Turbo API على EmpirioLabs. تُطبق القيم الافتراضية عند حذف أي حقل.
| المعامل | النوع | الافتراضي | النطاق / القيم | الوصف |
|---|---|---|---|---|
| max_tokens | number | 4096 | 1 إلى 65536 | Max output tokens |
| frequency_penalty | number | 0 | -2 إلى 2 | Penalty for repeated tokens. >0 reduces repetition, <0 encourages it. |
| presence_penalty | number | 0 | -2 إلى 2 | Penalty for new vs. seen tokens. >0 encourages new topics, <0 encourages staying on topic. |
| stop | string | - | - | Comma-separated stop sequences |
| enable_thinking | boolean | true | - | Enable deep thinking / reasoning mode. |
| reasoning_effort | enum | high | low, medium, high | Reasoning effort tier. Use enable_thinking=false to disable reasoning entirely. |
| enable_web_search | boolean | false | - | Enable web search: retrieves live web results and provides them to the model as additional context. |
| image_detail | enum | high | low, high, xhigh | Image visual quality tier for vision input. |
| video_fps | number | - | 0.2 إلى 5 | Frames per second extracted from video input. |
| response_format | enum | - | - | Constrain the output to JSON. Use JSON mode for any valid JSON object, or JSON schema to force output that matches a schema you provide. |
Per-token pricing is flat across the full 256K context, with no higher rate above 128K. Reasoning is on by default; set enable_thinking to false to answer directly without it.
على EmpirioLabs، تتم فوترة Seed 2.1 Turbo حسب الاستخدام: Input $0.63 per 1M prompt tokens; Output $3.13 per 1M generated tokens. جدول الأسعار المباشر في هذه الصفحة يطابق دائمًا ما تحتسبه الواجهة.
يدعم Seed 2.1 Turbo نافذة سياق من 256K رمز، مع ما يصل إلى 65,536 رمز إخراج لكل استجابة.
نعم. يقدم Seed 2.1 Turbo واجهة Chat Completions المتوافقة مع OpenAI، لذا تعمل حزم OpenAI SDK الحالية بتوجيه base_url إلى https://api.empiriolabs.ai/v1 وتعيين معرّف النموذج إلى seed-2-1-turbo.
نعم. يشغّل ملعب EmpirioLabs نموذج Seed 2.1 Turbo في المتصفح بنفس المعلمات التي تتيحها الواجهة، لتجربة المطالبات قبل كتابة الكود.
أنشئ حساب EmpirioLabs ثم أنشئ مفتاحًا من API Keys في لوحة التحكم. الفوترة برصيد الدفع حسب الاستخدام، فلا تدفع إلا مقابل الطلبات التي تنفذها.
تحقق من تسعيرنا أو تواصل إذا كنت ترغب في نشر نموذجك الخاص على مجموعتنا.