Skip to content

Commit 3288c55

Browse files
dafriztzolov
authored andcommitted
Add Claude 3.5 Sonnet V2 model enum to Bedrock
1 parent c979238 commit 3288c55

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

models/spring-ai-bedrock/src/main/java/org/springframework/ai/bedrock/anthropic3/api/Anthropic3ChatBedrockApi.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,11 @@ public enum AnthropicChatModel implements ChatModelDescription {
467467
/**
468468
* anthropic.claude-3-5-sonnet-20240620-v1:0
469469
*/
470-
CLAUDE_V3_5_SONNET("anthropic.claude-3-5-sonnet-20240620-v1:0");
470+
CLAUDE_V3_5_SONNET("anthropic.claude-3-5-sonnet-20240620-v1:0"),
471+
/**
472+
* anthropic.claude-3-5-sonnet-20241022-v2:0
473+
*/
474+
CLAUDE_V3_5_SONNET_V2("anthropic.claude-3-5-sonnet-20241022-v2:0");
471475

472476
private final String id;
473477

0 commit comments

Comments
 (0)