feat: Add new model to AwsModelIDMap

Add the "claude-3-5-sonnet-20241022" model to the AwsModelIDMap in the main.go file.
This commit is contained in:
Laisky.Cai 2024-10-28 01:12:13 +00:00
parent b048cad5a6
commit 8160de80ef

View File

@ -31,6 +31,7 @@ var AwsModelIDMap = map[string]string{
"claude-2.1": "anthropic.claude-v2:1",
"claude-3-sonnet-20240229": "anthropic.claude-3-sonnet-20240229-v1:0",
"claude-3-5-sonnet-20240620": "anthropic.claude-3-5-sonnet-20240620-v1:0",
"claude-3-5-sonnet-20241022": "anthropic.claude-3-5-sonnet-20241022-v2:0",
"claude-3-opus-20240229": "anthropic.claude-3-opus-20240229-v1:0",
"claude-3-haiku-20240307": "anthropic.claude-3-haiku-20240307-v1:0",
}