高周波企業のワークロードのためのバランスの取れた汎用モデル:情報処理、コンテンツ、検索、データ分析。
別名 Seed Lite, ByteDance Seed 2.0 Lite, Seed-2.0-Lite, seed-2-0-lite
seed-2-0-lite/v1/chat/completionsPOST/v1/responsesPOST/v1/messagesPOST/v1beta/models/seed-2-0-lite:generateContentbytedance/seed-2-litedoubao-seed-2-liteseed-2-0-lite-260215seed-2-liteEmpirioLabs カタログのライブ従量課金料金です。使った分だけの支払いで、月額最低料金はありません。
Seed 2.0 Lite は OpenAI 互換の Chat Completions API を提供します。任意の OpenAI SDK を EmpirioLabs API キーで https://api.empiriolabs.ai/v1 に向け、モデル ID seed-2-0-lite を使ってください。 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-0-lite",
"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-0-lite",
messages=[{"role": "user", "content": "Write a haiku about the ocean."}],
)
print(response.choices[0].message.content)EmpirioLabs 上の Seed 2.0 Lite API が対応するリクエストパラメーターです。フィールドを省略した場合はデフォルト値が適用されます。
| パラメータ | タイプ | デフォルト | 範囲 / 値 | 説明 |
|---|---|---|---|---|
| max_tokens | number | 4096 | 1 から 65536 | 最大出力トークン |
| frequency_penalty | number | 0 | -2 から 2 | トークンを繰り返し使うとペナルティがあります。>0は繰り返しを減らし、<0はそれを促します。 |
| presence_penalty | number | 0 | -2 から 2 | 新規トークンと既視トークンのペナルティ。>0は新しいトピックを奨励し、<0は話題に集中することを奨励します。 |
| stop | string | - | - | コンマ区切られたストップシーケンス |
| enable_thinking | boolean | true | - | ディープシンキング/レッショニングモードを有効にしてください。 |
| reasoning_effort | enum | medium | low, medium, high | 推論努力の段階です。enable_thinking=falseを使って推論を完全に無効にしてください。 |
| 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 | 視覚入力のための画像、ビジュアルクオリティの階層。 |
| video_fps | number | - | 0.2 から 5 | 映像入力から抽出されたフレーム毎秒。 |
| response_format | enum | - | - | 出力をJSONに制約します。有効なJSONオブジェクトにはJSONモードを使い、提供したスキーマに一致する出力を強制的に行ってください。 |
入力トークンが >=128K の場合、価格設定は 2x となります。 クライアントの値に関係なく、 温度と top p はサーバーの固定 (temp=1, top p=0.95) です。
When this model invokes built-in tools (web search, code interpreter, etc.) inside a single request, the response carries a normalized usage.tool_usage map alongside the token counts. The example below shows the shape — exact field names, units, and which tools appear can vary slightly per provider:
"usage": {
"prompt_tokens": 123,
"completion_tokens": 456,
"cost_usd": 0.0042,
"tool_usage": {"web_search": 3, "code_interpreter": 1}
}The tool counts are already factored into cost_usd — they are surfaced for transparency so you can audit per-tool billing. The field is omitted when no tools were invoked.
EmpirioLabs では Seed 2.0 Lite は従量課金です。このページのライブ料金表は常に API の請求額と一致します。
Seed 2.0 Lite は 256K トークンのコンテキストウィンドウに対応しています(1回の応答あたり最大 128,000 出力トークン)。
はい。Seed 2.0 Lite は OpenAI 互換の Chat Completions API を提供しているため、既存の OpenAI SDK は base_url を https://api.empiriolabs.ai/v1 に向けてモデル ID を seed-2-0-lite に設定するだけで動作します。
はい。EmpirioLabs プレイグラウンドでは API と同じパラメーターで Seed 2.0 Lite をブラウザ上で実行できるので、コードを書く前にプロンプトを試せます。
EmpirioLabs アカウントを作成し、ダッシュボードの API Keysでキーを生成してください。課金は従量制クレジットなので、実行したリクエストの分だけ支払います。