Skip to content

Commit 23261df

Browse files
authored
chore(bedrock): support Anthropic Claude 4.5 Haiku (#35758)
Support new model. https://aws.amazon.com/about-aws/whats-new/2025/10/claude-4-5-haiku-anthropic-amazon-bedrock/ ### 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 a165905 commit 23261df

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,9 @@ export class FoundationModelIdentifier {
242242
/** Base model "anthropic.claude-3-haiku-20240307-v1:0:200k" */
243243
public static readonly ANTHROPIC_CLAUDE_3_HAIKU_20240307_V1_0_200K = new FoundationModelIdentifier('anthropic.claude-3-haiku-20240307-v1:0:200k');
244244

245+
/** Base model "anthropic.claude-haiku-4-5-20251001-v1:0" */
246+
public static readonly ANTHROPIC_CLAUDE_HAIKU_4_5_20251001_V1_0 = new FoundationModelIdentifier('anthropic.claude-haiku-4-5-20251001-v1:0');
247+
245248
/** Base model "anthropic.claude-3-opus-20240229-v1:0" */
246249
public static readonly ANTHROPIC_CLAUDE_3_OPUS_20240229_V1_0 = new FoundationModelIdentifier('anthropic.claude-3-opus-20240229-v1:0');
247250

0 commit comments

Comments
 (0)