-
Notifications
You must be signed in to change notification settings - Fork 2k
upgraded claude model strings #2876
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
Merged
+16
−10
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
e46942e
upgraded model strings
hagen-danswer e7462c4
trolled
hagen-danswer daf86ed
we do a little trolling
hagen-danswer 573782e
reeeeeee
hagen-danswer 8f7dfc6
alembic upgrade
hagen-danswer 393aa5f
added ignore
hagen-danswer 57e6027
bump litellm
pablonyx 9c918a1
k
pablonyx ee0460d
nit
pablonyx File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 commentThe 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 |
||
|
||
// Bedrock models | ||
"meta.llama3-1-70b-instruct-v1:0": "Llama 3.1 70B", | ||
|
@@ -301,6 +302,7 @@ const MODEL_DISPLAY_NAMES: { [key: string]: string } = { | |
"anthropic.claude-3-opus-20240229-v1:0": "Claude 3 Opus", | ||
"anthropic.claude-3-haiku-20240307-v1:0": "Claude 3 Haiku", | ||
"anthropic.claude-3-5-sonnet-20240620-v1:0": "Claude 3.5 Sonnet", | ||
"anthropic.claude-3-5-sonnet-20241022-v2:0": "Claude 3.5 Sonnet (New)", | ||
"anthropic.claude-3-sonnet-20240229-v1:0": "Claude 3 Sonnet", | ||
"mistral.mistral-large-2402-v1:0": "Mistral Large", | ||
"mistral.mixtral-8x7b-instruct-v0:1": "Mixtral 8x7B Instruct", | ||
|
@@ -323,7 +325,7 @@ export const defaultModelsByProvider: { [name: string]: string[] } = { | |
"meta.llama3-1-8b-instruct-v1:0", | ||
"anthropic.claude-3-opus-20240229-v1:0", | ||
"mistral.mistral-large-2402-v1:0", | ||
"anthropic.claude-3-5-sonnet-20240620-v1:0", | ||
"anthropic.claude-3-5-sonnet-20241022-v2:0", | ||
], | ||
anthropic: ["claude-3-opus-20240229", "claude-3-5-sonnet-20240620"], | ||
anthropic: ["claude-3-opus-20240229", "claude-3-5-sonnet-20241022"], | ||
}; |
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
Oops, something went wrong.
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.
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
)