Make Claude Fable 5 the default Claude model#462
Merged
Conversation
Switch the no-flag claude-code default from claude-opus-4-8 to claude-fable-5 (Anthropic's new Mythos-class GA model). - claude-app-wrapper.py: DEFAULT_CLAUDE_MODEL -> claude-fable-5 (the functional default used when CLAUDE_MODEL is unset) - runtime_control.py: per-message header default -> fable; add a 'fable' alias and keep 'opus' as an explicit opt-back to claude-opus-4-8; --sonnet/--haiku untouched - update the 2 tests that pinned the old default
f354679 to
8b41396
Compare
0xdiid
added a commit
to 0xSplits/centaur
that referenced
this pull request
Jun 10, 2026
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.
What
Switches the no-flag
claude-codedefault model fromclaude-opus-4-8toclaude-fable-5— Anthropic's newly-released Mythos-class GA model.Changes
services/sandbox/claude-app-wrapper.py:DEFAULT_CLAUDE_MODEL → claude-fable-5— the functional default theclaudeCLI runs with whenCLAUDE_MODELis unset.services/api/api/runtime_control.py: per-message header default →fable; added afablealias and keptopus → claude-opus-4-8as an explicit opt-back.--sonnet/--haikualiases untouched.Scope
Only the no-flag default changes.
--opus,--sonnet,--haikuare unaffected;--opusremains the way to pin Opus 4.8.Tests
pytest tests/test_claude_app_wrapper.py tests/test_workflow_engine_title.py→ 28 passed.