Skip to content

Commit 8dcbde3

Browse files
authored
chore(bedrock): add support for Anthropic Claude 3.7 Sonnet model (#33571)
Add a new model. Ref * https://aws.amazon.com/about-aws/whats-new/2025/02/anthropics-claude-3-7-sonnet-amazon-bedrock/ * https://docs.aws.amazon.com/bedrock/latest/userguide/models-supported.html ### Checklist - [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent 29623d1 commit 8dcbde3

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

packages/aws-cdk-lib/aws-bedrock/lib/foundation-model.ts

+3
Original file line numberDiff line numberDiff line change
@@ -212,6 +212,9 @@ export class FoundationModelIdentifier {
212212
/** Base model "anthropic.claude-3-5-sonnet-20241022-v2:0:200k". */
213213
public static readonly ANTHROPIC_CLAUDE_3_5_SONNET_20241022_V2_0_200K = new FoundationModelIdentifier('anthropic.claude-3-5-sonnet-20241022-v2:0:200k');
214214

215+
/** Base model "anthropic.claude-3-7-sonnet-20250219-v1:0" */
216+
public static readonly ANTHROPIC_CLAUDE_3_7_SONNET_20250219_V1_0 = new FoundationModelIdentifier('anthropic.claude-3-7-sonnet-20250219-v1:0');
217+
215218
/** Base model "anthropic.claude-3-haiku-20240307-v1:0". */
216219
public static readonly ANTHROPIC_CLAUDE_3_HAIKU_20240307_V1_0 = new FoundationModelIdentifier('anthropic.claude-3-haiku-20240307-v1:0');
217220

0 commit comments

Comments
 (0)