Contents
Tags
When Fable 5 reached Claude subscriptions, developers started reporting the same thing: open a Claude Code session, come back a few minutes later, and the five-hour usage window is gone with usage credits quietly billing in the background. One account described burning just under $100 of tokens in a single agentic session on a $100-a-month Max plan — the same workload they had run on Opus repeatedly without trouble. Fable 5.1 does not change the economics that caused it. Here is why it happens, what actually reduces it, and what runs on your own machine for nothing per token.

Start with the rate card, because most of the answer is there. Fable 5.1 costs $10 per million input tokens and $50 per million output. Claude Opus 5 costs $5 and $25. Fable is exactly twice the price in both directions, so identical work bills double before any behavioural difference enters the picture.
Then four behaviours multiply it, and all four are documented by Anthropic rather than inferred:
There is a fifth multiplier that predates Fable entirely and catches people migrating from older models: the tokenizer introduced with Claude Opus 4.7 produces roughly 30% more tokens for the same text than models older than it. If your mental model of “how much is a thousand tokens” was formed on an earlier Claude, it is under-counting by about a third.
On the API this is simply metered billing. On a Claude subscription it is less visible, which is why the reports read as surprise rather than complaint. Claude.ai plans do not expose raw token counts; limits are described as messages or usage and reset on rolling windows. When Fable 5 came to subscriptions, Pro, Max, Team and premium Enterprise seats could spend up to 50% of their weekly limit on it, and past that it moved to usage credits billed at standard API rates.
The practical consequence is that a long agentic run does not stop at a wall. It crosses from your included allowance into credits without much ceremony, and an agent that reasons at high effort, rewrites whole files and takes an extra turn per tool call crosses that line quickly.
Four things work, roughly in order of effect. None of them require giving up the model.
A worked example makes the caching point concrete. Take an agent consuming 100 million input and 10 million output tokens a month. At list rates that is $1,000 plus $500, so $1,500. If 90% of the input is served from cache, the input side falls to about $122 and the total to roughly $620. The single biggest lever on a Fable bill is how much of your context is cached rather than fresh.
Here is the uncomfortable arithmetic. The tasks that burn a plan fastest — renaming things across files, writing boilerplate, converting formats, first-draft tests, summarising a diff, answering questions about a codebase — are not frontier-reasoning tasks. They are volume tasks. You are paying $50 per million output tokens for work a 14B model does acceptably, and paying it on every single run.
A local model costs nothing per token. Not less: nothing. The electricity is real and the hardware is a sunk cost you have already paid, but there is no meter. That changes which tasks are worth automating, because the ones you currently avoid on cost grounds become free to run in a loop.
It also removes the failure mode entirely. There is no five-hour window to exhaust, no credits accruing in the background, and no export-control event that can take the model away — which is not hypothetical, since Fable 5 was suspended worldwide for 19 days in June 2026 before returning on 1 July.
Most people guess at where their tokens go and guess wrong. Two numbers settle it. The first is your ratio of output to input tokens: output costs five times input on Fable 5.1, so a workload that looks input-heavy on token counts is usually output-heavy on cost. The second is your cache hit rate, because fresh input costs forty times what a cached read costs.
If you are on the API, both come back in the usage object on every response. If you are on a subscription, you cannot see raw counts, and the practical substitute is to watch which kinds of session move the needle: a long agentic run in Claude Code will dwarf dozens of ordinary chat turns, because it is the one generating reasoning tokens, tool-call turns and whole-file rewrites.
Cost is the obvious reason to move volume work off a hosted frontier model. Availability is the one people only appreciate after it bites. On 12 June 2026 the US applied export controls to Claude Fable 5 and Claude Mythos 5, and Anthropic suspended access worldwide rather than risk breaching an order that took effect immediately. Access returned on 1 July, after 19 days.
Nothing about that was Anthropic behaving badly, and nothing about it is likely to repeat soon. That is rather the point: a well-run provider with every incentive to keep the lights on still went dark for nineteen days for reasons entirely outside its control. A model sitting on your own disk has no such failure mode, which is worth something independent of the per-token maths.
The honest framing is a split rather than a replacement. Local models do not match Fable 5.1 on the hardest reasoning. They comfortably handle the volume work that is emptying your plan. Run the volume locally, keep the frontier model for the handful of problems that genuinely need it, and the bill collapses without the quality falling where it matters.
A rule that holds across all of them: a bigger model at Q4 generally beats a smaller model at Q8. Fit the largest model you can at Q4_K_M rather than running a small one at high precision.
Which specific model depends on your exact card, system RAM and runtime, which is what our <a href="/models">Model Explorer</a> exists to answer — you give it your hardware and it ranks what actually fits, rather than making you guess from parameter counts. The <a href="/gpu">GPU pages</a> cover what each card runs, and the <a href="/run">run guides</a> carry the commands with the right quantisation filled in.
If you want a concrete policy rather than a principle: route everything to a local model first, and escalate by hand. Keep the frontier model for architecture decisions, gnarly debugging, and anything where being wrong is expensive. Send renaming, scaffolding, tests, documentation, commit messages and code questions to the local one.
Most people find the split lands somewhere near 80/20 by volume and near the inverse by value, which is exactly the shape that makes a subscription last the month. And if you are still paying for frontier calls, drop effort, cache aggressively and ask for targeted edits — those three together typically matter more than switching models.
Tell it your GPU, RAM and backend, and it ranks every open-weight model that actually fits your machine.
Open the Model Explorer → →Tools
Find AI models that fit your exact hardware. Enter your specs and get a ranked list instantly.
Newsletter