Dola Seed 2.0 Pro
厂商牌价,无平台加价,按量付费。 以下为官方 list 价。登录客户可在 /console/pricing 查看含工作空间折扣的实际价格。 按 70% 缓存命中率计算的等效输入价:$0.22/M. Seed 语言模型默认开启隐式前缀缓存(最小 1,024 token,无存储费);另有显式的上下文缓存 API。媒体模型(图像 / ASR)不可缓存。
30 秒用上 Dola Seed 2.0 Pro
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-pro",
messages=[{"role": "user", "content": "Summarize this diff"}],
reasoning_effort="medium",
)
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-pro",
messages: [{ role: "user", content: "Summarize this diff" }],
reasoning_effort: "medium",
});
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-pro",
"messages": [{"role": "user", "content": "Hello"}],
"reasoning_effort": "medium"
}'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-pro",
Messages: []openai.ChatCompletionMessageParamUnion{
openai.UserMessage("Summarize this diff"),
},
ReasoningEffort: openai.ReasoningEffortMedium,
})
fmt.Println(resp.Choices[0].Message.Content)
}import com.openai.client.OpenAIClient;
import com.openai.client.okhttp.OpenAIOkHttpClient;
import com.openai.models.chat.completions.*;
import com.openai.models.ReasoningEffort;
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-pro")
.addUserMessage("Summarize this diff")
.reasoningEffort(ReasoningEffort.MEDIUM)
.build());
System.out.println(resp.choices().get(0).message().content().orElse(""));关于 Dola Seed 2.0 Pro
Dola Seed 2.0 Pro 是字节跳动 Dola Seed 2.0 系列在 BytePlus ModelArk 上的旗舰,官方描述为面向 Agent 时代打造的通用智能体模型。
- 发布说明强调它在复杂推理和长程任务中的稳定表现,包括多步规划、图文推理、视频理解和高级分析。
- 它在 256K 上下文窗口内提供深度推理、多模态理解、视觉定位和工具调用,输出最高 128K(含思维链),并支持前缀与会话缓存。
- Synthorai 将它置于 OpenAI 兼容的 completions 端点之后。
规格与限制
| 最大输出(厂商规格) | 131,072 |
| 模态 | text + image + video → text |
| 特性 | tools · streaming · vision · reasoning · caching |
| 备注 | General-purpose agentic flagship with deep reasoning, visual grounding and tool calling in a 256K context. |
| 提示词缓存 | 自动 + 显式 · 最小前缀 1,024 token |
常见问题
Dola Seed 2.0 Pro API 可以免费试用吗?
可以。新账号可获得 10 次试用调用和最高 $1 的免费额度,无需绑卡。按输入 $0.5/M 计算,仅这笔额度就足够对 Dola Seed 2.0 Pro 发起约 250 次 ~8K token 的请求。
Dola Seed 2.0 Pro 最擅长什么?
面向 Agent 时代的通用智能体模型,以及复杂推理与长程任务表现稳定和视觉定位、视频理解与工具调用。完整能力请见 About 部分,内容取自厂商官方发布说明。
Dola Seed 2.0 Pro 的价格是多少?
在 Synthorai 上,Dola Seed 2.0 Pro 输入 $0.5/百万 token、输出 $3/百万 token,即厂商牌价,无平台加价。缓存命中的输入 token 按 $0.1/M 计费。
Dola Seed 2.0 Pro 支持提示词缓存(prompt caching)吗?
支持:自动缓存默认开启,另有显式模式可获得确定性折扣。缓存命中的输入 token 按 $0.1/M 计费(未命中 $0.5/M);提示词需有 1,024 token 以上的稳定前缀才能命中缓存。 提示词缓存指南 →
如何开通 Dola Seed 2.0 Pro?
把现有 OpenAI SDK 的 base_url 指向 "https://synthorai.io/v1",model 设为 "Dola-Seed-2.0-pro" 即可。一把 API key 通用网关上的全部模型。