-
Notifications
You must be signed in to change notification settings - Fork 1.5k
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
upgraded claude model strings #2876
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
@@ -100,8 +100,8 @@ def fetch_available_well_known_llms() -> list[WellKnownLLMProviderDescriptor]: | |||
api_version_required=False, | |||
custom_config_keys=[], | |||
llm_names=fetch_models_for_provider(ANTHROPIC_PROVIDER_NAME), | |||
default_model="claude-3-5-sonnet-20240620", | |||
default_fast_model="claude-3-5-sonnet-20240620", | |||
default_model="claude-3-5-sonnet-20241022", |
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.
Watch out for context length issues - unless we bump our LiteLLM version (when they add "support" for this model), will use default max tokens (which is super low, something like 4096
)
Waiting for tagged litellm version: |
7dcd848
to
ee0460d
Compare
@@ -278,6 +278,7 @@ const MODEL_DISPLAY_NAMES: { [key: string]: string } = { | |||
"claude-2.0": "Claude 2.0", | |||
"claude-instant-1.2": "Claude Instant 1.2", | |||
"claude-3-5-sonnet-20240620": "Claude 3.5 Sonnet", | |||
"claude-3-5-sonnet-20241022": "Claude 3.5 Sonnet (New)", |
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.
seems possible we might need to rename (new) later but i suppose that's easily fixable if it happens
No description provided.