🎁 New Sign up free, 10 calls on us. Up to $1, no card needed.

Claude Fable 5 vs GPT-5.6

vs

Which one, when — curated verdict, not a benchmark table

Both take text and image in, return text, and cap output at 128000 tokens, so the real split is price and control: gpt-5.6 runs $5 input / $30 output / $0.5 cache reads against $10 / $50 / $1 for claude-fable-5, making Anthropic's model 2x the input and cache cost and about 1.67x the output cost, with a marginally smaller 1000000-token window versus 1050000. Pick gpt-5.6 for high-volume or latency-sensitive work where you want to turn thinking off; pick claude-fable-5 when you want its always-on reasoning mode applied to every request and are willing to pay the premium.

Pricing

Claude Fable 5 GPT-5.6 Δ
Input / 1M tokens $10 $5
Output / 1M tokens $50 $30 1.7×
Cache read / 1M tokens $1 $0.5
Cache write 1.25x (5m) / 2x (1h) no separate charge

Rates from the live catalog at build time; each model page carries the current card.

Where they sit — input price per 1M tokens across all 63 chat models on this billing unit (log scale)

Claude Fable 5 · $10 GPT-5.6 · $5
$0.05 · Qwen3 VL Flash $30 · GPT-5.4 Pro

Capabilities

Claude Fable 5 GPT-5.6
Tool use yes yes
Thinking control always on configurable
Structured output yes yes
Prompt caching explicit (you mark the prefix) implicit (automatic)
Cache lifetime 5m default, 1h option 5–10m, up to 1h
Minimum cached prefix 1024 tokens 1024 tokens

Specs

Claude Fable 5 GPT-5.6
Input modalities text image text image
Output modalities text text
Released 2026-06-09 2026-07-09
Knowledge cutoff 2026-01 2026-02
Context window 1M 1.1M
Max output 128K 128K
Thinking parameter output_config.effort (thinking.type is adaptive-only and needs no configuration) reasoning.effort
Accepted values
effort
  • low
  • medium
  • high
  • xhigh
  • max

both "enabled" and "disabled" return 400

reasoning.effort
  • none
  • low
  • medium
  • high
  • xhigh
  • max
Default

thinking always on (adaptive)

effort
  • high
medium

Specs are transcribed from each vendor’s documentation; a row a vendor does not publish is left out rather than inferred. Full sources: Claude Fable 5 · GPT-5.6

One prompt, both models — measured through the gateway

PROMPT Explain to a CFO, in exactly three sentences, why our LLM bill doubled after we enabled reasoning. CHECK exactly 3 sentences

Claude Fable 5 passed · 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.

out 228 tok latency 6.7 s

GPT-5.6 passed · 3 sentences

Enabling reasoning makes the model generate many additional internal tokens before producing an answer, so each request consumes substantially more compute. Those reasoning tokens are billed even though they are not visible to users, and longer processing can also increase tool calls, retries, and output length. The bill doubled because our cost per request rose, not necessarily because usage volume increased; we can control it by limiting reasoning effort and routing simpler tasks to cheaper models.

out 126 tok (+30 thinking) latency 3.0 s

Instruction following (exactly three sentences — countable), audience shaping (CFO register), and the hidden-thinking billing gap the token meters below expose.

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. CHECK fix passes tests

Claude Fable 5 passed · 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

out 531 tok latency 12.5 s

GPT-5.6 passed · 8/8 cases

```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: best = max(best, cur) cur = 1 return max(best, cur) ``` The original code counted equal *transitions* rather than items, so a run of one had length `0`, a run of three had length `2`, and tracking from zero caused the off-by-one error. The corrected version starts each run at length `1`, resets to `1` when the value changes, and performs a final `max` after the loop so a run ending at the last element is included; an empty input still returns `0`.

out 277 tok (+93 thinking) latency 4.2 s

Whether the fix is actually correct (runnable), explanation density, and token efficiency on a bounded task.

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. CHECK valid JSON, schema exact

Claude Fable 5 passed · 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.

out 192 tok latency 6.5 s

GPT-5.6 passed · 5/5 fields, guidance "withheld pending the Q4 close"

{ "company": "Meridian Robotics", "quarter": "September quarter", "revenue_usd_m": 412, "growth_pct": null, "guidance": "withheld pending the Q4 close" }

out 179 tok (+118 thinking) latency 3.7 s

Schema obedience (no invented fields), hallucination pressure (guidance is explicitly withheld), and structured-output path differences.

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. CHECK 120 words, 0 banned words

Claude Fable 5 passed · 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.

out 1173 tok latency 18.2 s

GPT-5.6 passed · 120 words, 0 banned, 1 question

Today we are introducing Prompt Cache, a new API gateway feature that stores reusable prompt prefixes and serves them across supported model providers. By recognizing identical system instructions, tools, examples, and context blocks, Prompt Cache reduces repeated input processing, lowers latency, and helps control token costs without changing application code. Teams can configure retention windows, cache keys, provider routing, encryption, and regional storage policies from one dashboard or API. What happens when a preferred provider is unavailable? The gateway can route requests to another provider while reusing eligible cached content, preserving performance and consistency. Built-in metrics report hit rates, savings, latency, and provider usage, while audit logs support governance. Prompt Cache is available today in public preview for all customers.

out 628 tok (+473 thinking) latency 7.3 s

Constraint obedience (word budget, banned-word list, the single question), style fingerprint, and length control.

Switch between them with one line

Both ids are in every tab below — the highlighted pair of lines is the only edit. Same endpoint, same key, same request shape.

from openai import OpenAI

client = OpenAI(
    base_url="https://synthorai.io/v1",
    api_key="sk-syn-...",
)

resp = client.chat.completions.create(
    model="claude-fable-5",
    # model="gpt-5.6",  # uncomment this line, comment the one above
    messages=[{"role": "user", "content": "Summarize this diff"}],
    reasoning_effort="medium",
)
print(resp.choices[0].message.content)

Get an API key →

FAQ

Which is cheaper, Claude Fable 5 or GPT-5.6?

GPT-5.6 is cheaper on input / 1m tokens ($5 vs $10, 2.0× apart). Other rows may point the other way — the table above carries the full card, and real cost depends on your mix.

Can I A/B test Claude Fable 5 against GPT-5.6 without two integrations?

Yes. Both are served through the same OpenAI-compatible endpoint with one API key — switching is a one-line model-string change, so you can route a fraction of traffic to each and compare bills directly.

Do Claude Fable 5 and GPT-5.6 support prompt caching?

Yes — both bill cached reads below their input rate, so warm-prefix workloads cost less than the list rates suggest. The exact cache-read rows are in the pricing table above.

Related comparisons

From our measured studies