🎁 Nouveau Inscription gratuite, 10 appels offerts. Jusqu'à 1 $, sans carte.

Dola Seed 2.0 Pro vs Claude Fable 5

vs

Lequel, quand — verdict de synthèse, pas un tableau de benchmarks

Dola-Seed-2.0-pro est de loin le moins cher des deux — 20x moins par token d'entrée ($0.5 contre $10) et environ 16.7x moins par token de sortie ($3 contre $50) — et il est le seul qui accepte l'entrée vidéo, autorise jusqu'à 131072 tokens de sortie, et vous permet de désactiver la réflexion lorsque vous voulez une réponse simple et rapide. claude-fable-5 coûte plus cher mais comporte un contexte de 1000000 tokens, soit environ 3.9x les 256000 de Dola-Seed-2.0-pro, avec la réflexion toujours activée. Choisissez claude-fable-5 pour les très longs documents en une seule passe ; choisissez Dola-Seed-2.0-pro pour les entrées vidéo, le contrôle des coûts, ou le travail à fort volume.

Tarification

Dola Seed 2.0 Pro Claude Fable 5 Δ
Entrée / 1M tokens $0.5 $10 0.05×
Sortie / 1M tokens $3 $50 0.06×
Lecture en cache / 1M tokens $0.1 $1 0.1×
Écriture cache 1.25x (5m) / 2x (1h)

Tarifs issus du catalogue en direct au moment de la compilation ; chaque page de modèle présente la fiche actuelle.

Où ils se situent — prix en entrée pour 1M de tokens sur l'ensemble des 63 modèles chat pour cette unité de facturation (échelle logarithmique)

Capacités

Dola Seed 2.0 Pro Claude Fable 5
Utilisation d'outils oui oui
Contrôle de la réflexion configurable toujours activé
Sortie structurée oui
Mise en cache du prompt implicite + explicite explicite (vous indiquez le préfixe)
Durée de vie du cache non publié 5m default, 1h option
Préfixe minimum mis en cache 1024 jetons 1024 jetons

Spécifications

Dola Seed 2.0 Pro Claude Fable 5
Modalités d'entrée texte image vidéo texte image
Modalités de sortie texte texte
Sortie 2026-02-14 2026-06-09
Limite de connaissances 2026-01
Fenêtre de contexte 256K 1M
Sortie maximale 131K 128K
Paramètre de réflexion
  • thinking.type
  • reasoning_effort
output_config.effort (thinking.type is adaptive-only and needs no configuration)
Valeurs acceptées
thinking.type
  • enabled
  • disabled (no auto)
reasoning_effort
  • minimal
  • low
  • medium
  • high
effort
  • low
  • medium
  • high
  • xhigh
  • max

both "enabled" and "disabled" return 400

Par défaut enabled, with reasoning_effort medium and thinking summary on

thinking always on (adaptive)

effort
  • high

Les spécifications sont transcrites à partir de la documentation de chaque fournisseur ; une ligne qu'un fournisseur ne publie pas est omise plutôt que déduite. Sources complètes : Dola Seed 2.0 Pro · Claude Fable 5

Un prompt, deux modèles — mesurés via la passerelle

PROMPT Explain to a CFO, in exactly three sentences, why our LLM bill doubled after we enabled reasoning. VÉRIFIER exactement 3 phrases

Dola Seed 2.0 Pro réussi · 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.

sortie 563 tok (+416 réflexion) latence 9.4 s

Claude Fable 5 réussi · 3 sentences

When we enabled reasoning, the model began generating extensive internal "thinking" tokens before each answer, and those tokens are billed as output even though users never see them. Output tokens typically cost several times more than input tokens, so adding thousands of hidden reasoning tokens per request effectively multiplied our per-query cost. In short, we're paying for a much longer response behind the scenes in exchange for higher answer quality, and we can manage this by tuning reasoning effort levels or reserving reasoning mode for complex tasks only.

sortie 228 tok latence 6.7 s

Suivi de l'instruction (exactement trois phrases — comptables), adaptation à l'audience (registre CFO), et l'écart de facturation lié à la réflexion cachée que les compteurs de tokens ci-dessous révèlent.

PROMPT 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. VÉRIFIER le correctif passe les tests

Dola Seed 2.0 Pro réussi · 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. […]

sortie 1278 tok (+951 réflexion) latence 16.7 s

