Dola Seed 2.0 Lite 是字节跳动 Dola Seed 2.0 系列在 BytePlus ModelArk 上的均衡档位。
- 输入
- 文本 图像 视频 音频 $0.25/M
- 输出
- 文本 $2/M
- 缓存读取
- $0.05/M
- 上下文
- 262K
- 对比 GPT-4o
- 便宜约 95%
Benchmark 成绩
厂商公布: Alibaba (Qwen) Anthropic ByteDance Google MiniMax Moonshot OpenAI Tencent Z.ai
价格在同类中的位置
价格在 60 个同类模型中的位置
这条线显示该模型的价格,在 Synthorai 上同类模型里处于什么位置。两端标出了最便宜和最贵的那个。这里是基础价,批量、区域和缓存写入的折扣见价格页。
规格与限制
Token
| 上下文窗口(厂商规格) | 256,000 |
|---|---|
| 最大输出(厂商规格) | 131,072 |
提示词缓存
| 缓存方式 | 自动 + 显式 |
|---|---|
| 最低前缀 | 1,024 |
思考
| 厂商参数 | thinking.type + reasoning_effort |
|---|---|
| 可选值 | thinking.type enabled · disabled (no auto); reasoning_effort minimal · low · medium · high |
| 默认值 | enabled,且 reasoning_effort 为 medium 请求未指定时生效 |
| 可关闭 | 支持 |
| 思考行为 | 思维链通过 reasoning_content 返回并保留在对话历史中;在工具调用轮次无需回传任何内容,省略也不会报错 |
| 参数 | reasoning_effort |
| 取值 | minimal · low · medium · high 网关侧参数面——以上方厂商映射为准 |
模型
| 模态 | 文本 + 图像 + 视频 + 音频 → 文本 |
|---|
- Seed 2.0 系列于 2026-02-14 发布
- ModelArk id 为 seed-2-0-lite(最新版本 260428)
- 256K 上下文,128K 最大输出(含 CoT)
- 260428 版本上的音频理解处于 beta
- 隐式 + 显式上下文缓存
单个 Prompt —— 通过网关实测
Dola Seed 2.0 Lite 通过 · 3 sentences
Enabling reasoning on our production LLM requires the model to run resource-intensive multi-step chain-of-thought inference for every customer-facing query, rather than the single-pass inference that powered our original non-reasoning deployment, and GPU compute—which makes up 90% of our total LLM bill—scales directly with the number of compute cycles each query consumes. Our cloud provider’s LLM billing model charges per million processed tokens, and reasoning workflows generate an average of 2.1x more hidden processing tokens (the intermediate problem-solving steps the model never surfaces to end users) that are still billable, pushing our total monthly token consumption just over double what it was prior to enabling the feature. […]
输出 1306 tok (+1096 思考) 延迟 18.2 s
指令遵循(恰好三句,可数)、受众适配(面向 CFO 的语气),以及下方 token 计量所暴露的隐藏思考计费缺口。
Dola Seed 2.0 Lite 通过 · 8/8 cases
### Corrected Function ```python def longest_run(xs): if not xs: # Handle empty input edge case return 0 best = cur = 1 # Base run length of 1 for any non-empty single element for i in range(1, len(xs)): if xs[i] == xs[i - 1]: cur += 1 best = max(best, cur) else: cur = 1 # Reset run length for the new, different element return best ``` ### Bug Explanation (single paragraph) The original function’s core flaw was that it counted the number of consecutive equal adjacent element pairs, rather than the number of elements in the run itself, leading to all results being off by one, which caused both reported issues: a run of k equal elements only has k-1 consecutive matching pairs, so the original function’s maximum `best` value was always one less than the true element count of the longest run. […]
输出 2620 tok (+2217 思考) 延迟 33.2 s
修复是否真的正确(可运行)、解释的信息密度,以及在一个边界明确的任务上的 token 效率。
Dola Seed 2.0 Lite 通过 · 5/5 fields, guidance "Formal guidance withheld pending Q4 clos"
{ "company": "Meridian Robotics", "quarter": "September quarter", "revenue_usd_m": 412, "growth_pct": 11, "guidance": "Formal guidance withheld pending Q4 close" }
输出 1502 tok (+1439 思考) 延迟 20.2 s
schema 服从度(不臆造字段)、幻觉压力(guidance 明确被暂缓给出),以及结构化输出路径的差异。
Dola Seed 2.0 Lite 未命中 · 141 words, 0 banned, 1 question
Today we launch Cross-Provider Prompt Cache, a new feature for our Core API Gateway built to cut redundant AI costs and latency for teams routing requests across multiple LLM providers. Many development teams rotate between OpenAI, Anthropic, and Google Gemini to balance performance, cost, and capability, but identical prompts get reprocessed from scratch with every provider switch, wasting tokens and slowing response times. This feature stores validated prompt responses at the gateway layer, so repeat requests pull from cache regardless of which provider they route to, with configurable TTLs and built-in compliance with all major provider data policies. […]
输出 1870 tok (+1695 思考) 延迟 23.1 s
约束服从度(字数预算、禁用词表、唯一的那句问句)、文风指纹,以及长度控制。
30 秒用上 Dola Seed 2.0 Lite
OpenAI 兼容:换掉 base_url,SDK 不用改。POST /v1/chat/completions
from openai import OpenAI
client = OpenAI(
base_url="https://synthorai.io/v1",
api_key="sk-syn-...",
)
resp = client.chat.completions.create(
model="Dola-Seed-2.0-lite",
messages=[{"role": "user", "content": "Summarize this diff"}],
)
print(resp.choices[0].message.content)import OpenAI from "openai";
const client = new OpenAI({
baseURL: "https://synthorai.io/v1",
apiKey: "sk-syn-...",
});
const resp = await client.chat.completions.create({
model: "Dola-Seed-2.0-lite",
messages: [{ role: "user", content: "Summarize this diff" }],
});
console.log(resp.choices[0].message.content);curl https://synthorai.io/v1/chat/completions \
-H "Authorization: Bearer sk-syn-..." \
-H "Content-Type: application/json" \
-d '{
"model": "Dola-Seed-2.0-lite",
"messages": [{"role": "user", "content": "Hello"}]
}'package main
import (
"context"
"fmt"
"github.com/openai/openai-go/v3"
"github.com/openai/openai-go/v3/option"
)
func main() {
client := openai.NewClient(
option.WithBaseURL("https://synthorai.io/v1"),
option.WithAPIKey("sk-syn-..."),
)
resp, _ := client.Chat.Completions.New(context.TODO(), openai.ChatCompletionNewParams{
Model: "Dola-Seed-2.0-lite",
Messages: []openai.ChatCompletionMessageParamUnion{
openai.UserMessage("Summarize this diff"),
},
})
fmt.Println(resp.Choices[0].Message.Content)
}import com.openai.client.OpenAIClient;
import com.openai.client.okhttp.OpenAIOkHttpClient;
import com.openai.models.chat.completions.*;
OpenAIClient client = OpenAIOkHttpClient.builder()
.baseUrl("https://synthorai.io/v1")
.apiKey("sk-syn-...")
.build();
ChatCompletion resp = client.chat().completions().create(
ChatCompletionCreateParams.builder()
.model("Dola-Seed-2.0-lite")
.addUserMessage("Summarize this diff")
.build());
System.out.println(resp.choices().get(0).message().content().orElse(""));关于 Dola Seed 2.0 Lite
- BytePlus 称其最新版本是 Dola 家族首个全模态理解模型,原生统一视频、图像、音频与文本理解,并升级了智能体、编码与 GUI 能力;上一版本则被定位为相对 seed-1-8 更具成本效益、高吞吐的企业级升级,拥有出色的长上下文理解和面向核心生产流程的可靠结构化输出。
- 它提供 256K 上下文窗口,输出最高 128K(含思维链),是 seed-1.8 那 64K 总输出的两倍,这也是把长推理工作迁到 2.0 一代最具体的理由。
- 输出默认 4K,需要长回答时要主动调高。
- 思考通过 thinking.type 默认开启,该字段只有 enabled 和 disabled 两个取值,没有自动设置;推理深度另由 reasoning_effort 调节,取值 minimal、low、medium 或 high,默认 medium。
- 它支持带 JSON schema 的结构化输出、含 MCP 工具集成的函数调用、思考摘要,以及前缀和会话两个层级的隐式与显式缓存;无论输入是什么,输出都只有文本。
- BytePlus 没有为该系列发布逐项对比的选型指南,因此发布说明里的定位就是在各档位之间做选择的官方依据。
- Synthorai 通过 OpenAI 兼容的 chat API 代理该模型。
常见问题
Dola Seed 2.0 Lite API 可以免费试用吗?
可以。新账号可获得 10 次试用调用和最高 $1 的免费额度,无需绑卡。按输入 $0.25/M 计算,仅这笔额度就足够对 Dola Seed 2.0 Lite 发起约 500 次 ~8K token 的请求。
Dola Seed 2.0 Lite 最擅长什么?
家族首个全模态理解模型、原生统一视频、图像、音频与文本、256K 上下文,输出最高 128K。完整能力请见「关于」部分,内容取自厂商官方发布说明。
Dola Seed 2.0 Lite 的价格是多少?
在 Synthorai 上,Dola Seed 2.0 Lite 输入 $0.25/百万 token、输出 $2/百万 token,即厂商牌价,无平台加价。缓存命中的输入 token 按 $0.05/M 计费。
Dola Seed 2.0 Lite 支持提示词缓存(prompt caching)吗?
支持:自动缓存默认开启,另有显式模式可获得确定性折扣。缓存命中的输入 token 按 $0.05/M 计费(未命中 $0.25/M);提示词需有 1,024 token 以上的稳定前缀才能命中缓存。 提示词缓存指南 →
如何开通 Dola Seed 2.0 Lite?
把现有 OpenAI SDK 的 base_url 指向 "https://synthorai.io/v1",model 设为 "Dola-Seed-2.0-lite" 即可。一把 API key 通用网关上的全部模型。
相关模型
对比
本页每个值都转录自厂商自己的文档(链接见上),并带有核对日期。价格在全目录范围内比较;各厂商定义不同的规格值,只说明差异而不作图表对比。此处没有任何由我们测量的数据,也不做评分。