Migrate to Claude Fable 5.1 and Claude Mythos 5.1 from Claude Fable 5, Claude Mythos 5, Claude Opus 5, or Claude Opus 4.8: model IDs, breaking changes, and migration checklists.
Claude Fable 5.1 succeeds Claude Fable 5 at the same input and output prices, with cache reads at a quarter of the cost. It's available on the Claude API, Amazon Bedrock, Claude Platform on AWS, Google Cloud, and Microsoft Foundry. Claude Mythos 5.1 shares the same capabilities and is offered only to approved customers in Project Glasswing. For behavioral differences and prompting patterns, see Prompting Claude Fable 5.1.
The baseline settings shared by claude-fable-5-1 and claude-mythos-5-1:
thinking configuration is required. Both thinking: {type: "disabled"} and manual extended thinking (thinking: {type: "enabled", budget_tokens: N}) return a 400 error.{type: "auto"} (the default) and {type: "none"} are supported. Forcing a tool call with {type: "any"} or {type: "tool", name: "..."} returns a 400 error. See Breaking changes.invalid_request_error. Organizations with a ZDR arrangement should contact their Anthropic account team, or configure retention per workspace. See Model-specific data retention requirements for per-platform details.Where the two models diverge:
stop_details categories as Claude Fable 5. A declined request returns stop_reason: "refusal" with a stop_details.category, and can fall back to another model with the fallbacks parameter or a client-side retry. See Refusals and fallback.Migration is mostly drop-in. The API surface, limits, per-token pricing, tokenizer, always-on adaptive thinking, refusal handling, and stop_details categories all match Claude Fable 5. What changes: forced tool choice returns a 400 error, thinking blocks are preserved only for the model that produced them or a newer one and only in the conversation that produced them, cache reads cost less, and agent-loop behavior differs in three ways. The same changes apply to Claude Mythos 5.1, except the conversation check on thinking blocks, which Claude Mythos 5.1 doesn't run.
model = "claude-fable-5" # Before
model = "claude-fable-5-1" # After
# Or, for the Project Glasswing model with the same capabilities:
model = "claude-mythos-5-1" # AfterForced tool choice is not supported: Claude Fable 5 accepts tool_choice auto, none, any, and tool. On claude-fable-5-1, {type: "any"} and {type: "tool", name: "..."} return a 400 invalid_request_error:
tool_choice: type "tool" and "any" are not supported for this model.The check applies on the Messages API, the Message Batches API, and the token counting endpoint.
Before (Claude Fable 5):
client = anthropic.Anthropic()
record_summary_tool = {
"name": "record_summary",
"description": "Record the structured summary of the document.",
"input_schema": {
"type": "object",
"properties": {"summary": {"type": "string"}},
"required": ["summary"],
},
}
response = client.messages.create(
model="claude-fable-5",
max_tokens=16000,
tools=[record_summary_tool],
tool_choice={"type": "tool", "name": "record_summary"},
messages=[{"role": "user", "content": "Summarize: The meeting moved to Thursday."}],
)
print(response.content)After (Claude Fable 5.1): leave tool_choice at auto, name the tool in the instruction, and set strict: true so the call matches your schema. (In a CMEK organization, where structured outputs, including strict: true, are not available on Claude Fable models, rely on the instruction alone.) For example:
client = anthropic.Anthropic()
record_summary_tool = {
"name": "record_summary",
"description": "Record the structured summary of the document.",
"strict": True,
"input_schema": {
"type": "object",
"properties": {"summary": {"type": "string"}},
"required": ["summary"],
"additionalProperties": False,
},
}
response = client.messages.create(
model="claude-fable-5-1",
max_tokens=16000,
tools=[record_summary_tool],
tool_choice={"type": "auto"},
messages=[
{
"role": "user",
"content": "Summarize: The meeting moved to Thursday. Call the record_summary tool with your result.",
}
],
)
print(response.content)See Strict tool use and Forcing tool use. If you forced a tool only to get schema-conformant JSON, use JSON outputs (output_config.format) instead.
If your application, rather than the user, requires a specific tool call on the current turn of a multi-turn conversation, append a mid-conversation system message after the latest user turn. Name the tool, say the call is required for this turn, and tell Claude to open its response with it. Because the message is appended rather than written into the top-level system prompt, earlier turns stay byte-identical and keep their prompt cache hits:
client = anthropic.Anthropic()
search_help_center_tool = {
"name": "search_help_center",
"description": "Search the help center for policy and troubleshooting articles.",
"strict": True,
"input_schema": {
"type": "object",
"properties": {"query": {"type": "string"}},
"required": ["query"],
"additionalProperties": False,
},
}
response = client.messages.create(
model="claude-fable-5-1",
max_tokens=16000,
system="You are a customer support assistant for an online electronics store.",
tools=[search_help_center_tool],
messages=[
{
"role": "user",
"content": "My headphones from order A1234 arrived yesterday.",
},
{
"role": "assistant",
"content": "Thanks for confirming. How can I help with order A1234?",
},
{"role": "user", "content": "I opened the box. Can I still return them?"},
# The application requires a help center lookup before any policy
# answer. Appending the requirement as a system message leaves the
# earlier turns unchanged.
{
"role": "system",
"content": "Tool-use requirement for the current turn: the application requires a call to the search_help_center tool in your response to the user's latest message. Begin your response with the search_help_center tool call. Do not reply with text only.",
},
],
)
print(response.content)Keep the role: "system" message in the history on later requests, as with any other turn. Mid-conversation system messages need no beta header. tool_choice: {"type": "none"} still works for a turn that must not call tools.
Thinking blocks are preserved only for the model that produced them, or a newer one: Every thinking block records which model produced it. Claude Fable 5.1 reads its own blocks and those from Claude Mythos 5.1, Claude Opus 5, Claude Fable 5, Claude Mythos 5, and earlier Claude models. A conversation moving onto claude-fable-5-1 from any of those keeps its earlier reasoning. The condition is one-way: apart from Claude Mythos 5.1, none of those models can read Claude Fable 5.1's blocks.
A conversation that ran on Claude Fable 5.1 can land on an older model through a router switch, a client-side retry, or a classifier refusal fallback, including a server-side fallback. The API removes the blocks that model can't read before it sees them, the request succeeds, and you aren't billed for the dropped input tokens. The target model re-plans without that reasoning, which can raise cost and latency on the first turn after the switch. To see what was dropped, send the thinking-binding-controls-2026-08-01 beta header: responses then carry an input_transformations array naming each dropped block with reason: "model_binding_mismatch". See Preserved thinking.
Editing earlier turns invalidates thinking blocks: Each thinking block from Claude Fable 5.1 is valid only against the system prompt, tools, and conversation history that preceded it. If Claude Code, claude.ai, Claude Managed Agents, or the Claude Agent SDK manages your conversation history, it already keeps that prefix intact. If your code builds the messages array itself, this item applies to you, and Preserved thinking is the full integration guide. Where the check is enforced, a request that sends the block back after any of those changed is rejected with a 400 error:
messages.5.content.0: Invalid `signature` in `thinking` block. The block is bound to a different conversation. Remove the block, or set `thinking.block_binding.prefix_mismatch_behavior` to "drop_block". That setting requires the `thinking-binding-controls-2026-08-01` value in the `anthropic-beta` header.The API enforces the check for new accounts created on or after August 31, 2026. For accounts created earlier, the API records the mismatch but doesn't act on it unless the request sets thinking.block_binding.prefix_mismatch_behavior, which opts into enforcement. Anthropic plans to enforce the check for every account on future models, so make your application compatible now: the same patterns keep the prompt cache warm, and you can test against the check from any account by sending prefix_mismatch_behavior. If you ship a tool or framework that people run with their own API key, test that way before launch: your key is probably on an older account, and your users on new ones hit the check before you do. To see whether your own account is enforced by default, send a request that edits history without the beta header: a 400 that names the header means it is.
The error is permanent for that request body: an automatic retry loop won't clear it. To continue without the invalidated reasoning instead of failing, strip the thinking blocks from the history and retry once, or send the thinking-binding-controls-2026-08-01 beta header and set prefix_mismatch_behavior to "drop_block" (the default is "error"). With "drop_block", the API drops the mismatched block and every thinking block after it in the conversation, and reports each with reason: "prefix_binding_mismatch" in the response's input_transformations array:
client = anthropic.Anthropic()
response = client.beta.messages.create(
model="claude-fable-5-1",
max_tokens=16000,
thinking={
"type": "adaptive",
"block_binding": {"prefix_mismatch_behavior": "drop_block"},
},
messages=[
{
"role": "user",
"content": "What is the greatest common divisor of 1071 and 462?",
}
],
betas=["thinking-binding-controls-2026-08-01"],
)
for block in response.content:
if block.type == "text":
print(block.text)
print(f"Input transformations: {len(response.input_transformations or [])}")The token counting endpoint runs the same check. See Controls for blocks that aren't preserved (beta) for the response shape and streaming placement.
Patterns that invalidate later thinking blocks, and what to do instead:
tool_result blocks and removed on the next request. Instead, send the reminder as a turn-scoped system message and leave it in the history.system prompt or the tools array between requests in the same conversation, for example to update the current date or to add or remove a tool. Instead, append a mid-conversation system message that carries the new instruction ("The current date is 2026-09-14.") or tool_addition and tool_removal blocks.file_id, or send base64.Each replacement also keeps earlier turns byte-identical and preserves the prompt cache hits that editing the history, system prompt, or tools array would lose.
Patterns that keep working:
role: "system" messages.effort, max_tokens, or any other request parameter outside system, tools, and messages, and adding or moving cache_control markers.To check an existing integration:
system prompt, the tools array, and the shared prefix of messages. They should be byte-identical up to the newly appended turns.claude-fable-5-1 with the thinking-binding-controls-2026-08-01 beta header and prefix_mismatch_behavior: "drop_block", and log input_transformations on every response. An empty array on every turn means the history is intact. An entry with reason: "prefix_binding_mismatch" means something before the block at path changed since the previous request. An entry with reason: "model_binding_mismatch" means the conversation switched models, which isn't a bug in your code. This works from any account, because setting the field opts the request into enforcement. In CI, set "error" instead so an edit fails the run."error" if a prefix mismatch can only mean a bug in your code, or set "drop_block" to drop the affected blocks instead of failing, and monitor the 400s or the input_transformations entries either way.Dropping thinking blocks once, at a compaction boundary for example, has little effect. An integration that invalidates prior thinking on every request restarts the prompt cache each time, which can raise cost per task (see Keep the conversation history append-only).
Fewer parallel tool calls in long agent loops: In long-running loops where the next independent reads are only implied by the task (custom coding agents, bash-and-editor harnesses, computer use), Claude Fable 5.1 may issue one tool call per turn. Each extra turn costs tokens, a round trip, and wall-clock time. Append a one-sentence batching instruction after each user message as a turn-scoped system message (clear_at: "next_user_message", beta), or, without the beta, in a text block after the tool_result blocks, and leave the earlier copies in the history on later requests. See Batch independent tool calls in agent loops.
Fewer progress messages between tool calls: Claude Fable 5.1 writes fewer status updates during long tool sequences than Claude Fable 5, and its agentic coding summaries are shorter. If your interface renders those updates, set thinking.display to "updates" (beta) or "summarized" and prompt for them explicitly. See Progress updates between tool calls and Ask for user-facing progress updates.
Fewer search and retrieval calls at low effort: At low effort Claude Fable 5.1 answers from memory more often than Claude Fable 5 instead of calling a search or retrieval tool. If your product relies on retrieval at low effort, raise effort for those requests or tell the model when to search. See Search triggering at low effort.
For the differences in prose density, chat formatting, quoting in summaries, and file edits, which don't affect API integration, see Changed from Claude Fable 5.
These changes aren't required, but each one lowers cost or latency or removes a failure mode:
Change effort mid-conversation (beta): On Claude Fable 5, output_config.effort is request-level, and changing it between requests drops cached prefixes from earlier turns. On claude-fable-5-1, a role: "system" message carrying only output_config raises effort for a hard step or lowers it for routine ones without invalidating the prompt cache:
client = anthropic.Anthropic()
response = client.beta.messages.create(
model="claude-fable-5-1",
max_tokens=4096,
output_config={"effort": "high"},
messages=[
{
"role": "user",
"content": "Plan a migration from SQLite to PostgreSQL in three short steps.",
},
{
"role": "assistant",
"content": "1. Export the SQLite data. 2. Create the PostgreSQL schema. 3. Import the data and verify row counts.",
},
# Effort-only system message: the new level takes effect from the next user turn.
{"role": "system", "content": [], "output_config": {"effort": "low"}},
{"role": "user", "content": "Summarize the plan in one sentence."},
],
betas=["mid-conversation-output-config-2026-07-01"],
)
for block in response.content:
if block.type == "text":
print(block.text)The value applies to the following user turn and every later turn until another role: "system" message changes it. Only the named levels are accepted (low, medium, high, xhigh, max), and the mid-conversation-output-config-2026-07-01 beta header is required. See Per-message effort.
Change instructions and tools with mid-conversation system messages: To change instructions or tools partway through a session, append a role: "system" message, with tool_addition and tool_removal blocks for tool changes (beta header mid-conversation-tool-changes-2026-07-01, with the full tool set declared in tools at session start). This preserves prompt cache hits on earlier turns and keeps the conversation history append-only. The same message replaces forced tool_choice when a specific tool must run on the current turn (see Breaking changes). For a reminder that applies to one turn only, send it as a separate text-only role: "system" message with clear_at: "next_user_message" (turn-scoped system messages, beta header mid-conversation-system-clear-at-2026-08-21) and leave it in the history: it stops rendering after the next user message and costs no tokens once cleared. A message that carries tool_addition or tool_removal blocks can't be turn-scoped.
Use fallbacks: "default" for refusals: Keep handling stop_reason: "refusal" and reading stop_details.category before response content. To re-run refused requests on another model automatically, set fallbacks: "default" (beta, server-side-fallback-2026-07-01 header). "default" retries a declined request on the model Anthropic recommends for that category. The permitted fallback targets for Claude Fable 5.1 are Claude Opus 4.8 (claude-opus-4-8) and Claude Opus 5 (claude-opus-5). An explicit fallbacks list may name either. The fallback model doesn't receive Claude Fable 5.1's thinking blocks. If you build the retry yourself, fallback credit applies on the same terms as Claude Fable 5. See Refusals and fallback.
Start at high effort and sweep: The effort parameter default is high, and all five levels are supported. Keep the Claude Fable 5 guidance: high for most work, and medium as a cost control worth testing. Claude Fable 5.1's gains over Claude Fable 5 are largest at xhigh and max, but those levels also add thinking time and time-to-first-response, so step up to them for the most capability-sensitive tasks and where your evals show the gain. Run a fresh sweep on your own evals rather than carrying over a setting tuned for Claude Fable 5. See Recommended effort levels for Claude Fable 5.1.
Trim context on the server, or compact in a shape that carries no stale thinking: If your code truncates or summarizes older turns on the client, the simplest fix is to move that work to server-side compaction or context editing. Neither counts as an edit, because the history check compares the conversation as you sent it, so nothing they remove invalidates later thinking blocks, and compaction's instructions parameter accepts your own summarization prompt. If you keep compaction on the client, pick one of three shapes:
thinking and redacted_thinking blocks from those turns (text and tool calls can stay), or set prefix_mismatch_behavior: "drop_block". Their thinking was produced against the full history and fails behind the summary otherwise."drop_block" on every request that still carries thinking blocks produced before the swap (or strip those blocks yourself; input_transformations on the first response after the swap lists exactly which ones), or compact synchronously.Don't snip individual turns out of the middle of the transcript: that invalidates every later thinking block and no client-side shape avoids it. Use a mid-conversation system message for the instruction change you were making, or server-side context editing for selective removal. See Passing compaction blocks back.
claude-fable-5 to claude-fable-5-1 (or claude-mythos-5 to claude-mythos-5-1).tool_choice ({type: "any"} or {type: "tool", ...}). It returns a 400 error. Use {type: "auto"} plus an explicit instruction and strict: true tools, or JSON outputs. Put the instruction in the user turn, or in a mid-conversation role: "system" message when your application requires the call.thinking blocks back unchanged on every turn, including empty ones. Claude Fable 5.1 reads blocks from Claude Opus 5, Claude Fable 5, Claude Mythos 5, and earlier models. Moving a conversation from Claude Fable 5.1 to an earlier model drops its blocks (Claude Mythos 5.1 reads them).messages array itself, check whether it edits earlier turns: run a session with the thinking-binding-controls-2026-08-01 beta header and prefix_mismatch_behavior: "drop_block", log input_transformations, and fix every prefix_binding_mismatch. model_binding_mismatch entries after a model switch are expected.system and tools at session start and move mid-session changes to role: "system" messages and tool_addition / tool_removal blocks, send per-turn reminders as turn-scoped system messages you never remove, trim context server-side or strip thinking blocks from any turns you carry across a client-side summary, and reference cross-turn files by file_id.prefix_mismatch_behavior ("error" by default, or "drop_block") and monitor it. If you maintain a tool that others run with their own API key, test with the field set: new accounts are enforced by default even if yours isn't.thinking.display to "updates" (beta) or "summarized" and prompt for updates.role: "system" message (beta) to keep cache hits.stop_reason: "refusal" and read stop_details.category. Consider fallbacks: "default" (beta).effort with a fresh sweep, starting at high, and re-baseline cost and latency on your own workloads. Token counts are roughly unchanged. Prompt cache reads cost a quarter of the Claude Fable 5 rate.Claude Fable 5.1 uses the same Messages API and tool use patterns as Claude Opus 5. It keeps the 1M token context window by default, 128k max output tokens, the 512-token prompt caching minimum, and mid-conversation system message support. The prefill restriction, the sampling-parameter restriction, and the "omitted" default for thinking.display also carry over. Apply everything in Migrating to Claude Fable 5.1 from Claude Fable 5, plus the following.
model = "claude-opus-5" # Before
model = "claude-fable-5-1" # After
# Or, for the Project Glasswing model with the same capabilities:
model = "claude-mythos-5-1" # AfterThinking can no longer be disabled: Claude Opus 5 accepts thinking: {type: "disabled"} at an effort level of high or lower. On claude-fable-5-1 and claude-mythos-5-1, adaptive thinking is always on, and thinking: {type: "disabled"} returns a 400 error at any effort level. Remove the field, control token spend with lower effort levels, and revisit max_tokens for workloads that ran with thinking disabled.
Forced tool choice is not supported: Claude Opus 5 accepts tool_choice any and tool. claude-fable-5-1 returns a 400 error. See Breaking changes.
Preserved thinking across models: Claude Fable 5.1 reads Claude Opus 5's thinking blocks: conversations moving from claude-opus-5 to claude-fable-5-1 keep their reasoning. Claude Opus 5 can't read Claude Fable 5.1's blocks. Claude Fable 5.1's blocks also stop being valid when earlier turns change: if your code edits earlier messages, rebuilds system or tools, or compacts on the client between requests, Claude Opus 5 didn't object, but claude-fable-5-1 rejects or drops every later thinking block. Run the three-step check in that section before switching traffic. See Breaking changes.
Text between tool calls is returned in thinking blocks: On Claude Opus 5, text the model writes between tool calls comes back as text blocks. On claude-fable-5-1, as on Claude Fable 5, that narration comes back as progress-update thinking blocks, one before each tool call. Under the default thinking.display of "omitted", they carry no readable text. If your interface renders that narration, set display: "updates" (beta) to receive progress updates as text while reasoning stays hidden, or "summarized" to receive both. Then render the non-empty thinking blocks between tool_use blocks. See Progress updates between tool calls.
Safety classifiers and fallback routing: Claude Fable 5.1 runs safety classifiers covering the same stop_details categories as Claude Fable 5, a broader set than Claude Opus 5's cybersecurity-only classifiers. Expect stop_details.category values beyond "cyber", such as "bio" and "reasoning_extraction"; see the refusal category table for the full set. For fallbacks configuration and permitted targets, see Use fallbacks: "default" for refusals.
Pricing: $10 USD per million input tokens and $50 USD per million output tokens, compared with $5 USD and $25 USD for Claude Opus 5. Prompt cache reads are $0.25 USD per million tokens, half the Claude Opus 5 rate. See Claude pricing.
Data retention: Claude Fable 5.1 and Claude Mythos 5.1 require 30-day data retention, aren't available under zero data retention (ZDR) arrangements unless expressly authorized by Anthropic, and are designated Covered Models. Claude Opus 5 is available under ZDR. See Model-specific data retention requirements.
claude-opus-5 to claude-fable-5-1 (or claude-mythos-5-1).thinking: {type: "disabled"} configuration: it returns a 400 error on claude-fable-5-1. Control token spend with lower effort levels, and revisit max_tokens.tool_choice (any or tool) with auto plus an explicit instruction (user turn or mid-conversation system message) and strict: true tools, or with JSON outputs.display: "updates" (beta) or "summarized" and render the non-empty thinking blocks.First apply Migrating to Claude Mythos 5 and Claude Fable 5 from Claude Opus 4.8 for the API-level changes from Claude Opus 4.8. It covers adaptive thinking, thinking output, refusals, effort, the caching minimum, pricing, and data retention. Then apply the remaining delta in Migrating to Claude Fable 5.1 from Claude Fable 5. On Claude Opus 4.7 or earlier, start with the matching Migrating to Claude Opus 5 section.
model = "claude-opus-4-8" # Before
model = "claude-fable-5-1" # After
# Or, for the Project Glasswing model with the same capabilities:
model = "claude-mythos-5-1" # Afterclaude-opus-4-8 to claude-fable-5-1 (or claude-mythos-5-1).thinking: {type: "disabled"} configuration and revisit max_tokens. Requests without a thinking field run with adaptive thinking.tool_choice (any or tool) with auto plus an explicit instruction (user turn or mid-conversation system message) and strict: true tools, or with JSON outputs.thinking blocks back unchanged and treat their text as display-only. Claude Fable 5.1 reads Claude Opus 4.8's thinking blocks: a conversation that moves onto claude-fable-5-1 keeps its earlier reasoning. Claude Opus 4.8 can't read Claude Fable 5.1's blocks.messages array itself, check whether it edits earlier turns. Integrations written for Claude Opus 4.8 and earlier often truncate old turns, strip or rebuild earlier messages, or refresh the system prompt each request, and Claude Opus 4.8 never objected. On claude-fable-5-1 each of those invalidates later thinking blocks.stop_reason: "refusal", read stop_details.category, and consider fallbacks: "default" (beta).effort (start at high), review prompts near the 512-token caching minimum, and re-baseline cost and latency. Per-token pricing differs.Claude Mythos 5.1 is the access-gated counterpart to Claude Fable 5.1. Confirm your organization's access with your Anthropic account team before switching model IDs.
The API-level delta matches Migrating to Claude Fable 5.1 from Claude Fable 5: forced tool choice returns a 400 error, and thinking blocks are preserved only for the model that produced them or a newer one (Claude Mythos 5.1 reads Claude Mythos 5's blocks, not the reverse). Unlike Claude Fable 5.1, Claude Mythos 5.1 doesn't run the conversation check, so editing earlier turns doesn't invalidate thinking blocks, though it still restarts the prompt cache.
model = "claude-mythos-5" # Before
model = "claude-mythos-5-1" # Afterclaude-mythos-5 to claude-mythos-5-1.tool_choice (any or tool) with auto plus an explicit instruction (user turn or mid-conversation system message) and strict: true tools, or with JSON outputs.stop_reason: "refusal" and read stop_details.category before response content. See Refusals and fallback.thinking blocks back unchanged on every turn, including empty ones.messages array itself, keep conversation history append-only to keep the prompt cache warm. Claude Mythos 5.1 doesn't run the conversation check, so edits don't invalidate its thinking blocks.effort with a fresh sweep and re-baseline cost and latency. Prompt cache reads cost a quarter of the Claude Mythos 5 rate.Was this page helpful?