Skip to content

Commit 3de0818

Browse files
authored
feat(bedrock): support DeepSeek R1 (#33727)
Ref: * https://aws.amazon.com/about-aws/whats-new/2025/03/deepseek-r1-fully-managed-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 5fcbe2a commit 3de0818

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
@@ -284,6 +284,9 @@ export class FoundationModelIdentifier {
284284
/** Base model "cohere.embed-multilingual-v3:0:512". */
285285
public static readonly COHERE_EMBED_MULTILINGUAL_V3_0_512 = new FoundationModelIdentifier('cohere.embed-multilingual-v3:0:512');
286286

287+
/** Base model "deepseek.r1-v1:0". */
288+
public static readonly DEEP_SEEK_R1_V1_0 = new FoundationModelIdentifier('deepseek.r1-v1:0');
289+
287290
/** Base model "luma.ray-v2:0". */
288291
public static readonly LUMA_RAY_V2_0 = new FoundationModelIdentifier('luma.ray-v2:0');
289292

0 commit comments

Comments
 (0)