Refresh model lists: add Claude Fable 5 and Gemini 3.5 Flash, update provider defaults#205
Merged
Conversation
- Add claude-fable-5 and claude-fable-5[1m] to CLAUDE_MODELS options - Add context window entries (200k / 1M) in both server lookup maps - Switch CODEX_MODELS default from gpt-5.4 to gpt-5.5 Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
…iders - Claude: claude-opus-4-6 -> claude-fable-5 - Cursor: gpt-5 (not in options list) -> gpt-5.2 - OpenRouter: anthropic/claude-sonnet-4 -> anthropic/claude-sonnet-4.6 - Gemini: gemini-2.5-flash -> gemini-3-flash-preview Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
- Add gemini-3.5-flash (now GA, per Gemini API docs) and make it the default - Rename gemini-3.1-flash-lite-preview to its stable ID gemini-3.1-flash-lite Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Lockfile metadata churn from npm install (peer flags reshuffled); no dependency version changes. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
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
Refreshes the model catalog in
shared/modelConstants.jsand updates each provider's default model.New models
claude-fable-5("Fable 5") andclaude-fable-5[1m]("Fable 5 [1M]") toCLAUDE_MODELS.OPTIONS, with context-window entries (200k standard, 1M for the[1m]variant) in theMODEL_CONTEXT_WINDOWSmaps inserver/claude-sdk.jsandserver/index.jsgemini-3.5-flash(now GA per the Gemini API docs); also renamegemini-3.1-flash-lite-previewto its stable IDgemini-3.1-flash-liteDefault model updates
claude-opus-4-6claude-fable-5gpt-5.4gpt-5.5gpt-5(not in options list)gpt-5.2anthropic/claude-sonnet-4anthropic/claude-sonnet-4.6gemini-2.5-flashgemini-3.5-flashHousekeeping
package-lock.jsonpeer-flag metadata churn from npm install (no dependency version changes)Notes for reviewers
claude-fable-5[1m]context-window entries are required because the prefix-match fallback would otherwise match it againstclaude-fable-5and cap it at 200k; exact match is checked first.ANTHROPIC_MODEL,OPENROUTER_MODEL) still take precedence over the new defaults.gemini-3.1-flash-lite-previewsaved in settings will have a value no longer in the dropdown; the value is still sent to the API as-is, so nothing breaks immediately.shared/modelConstants.js.Test plan
claude-fable-5[1m]reports a 1,000,000-token context window🤖 Generated with Claude Code