Add latest tags to Anthropic models (#2477)

This commit is contained in:
Will Sargent
2025-03-10 17:20:07 -07:00
committed by GitHub
parent 246243d46c
commit e2b75fdbab

View File

@@ -53,6 +53,11 @@ MODEL_LIST = [
"name": "claude-3-opus-20240229",
"context_window": 200000,
},
# latest
{
"name": "claude-3-opus-latest",
"context_window": 200000,
},
## Sonnet
# 3.0
{
@@ -69,11 +74,21 @@ MODEL_LIST = [
"name": "claude-3-5-sonnet-20241022",
"context_window": 200000,
},
# 3.5 latest
{
"name": "claude-3-5-sonnet-latest",
"context_window": 200000,
},
# 3.7
{
"name": "claude-3-7-sonnet-20250219",
"context_window": 200000,
},
# 3.7 latest
{
"name": "claude-3-7-sonnet-latest",
"context_window": 200000,
},
## Haiku
# 3.0
{
@@ -85,6 +100,11 @@ MODEL_LIST = [
"name": "claude-3-5-haiku-20241022",
"context_window": 200000,
},
# 3.5 latest
{
"name": "claude-3-5-haiku-latest",
"context_window": 200000,
},
]
DUMMY_FIRST_USER_MESSAGE = "User initializing bootup sequence."