add fable and sonnet 5 to models list#10051
Merged
Merged
Conversation
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
Contributor
There was a problem hiding this comment.
1 issue found across 1 file
Architecture diagram
sequenceDiagram
participant App as Application Startup
participant ConfigLoader as ConfigLoader
participant ModelsYAML as models.yml
participant LLMInfo as LLM Info Registry
participant UI as Model Selector UI
participant User as End User
Note over App,ModelsYAML: System Startup
App->>ConfigLoader: initialize()
ConfigLoader->>ModelsYAML: read() — includes NEW: claude-fable-5, claude-sonnet-5
ModelsYAML-->>ConfigLoader: raw YAML content
ConfigLoader->>ConfigLoader: parse YAML into model definitions
ConfigLoader->>LLMInfo: registerModels(parsed_definitions)
LLMInfo-->>ConfigLoader: models loaded
ConfigLoader-->>App: ready
Note over UI,User: Runtime Model Selection
User->>UI: open model selector
UI->>LLMInfo: getModels(provider="anthropic")
LLMInfo-->>UI: list of models (including Claude Fable 5, Claude Sonnet 5)
UI->>UI: render model options
UI-->>User: show available models
User->>UI: select "Claude Sonnet 5"
UI->>LLMInfo: getModelMetadata("claude-sonnet-5")
LLMInfo-->>UI: capabilities, costs, input_types, roles
UI-->>User: model selected
Reply with feedback, questions, or to request a fix.
Re-trigger cubic
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the llm-info model registry to include the newly released Claude Fable 5 and Claude Sonnet 5 entries across the relevant providers, so downstream tooling/UI can surface them as selectable models.
Changes:
- Added
Claude Fable 5andClaude Sonnet 5entries underanthropic. - Added corresponding entries under
bedrock(including aglobal.*model id for Fable) andazure. - Extended the provider sections’ model lists with release dates and per-1M token pricing metadata.
koaning
approved these changes
Jul 2, 2026
koaning
left a comment
Contributor
There was a problem hiding this comment.
Double checked the id's. LGTM!
Contributor
|
🚀 Development release published. You may be able to view the changes at https://marimo.app?v=0.23.14-dev2 |
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
Closes #
📋 Pre-Review Checklist
✅ Merge Checklist