Dola Seed 2.0 Pro vs Claude Fable 5.1
Claude Fable 5.1 は招待制で提供されています。下記の数値は実際のライブレートですが、呼び出しにはまずワークスペースの権限付与が必要となるため、この比較を基に開発を行う前にアクセス権限をご依頼ください。
いつ、どちらを使うか
Dola-Seed-2.0-proは、入力トークン100万あたり$0.5対$10(20x)、出力で$3対$50(約16.7x)と大幅に安価な作業単位であり、両者のうち動画入力を受け入れてthinkingをオフにできる唯一のモデルであるため、推論コストを制御したい大量のチャット、コード、ツール作業に選択してください。256,000ではなく1,000,000トークンのコンテキストがジョブに必要であり、thinkingを無効にできず入力がテキストと画像のみであることを許容できる場合は、claude-fable-5-1を選択してください。どちらのキャッシュ読み込みも安価で、100万あたり$0.1および$0.25です。
ベンチマーク
Dola Seed 2.0 Pro:ベンダーはベンチマークのスコアを公表していません。
ベンダー公表: Alibaba (Qwen) Anthropic DeepSeek Google MiniMax Moonshot OpenAI Z.ai
料金
| Dola Seed 2.0 Pro | Claude Fable 5.1 | Δ | |
|---|---|---|---|
| 入力 / 1Mトークン | $0.5 | $10 | 0.05× |
| 出力 / 1Mトークン | $3 | $50 | 0.06× |
| キャッシュ読み取り / 1Mトークン | $0.1 | $0.25 | 0.4× |
| キャッシュ書き込み | - | 1.25x (5m) / 2x (1h) | - |
ビルド時のライブカタログの料金です。各モデルのページには現在の料金カードが記載されています。
位置付け — この課金単位におけるすべての67個のチャットモデル全体の1Mトークンあたりの入力料金 (対数スケール)
機能
| Dola Seed 2.0 Pro | Claude Fable 5.1 | |
|---|---|---|
| ツール使用 | あり | あり |
| 思考コントロール | 設定可能 | 常時オン |
| 構造化出力 | - | あり |
| プロンプトキャッシング | 暗黙的 + 明示的 | 明示的 (プレフィックスを自分で指定) |
| キャッシュ有効期間 | 非公開 | 5m default, 1h option |
| 最小キャッシュプレフィックス | 1024 トークン | 1024 トークン |
仕様
| Dola Seed 2.0 Pro | Claude Fable 5.1 | |
|---|---|---|
| 入力モダリティ | テキスト 画像 動画 | テキスト 画像 |
| 出力モダリティ | テキスト | テキスト |
| リリース | 2026-02-14 | 2026-09-01 |
| 知識のカットオフ | - | 2026-06 |
| コンテキストウィンドウ | 256K | 1M |
| 最大出力 | 131K | 128K |
| 思考パラメータ |
| output_config.effort (thinking is adaptive-only and always on) |
| 指定可能な値 | thinking.type
reasoning_effort
| effort
|
| デフォルト | enabled, with reasoning_effort medium and thinking summary on | thinking always on (adaptive) effort
|
仕様は各ベンダーのドキュメントから転記されています。ベンダーが公開していない行は推測せず、省略しています。 すべての出典: Dola Seed 2.0 Pro · Claude Fable 5.1
1行で切り替え
以下のすべてのタブには両方のIDが含まれています — 変更箇所はハイライトされた2行のみです。エンドポイント、キー、リクエスト形式はすべて同じです。
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",
# model="claude-fable-5-1", # この行をアンコメントし、上の行をコメントアウトします
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",
// model: "claude-fable-5-1", // この行をアンコメントし、上の行をコメントアウトします
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",
# "model": "claude-fable-5-1", # この行をアンコメントし、上の行をコメントアウトします
"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",
// Model: "claude-fable-5-1", // この行をアンコメントし、上の行をコメントアウトします
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")
// .model("claude-fable-5-1") // この行をアンコメントし、上の行をコメントアウトします
.addUserMessage("Summarize this diff")
.reasoningEffort(ReasoningEffort.MEDIUM)
.build());
System.out.println(resp.choices().get(0).message().content().orElse(""));FAQ
Dola Seed 2.0 Pro と Claude Fable 5.1 ではどちらが安いですか?
入力 / 1mトークン においては Dola Seed 2.0 Pro の方が安価です($0.5 対 $10、20× の差)。他の行では逆になる可能性があります — 上の表には完全な情報が記載されており、実際のコストは組み合わせに依存します。
2つの統合を行わずに Dola Seed 2.0 Pro と Claude Fable 5.1 のA/Bテストを実施できますか?
はい。両方とも1つのAPIキーで同じOpenAI互換エンドポイントを通じて提供されます — モデル文字列を1行変更するだけで切り替えられるため、トラフィックの一部をそれぞれにルーティングし、請求額を直接比較できます。
Dola Seed 2.0 Pro と Claude Fable 5.1 はプロンプトキャッシングをサポートしていますか?
はい — どちらのモデルでもキャッシュ読み込みは入力レートよりも低く請求されるため、ウォームプレフィックスのワークロードは定価が示すよりも低コストになります。キャッシュ読み込みの正確な行は、上の料金表に記載されています。