Publish time
2026/3/10Model Series
豆包seedInput type
Output type
Context Window
256,000Max Output Length
128,000Input Price
¥0.6 / 1M tokensOutput Price
¥3.6 / 1M tokensSeed-2.0-Lite 是一款功能全面且极具成本效益的企业级主力模型。它不仅具备强大的多模态与智能体(Agent)能力,还实现了显著降低的延迟,使其成为涵盖文本、视觉及工具应用等各类生产级工作负载的理想默认之选。该模型专为高频视觉理解及智能体驱动型工作流而精心打造,是实现大规模部署并确保极低延迟的绝佳方案。
Zhinao API routes requests to the best-fit provider and automatically fails over to the one with highest availability.
TTFT
No data
Throughput
21.49tps
Uptime
100.00%
Provider Model
volcengine/doubao-seed-2-0-lite
Supported Parameters
Recent Uptime
Reasoning
Toggleable
Supported Response Formats
Request Log Collection
ZDR Supported
Distillable
Yes
Total Context
256,000
Max Output
128,000
Input Price
¥0.6 / 1M tokens
Output Price
¥3.6 / 1M tokens
Compare different providers across Zhinao API
36.12 tok/s
2.62 s
Uptime for bytedance/doubao-seed-2-0-lite across all providers
Zhinao API normalizes requests and responses across providers for you
import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://api.360.cn/v1",
apiKey: process.env.ZHINAO_API_KEY,
});
const response = await client.chat.completions.create({
model: "bytedance/doubao-seed-2-0-lite",
messages: [
{ role: "user", content: "Hello, how are you?" }
],
temperature: 0.7,
max_tokens: 1000,
});
console.log(response.choices[0].message.content);