
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.
Também conhecido como 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-260628Tarifas pay-as-you-go ao vivo do catálogo EmpirioLabs. Você paga só pelo que usa, sem mínimo mensal.
Seed 2.1 Turbo atende a API Chat Completions compatível com OpenAI. Aponte qualquer SDK OpenAI para https://api.empiriolabs.ai/v1 com sua chave de API EmpirioLabs e use o id de modelo seed-2-1-turbo. Obtenha uma chave de API no painel 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)Parâmetros de requisição suportados pela API Seed 2.1 Turbo na EmpirioLabs. Os padrões valem quando um campo é omitido.
| Parâmetro | Tipo | Padrão | Intervalo / valores | Descrição |
|---|---|---|---|---|
| max_tokens | number | 4096 | 1 a 65536 | Max output tokens |
| frequency_penalty | number | 0 | -2 a 2 | Penalty for repeated tokens. >0 reduces repetition, <0 encourages it. |
| presence_penalty | number | 0 | -2 a 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 a 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.
Na EmpirioLabs, Seed 2.1 Turbo é cobrado por uso: Input $0.63 per 1M prompt tokens; Output $3.13 per 1M generated tokens. A tabela de tarifas ao vivo desta página sempre corresponde ao que a API cobra.
Seed 2.1 Turbo suporta uma janela de contexto de 256K tokens com até 65.536 tokens de saída por resposta.
Sim. Seed 2.1 Turbo atende a API Chat Completions compatível com OpenAI, então SDKs OpenAI existentes funcionam apontando base_url para https://api.empiriolabs.ai/v1 e definindo o id de modelo seed-2-1-turbo.
Sim. O playground da EmpirioLabs executa Seed 2.1 Turbo no navegador com os mesmos parâmetros que a API expõe, para você testar prompts antes de escrever código.
Crie uma conta EmpirioLabs e gere uma chave em API Keys no painel. A cobrança usa créditos pay-as-you-go, então você paga apenas pelas requisições que faz.
Confira nossos preços ou entre em contato se quiser que seu próprio modelo seja implementado em nossa pilha.