Add Claude Fable 5 model support#101
Merged
Merged
Conversation
Claude Fable 5 (claude-fable-5) is GA on the first-party Anthropic API as of 2026-06-09. Register it with $10/$50 per-MTok pricing and supports_temperature=False (adaptive-thinking-only, rejects temperature like Opus 4.7+). https://claude.ai/code/session_01RawhhYfSfUkatbo7WUvoEA
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Add support for Anthropic's Claude Fable 5 model to the TEE gateway. This is Anthropic's most capable widely released model, available on the first-party API from 2026-06-09.
Changes
CLAUDE_FABLE_5enum entry with Anthropic provider configurationclaude-fable-5supports_temperature=False(adaptive-thinking-only model rejects temperature parameter with HTTP 400, similar to Opus 4.7+)"claude-fable-5"string key in the model name lookup dictionarytest_claude_fable_5_resolves()to verify model configuration resolution and pricingCLAUDE.mdto include Claude Fable 5 in the list of supported Anthropic model prefixesImplementation Details
Claude Fable 5 is an adaptive-thinking-only model that does not support the
temperatureparameter (returns HTTP 400 if provided), consistent with recent Opus models (4.7+). The pricing reflects the model's capability tier relative to other Claude variants.https://claude.ai/code/session_01RawhhYfSfUkatbo7WUvoEA