新用戶 免費註冊,送 10 次呼叫,最高 $1,免綁卡。

Dola Seed 2.0 Pro

發布於 2026-02-14

chat程式碼推理工具呼叫影像理解提示詞快取

Dola Seed 2.0 Pro 是字節跳動 Dola Seed 2.0 系列在 BytePlus ModelArk 上的旗艦,官方描述為面向 Agent 時代打造的通用智慧體模型。

輸入
文字 影像 影片 $0.5/M
輸出
文字 $3/M
快取讀取
$0.1/M
上下文
262K
相較 GPT-4o
便宜約 90%

價格在同類中的位置

價格在 60 個同類模型中的位置

輸入$0.5/M
$0.05 · Qwen3 VL Flash GPT-5.4 Pro · $30
輸出$3/M
$0.275 · DeepSeek V4 Flash GPT-5.4 Pro · $180
快取讀取$0.1/M
$0.0028 · DeepSeek V4 Flash GPT-5.4 Pro · $15

這條線顯示該模型的價格,在 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 帶回的是摘要並附帶 encrypted_content,而非原始軌跡;在工具呼叫的輪次中必須回傳 encrypted_content,否則推理品質會下降。
參數 reasoning_effort
取值 minimal · low · medium · high 閘道側參數面——以上方廠商映射為準

模型

模態 文字 + 影像 + 影片 → 文字

通用智慧體旗艦,在 256K 上下文內提供深度推理、視覺定位與工具呼叫。

依據 ByteDance 官方文件 ↗

單一提示詞 — 經由閘道測量

提示詞 Explain to a CFO, in exactly three sentences, why our LLM bill doubled after we enabled reasoning. 檢查 恰好 3 句

Dola Seed 2.0 Pro 通過 · 3 sentences

Reasoning-enabled LLMs do not generate final answers in one pass: they run hundreds of unshown internal trial, cross-check, and correction steps for every user request, and every one of these hidden steps consumes billable GPU time just like the visible output text. Unlike our prior standard chat workload which only processed exactly what users typed, reasoning mode automatically executes these validation loops by default, with no visible indicator to end users that extra compute is being consumed. This 2x increase is not a billing error or rogue usage spike: industry benchmarks consistently put reasoning workloads at 1.7-2.6x the compute cost of equivalent standard LLM requests, and this pricing dynamic is almost never clearly disclosed on vendor rate cards.

輸出 563 tok (+416 思考) 延遲 9.4 s

指令遵循(恰好三句,可數)、受眾適配(面向 CFO 的語氣),以及下方 token 計量所暴露的隱藏思考計費缺口。

提示詞 This function is supposed to return the longest run of consecutive equal items, but callers report it is off by one on single-element inputs and misses runs that end at the last index. Fix it and explain the bug in one paragraph. 檢查 修復通過測試

Dola Seed 2.0 Pro 通過 · 8/8 cases

### Corrected Implementation ```python def longest_run(xs): if not xs: return 0 best = 1 cur = 1 for i in range(1, len(xs)): if xs[i] == xs[i - 1]: cur += 1 best = max(best, cur) else: cur = 1 return best ``` --- ### Bug Explanation The original code has three critical linked flaws: 1. It initialized run counters `best` and `cur` to `0` instead of `1`, failing to account for the fact that *every individual element is already a valid run of length 1* -- this causes single-element inputs to incorrectly return `0`. 2. `cur` only counted how many extra matching elements followed the start of a run, so it always tracked one less than the actual run length, and it reset to `0` (instead of `1`) when a new run began, preserving this off-by-one error for all runs. 3. […]

輸出 1278 tok (+951 思考) 延遲 16.7 s

修復是否真的正確(可執行)、解釋的資訊密度,以及在一個邊界明確的任務上的 token 效率。

提示詞 Extract a JSON object with fields {company, quarter, revenue_usd_m, growth_pct, guidance} from this text. Use null for anything not stated; add no other fields. 檢查 合法 JSON,schema 精確

Dola Seed 2.0 Pro 通過 · 5/5 fields, guidance null

{ "company": "Meridian Robotics", "quarter": "September quarter", "revenue_usd_m": 412, "growth_pct": 11, "guidance": null }

輸出 506 tok (+452 思考) 延遲 8.6 s

schema 服從度(不臆造欄位)、幻覺壓力(guidance 明確被暫緩給出),以及結構化輸出路徑的差異。

提示詞 Write a 120-word product announcement for an API gateway feature that caches prompts across providers. Forbidden words: "seamless", "unlock", "game-changer", "revolutionize", "empower". Exactly one sentence must be a question. 檢查 120 詞,0 個禁用詞

Dola Seed 2.0 Pro 通過 · 123 words, 0 banned, 1 question

Today we’re rolling out cross-provider prompt caching for our API gateway. For engineering teams routing LLM requests across OpenAI, Anthropic, Mistral and open source models, this feature stores identical prompt payloads at the gateway layer, rather than relying on per-provider cache implementations limited to single endpoints. How much time and compute could your team save by avoiding redundant token processing for repeated system prompts, context windows, or common user queries? Cache hits return responses in under 10ms, with configurable TTL, granular purge controls, and per-application cache partitioning. Early access teams running support bots, batch inference and internal assistants recorded 42-67% lower LLM spend. This feature is live for all gateway users today, with no required code changes to existing routing workflows. (120 words)

輸出 1041 tok (+872 思考) 延遲 11.4 s

約束服從度(字數預算、禁用詞表、唯一的那句問句)、文風指紋,以及長度控制。

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)

關於 Dola Seed 2.0 Pro

  • 釋出說明強調它在複雜推理和長程任務中的穩定表現,包括多步規劃、圖文推理、影片理解和高階分析;BytePlus 稱它是該系列中能力最強的模型,一個支援瀏覽器操作與電腦操作、面向智慧體工作流的多模態引擎,並點名內容稽核、攝影機畫面安全監控、網頁調研與報告撰寫、金融分析、文件處理和客服為目標場景。
  • 它在 256K 上下文視窗內提供深度推理、多模態理解、視覺定位和工具呼叫,輸出最高 128K(含思維鏈),並支援前綴與會話層級的隱式和顯式快取。
  • 在把它定為標準之前,有兩處與較小同門的差異值得知道:視覺定位只列在 Pro 上,最新的 Lite 和 Mini 版本沒有;而結構化輸出列在那兩者上,Pro 沒有,因此需要受 schema 約束的回覆時應該選 Lite 或 Mini。
  • thinking.type 預設為 enabled 且沒有自動模式,reasoning_effort 從 minimal 到 high,預設為 medium;輸出上限為 128K,但預設仍是 4K。
  • Synthorai 將它置於 OpenAI 相容的 completions 端點之後。

常見問題

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 時代的通用智慧體模型、複雜推理與長程任務表現穩定、視覺定位、影片理解與工具呼叫。完整能力請見「關於」一節,內容取自廠商官方發布說明。

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 通用閘道上的所有模型。

相關模型

對比

本頁每個值都轉錄自廠商自己的文件(連結見上),並帶有核對日期。價格在全目錄範圍內比較;各廠商定義不同的規格值,只說明差異而不作圖表對比。此處沒有任何由我們測量的資料,也不做評分。

取得 API 金鑰 算算你的成本 →