Claude Fable 5 réussi · 8/8 cases

## Fixed code ```python def longest_run(xs): if not xs: return 0 best = cur = 1 for i in range(1, len(xs)): if xs[i] == xs[i - 1]: cur += 1 else: cur = 1 best = max(best, cur) return best ``` ## Explanation The original function counts **adjacent equal pairs** rather than **items in a run**: a run of length *n* contains only *n − 1* equal neighbor pairs, so every result is off by one — a single-element list yields 0 instead of 1, and `[1, 2, 2]` yields 1 instead of 2 (which callers perceive as "missing" the run at the end). The fix is to initialize both `cur` and `best` to 1 (any nonempty list has a run of at least length 1), reset `cur` to 1 rather than 0 when

sortie 531 tok latence 12.5 s

Si le correctif est réellement juste (exécutable), la densité de l'explication, et l'efficacité en tokens sur une tâche bornée.

PROMPT 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. VÉRIFIER JSON valide, schéma exact

Dola Seed 2.0 Pro réussi · 5/5 fields, guidance null

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

sortie 506 tok (+452 réflexion) latence 8.6 s

Claude Fable 5 réussi · 5/5 fields, guidance null

```json { "company": "Meridian Robotics", "quarter": "Q3 (September quarter)", "revenue_usd_m": 412, "growth_pct": 11, "guidance": null } ``` Notes on interpretation: "up eleven and change" is rendered as 11 (the precise figure isn't stated), and guidance is null because it was explicitly withheld.

sortie 192 tok latence 6.5 s

Respect du schéma (aucun champ inventé), pression d'hallucination (guidance est explicitement retenue), et différences de chemin pour la sortie structurée.

PROMPT 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. VÉRIFIER 120 mots, 0 mot interdit

Dola Seed 2.0 Pro réussi · 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)

sortie 1041 tok (+872 réflexion) latence 11.4 s

Claude Fable 5 réussi · 120 words, 0 banned, 1 question

**Introducing Cross-Provider Prompt Caching for our API Gateway** Starting today, your repeated prompts are cached once and reused across OpenAI, Anthropic, Google, and any other provider you route through the gateway. Instead of paying full token costs every time your application sends the same system prompt or context block, the gateway detects matching prefixes and serves cached results in milliseconds. Why keep spending money and latency on identical requests? Early adopters report cost reductions of up to 60 percent on high-volume workloads, along with faster median response times. Configuration is simple: enable caching in your dashboard, set a TTL, and choose which routes participate. Cache entries are encrypted at rest and never shared between accounts. Available now on all plans.

sortie 1173 tok latence 18.2 s

Respect des contraintes (budget de mots, liste de mots interdits, l'unique question), empreinte stylistique, et contrôle de la longueur.

Basculez de l'un à l'autre avec une seule ligne

Les deux ids sont dans chaque onglet ci-dessous — la paire de lignes en surbrillance est la seule modification. Même endpoint, même clé, même structure de requête.

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",  # décommentez cette ligne, commentez celle du dessus
    messages=[{"role": "user", "content": "Summarize this diff"}],
    reasoning_effort="medium",
)
print(resp.choices[0].message.content)

Obtenir une clé API →

FAQ

Lequel est le moins cher, Dola Seed 2.0 Pro ou Claude Fable 5 ?

Dola Seed 2.0 Pro est moins cher sur entrée / 1m tokens ($0.5 contre $10, avec un écart de 20×). D'autres lignes peuvent indiquer l'inverse — le tableau ci-dessus contient la fiche complète, et le coût réel dépend de votre combinaison.

Puis-je faire un test A/B de Dola Seed 2.0 Pro par rapport à Claude Fable 5 sans deux intégrations ?

Oui. Les deux sont servis via le même endpoint compatible OpenAI avec une seule clé API — le basculement est un changement de chaîne de modèle en une ligne, vous pouvez donc diriger une fraction du trafic vers chacun et comparer les factures directement.

Est-ce que Dola Seed 2.0 Pro et Claude Fable 5 prennent en charge le prompt caching ?

Oui — les deux facturent les lectures en cache en dessous de leur tarif d'entrée, donc les charges de travail à préfixe chaud coûtent moins cher que ce que les tarifs de base suggèrent. Les lignes exactes des lectures en cache se trouvent dans le tableau de tarification ci-dessus.

Comparaisons associées

Issu de nos études mesurées