fix: correct claude-sonnet-4.6 model ID to use hyphens#2947
Open
yuxuan-7814 wants to merge 1 commit into
Open
Conversation
The default config seeded 'claude-sonnet-4.6' as the Model field value, but Anthropic API expects the canonical ID 'claude-sonnet-4-6' with hyphens. This caused HTTP 404 errors on first use. Fixes sipeed#2941
This was referenced May 27, 2026
Collaborator
|
Hi, it sounds like the PR involves more things than what you describe |
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.
📝 Description
Fix the default Anthropic model configuration where
claude-sonnet-4.6was using an invalid model ID. TheModelfield should contain the canonical Anthropic API IDclaude-sonnet-4-6(with hyphens), not the dotted alias. This bug caused HTTP 404 errors on first use with the error message: "model: claude-sonnet-4.6 was not found. Did you mean claude-sonnet-4-6?"🗣️ Type of Change
🤖 AI Code Generation
🔗 Related Issue
Closes #2941
📚 Technical Context
Modelfield inpkg/config/defaults.go:91was set toclaude-sonnet-4.6but Anthropic API expectsclaude-sonnet-4-6. This is a one-line fix that aligns the default config with Anthropic canonical model naming.🧪 Test Environment
☑️ Checklist