-
Notifications
You must be signed in to change notification settings - Fork 313
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support claude 3.5 sonnet 20241022 #341
Support claude 3.5 sonnet 20241022 #341
Conversation
Nice one! Should we also allow "claude-3-5-sonnet-latest"? It should also work |
@lucianosrp - Good thinking - done! |
Great! :) |
@@ -28,6 +28,8 @@ def register(client: anthropic.Anthropic): | |||
('claude-3-sonnet-20240229', 'anthropic'), | |||
('claude-3-haiku-20240307', 'anthropic'), | |||
('claude-3-5-sonnet-20240620', 'anthropic'), | |||
('claude-3-5-sonnet-20241022', 'anthropic'), | |||
('claude-3-5-sonnet-latest', 'anthropic'), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does the api support claude-3-5-sonnet as a model identifier? We have gpt-4o with “latest” being implicit. We could reuse that pattern here easily if so.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It does not.
Wait is latest real? |
tysm!!! :) |
|
Add latest model strings, and updated examples.
Tested by running examples/claude.py
co-created w/Aider.