After ~5.5 hours of testing on launch day, Simon Willison calls Claude Fable 5 "something of a beast" — slow, expensive, and happily churning through ambitious tasks. Key traits: 1M context, 128k max output, January 2026 knowledge cutoff, $10/$50 pricing (2× Opus), and conservative safety classifiers with new API fallback mechanisms.

The big model smell

Fable feels big in speed, cost, and how much it knows. Asked to list Simon Willison's open source projects with dates (no search), Fable produced a far richer list than Opus 4.8 — from files-to-prompt and LLM through Datasette, Django, and dozens of utilities. Willison treats knowledge depth as a proxy for model size; Anthropic has not disclosed parameter counts.

Using Fable in Claude.ai

Willison upgraded micropython-wasm to full CPython-in-WASM: Fable cloned the repo, identified Brett Cannon's cpython-wasi-build, and after he uploaded the zips, produced a working 13.9MB wheel runnable via uv. A strong first-day coding demo.

Datasette Agent and LLM library

Fable implemented human-in-the-loop tool approval for Datasette Agent, then unraveled hacks into proper LLM 0.32a3 features: llm_tool_call parameter, guaranteed unique tool_call_ids, PauseChain exceptions, resume from pending tool calls, and async executor fixes — work that felt like several days in one session.

How much it cost

Using AgentsView, Willison tracked ~$110.42 of Fable usage in one day on a $100/month Max subscription — mostly a Datasette Agent review session at $99.26 (78.2M tokens). Fable is not cheap for long agent runs.

Effort levels and pelicans

Generating "SVG of a pelican riding a bicycle" across effort levels: low ~1,929 out tokens (~10¢), medium ~2,290 (~11¢), high ~2,057 (~10¢), xhigh ~5,992 (~30¢), max ~14,430 (~72¢). High sometimes beat medium on token count for the same prompt.

The challenge is finding tasks that it can't do.