Add Claude 3.5 Sonnet V2 model enum to Bedrock

This commit is contained in:
dafriz
2024-10-23 22:36:56 +11:00
committed by Christian Tzolov
parent c979238993
commit 3288c55ca6

View File

@@ -467,7 +467,11 @@ public class Anthropic3ChatBedrockApi extends
/**
* anthropic.claude-3-5-sonnet-20240620-v1:0
*/
CLAUDE_V3_5_SONNET("anthropic.claude-3-5-sonnet-20240620-v1:0");
CLAUDE_V3_5_SONNET("anthropic.claude-3-5-sonnet-20240620-v1:0"),
/**
* anthropic.claude-3-5-sonnet-20241022-v2:0
*/
CLAUDE_V3_5_SONNET_V2("anthropic.claude-3-5-sonnet-20241022-v2:0");
private final String id;