Skip to content
Snippets Groups Projects
Unverified Commit c6bbdf5f authored by Laurie Voss's avatar Laurie Voss Committed by GitHub
Browse files

Claude 3.7 model names (#17905)

parent ee057786
No related branches found
No related tags found
No related merge requests found
...@@ -32,6 +32,7 @@ BEDROCK_INFERENCE_PROFILE_CLAUDE_MODELS: Dict[str, int] = { ...@@ -32,6 +32,7 @@ BEDROCK_INFERENCE_PROFILE_CLAUDE_MODELS: Dict[str, int] = {
"anthropic.claude-3-5-sonnet-20240620-v1:0": 200000, "anthropic.claude-3-5-sonnet-20240620-v1:0": 200000,
"anthropic.claude-3-5-sonnet-20241022-v2:0": 200000, "anthropic.claude-3-5-sonnet-20241022-v2:0": 200000,
"anthropic.claude-3-5-haiku-20241022-v1:0": 200000, "anthropic.claude-3-5-haiku-20241022-v1:0": 200000,
"anthropic.claude-3-7-sonnet-20250219-v1:0": 200000,
} }
BEDROCK_CLAUDE_MODELS: Dict[str, int] = { BEDROCK_CLAUDE_MODELS: Dict[str, int] = {
"anthropic.claude-instant-v1": 100000, "anthropic.claude-instant-v1": 100000,
...@@ -47,6 +48,7 @@ VERTEX_CLAUDE_MODELS: Dict[str, int] = { ...@@ -47,6 +48,7 @@ VERTEX_CLAUDE_MODELS: Dict[str, int] = {
"claude-3-5-sonnet@20240620": 200000, "claude-3-5-sonnet@20240620": 200000,
"claude-3-5-sonnet-v2@20241022": 200000, "claude-3-5-sonnet-v2@20241022": 200000,
"claude-3-5-haiku@20241022": 200000, "claude-3-5-haiku@20241022": 200000,
"claude-3-7-sonnet@20250219": 200000,
} }
# Anthropic API/SDK identifiers # Anthropic API/SDK identifiers
...@@ -67,6 +69,8 @@ ANTHROPIC_MODELS: Dict[str, int] = { ...@@ -67,6 +69,8 @@ ANTHROPIC_MODELS: Dict[str, int] = {
"claude-3-5-sonnet-20241022": 200000, "claude-3-5-sonnet-20241022": 200000,
"claude-3-5-haiku-latest": 200000, "claude-3-5-haiku-latest": 200000,
"claude-3-5-haiku-20241022": 200000, "claude-3-5-haiku-20241022": 200000,
"claude-3-7-sonnet-20250219": 200000,
"claude-3-7-sonnet-latest": 200000,
} }
# All provider Anthropic identifiers # All provider Anthropic identifiers
......
...@@ -27,7 +27,7 @@ exclude = ["**/BUILD"] ...@@ -27,7 +27,7 @@ exclude = ["**/BUILD"]
license = "MIT" license = "MIT"
name = "llama-index-llms-anthropic" name = "llama-index-llms-anthropic"
readme = "README.md" readme = "README.md"
version = "0.6.5" version = "0.6.6"
[tool.poetry.dependencies] [tool.poetry.dependencies]
python = ">=3.9,<4.0" python = ">=3.9,<4.0"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment