Back to modelsBuy Plan
ByteDance
Doubao Seed 2.0 Lite
Doubao Seed 2.0 Lite 是豆包 Seed 2.0 系列全模态理解模型,支持视频、图像、音频与文本原生统一理解,Agent、Coding 与 GUI 能力同步升级,适合大规模批量化部署。
Quick Stats
Context
256K
Max Output
32K
Provider
ByteDance
Specs
1
Modalities
in textin imagein videoin audioout text
Specs & List Price (per 1M tokens)
Quality
Input $0.088235Output $0.529412Cache read $0.017647Audio in $1.323529
Recommended Plan
Doubao Seed 2.0 Lite Starter Plan
Pay-as-you-go after top-up; $1 free credit for new users.
API Endpoint
Model ID
volcengine/doubao-seed-2.0-litecURL
curl https://intertoken.ai/v1/chat/completions \
-H "Authorization: Bearer $TOKENPORTAL_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "volcengine/doubao-seed-2.0-lite",
"messages": [{"role": "user", "content": "Hello!"}]
}'Python
from openai import OpenAI
client = OpenAI(
base_url="https://intertoken.ai/v1",
api_key="$TOKENPORTAL_API_KEY",
)
resp = client.chat.completions.create(
model="volcengine/doubao-seed-2.0-lite",
messages=[{"role": "user", "content": "Hello!"}],
)
print(resp.choices[0].message.content)Start using this model
Sign up free, get an API key, and make your first call in 30 seconds.