
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-260628EmpirioLabs カタログのライブ従量課金料金です。使った分だけの支払いで、月額最低料金はありません。
Seed 2.1 Turbo は OpenAI 互換の Chat Completions API を提供します。任意の OpenAI SDK を EmpirioLabs API キーで https://api.empiriolabs.ai/v1 に向け、モデル ID seed-2-1-turbo を使ってください。 EmpirioLabs ダッシュボードで API キーを取得してください。
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)EmpirioLabs 上の Seed 2.1 Turbo API が対応するリクエストパラメーターです。フィールドを省略した場合はデフォルト値が適用されます。
| パラメータ | タイプ | デフォルト | 範囲 / 値 | 説明 |
|---|---|---|---|---|
| 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。このページのライブ料金表は常に API の請求額と一致します。
Seed 2.1 Turbo は 256K トークンのコンテキストウィンドウに対応しています(1回の応答あたり最大 65,536 出力トークン)。
はい。Seed 2.1 Turbo は OpenAI 互換の Chat Completions API を提供しているため、既存の OpenAI SDK は base_url を https://api.empiriolabs.ai/v1 に向けてモデル ID を seed-2-1-turbo に設定するだけで動作します。
はい。EmpirioLabs プレイグラウンドでは API と同じパラメーターで Seed 2.1 Turbo をブラウザ上で実行できるので、コードを書く前にプロンプトを試せます。
EmpirioLabs アカウントを作成し、ダッシュボードの API Keysでキーを生成してください。課金は従量制クレジットなので、実行したリクエストの分だけ支払います。