Skip to content

Commit f95f7ac

Browse files
authored
chore(bedrock): support Qwen3 and DeepSeek-V3.1 models (#35525)
Support new models. * [Qwen3 models are now available fully managed in Amazon Bedrock](https://aws.amazon.com/about-aws/whats-new/2025/09/qwen3-models-fully-managed-amazon-bedrock/) * [DeepSeek-V3.1 model now available fully managed in Amazon Bedrock ](https://aws.amazon.com/about-aws/whats-new/2025/09/deepseek-v3-1-model-fully-managed-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 756b683 commit f95f7ac

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

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

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -305,6 +305,9 @@ export class FoundationModelIdentifier {
305305
/** Base model "deepseek.r1-v1:0". */
306306
public static readonly DEEP_SEEK_R1_V1_0 = new FoundationModelIdentifier('deepseek.r1-v1:0');
307307

308+
/** Base model "deepseek.v3-v1:0" */
309+
public static readonly DEEP_SEEK_V3_V1_0 = new FoundationModelIdentifier('deepseek.v3-v1:0');
310+
308311
/** Base model "openai.gpt-oss-120b-1:0". */
309312
public static readonly OPENAI_GPT_OSS_120B_1 = new FoundationModelIdentifier('openai.gpt-oss-120b-1:0');
310313

@@ -422,6 +425,18 @@ export class FoundationModelIdentifier {
422425
/** Base model "mistral.pixtral-large-2502-v1:0". */
423426
public static readonly MISTRAL_PIXTRAL_LARGE_2502_V1_0 = new FoundationModelIdentifier('mistral.pixtral-large-2502-v1:0');
424427

428+
/** Base Model "qwen.qwen3-32b-v1:0" */
429+
public static readonly QWEN_QWEN3_32B_V1_0 = new FoundationModelIdentifier('qwen.qwen3-32b-v1:0');
430+
431+
/** Base Model "qwen.qwen3-235b-a22b-2507-v1:0" */
432+
public static readonly QWEN_QWEN3_235B_A22B_2507_V1_0 = new FoundationModelIdentifier('qwen.qwen3-235b-a22b-2507-v1:0');
433+
434+
/** Base Model "qwen.qwen3-coder-30b-a3b-v1:0" */
435+
public static readonly QWEN_QWEN3_CODER_30B_A3B_V1_0 = new FoundationModelIdentifier('qwen.qwen3-coder-30b-a3b-v1:0');
436+
437+
/** Base Model "qwen.qwen3-coder-480b-a35b-v1:0" */
438+
public static readonly QWEN_QWEN3_CODER_480B_A35B_V1_0 = new FoundationModelIdentifier('qwen.qwen3-coder-480b-a35b-v1:0');
439+
425440
/**
426441
* Base model "stability.stable-diffusion-xl".
427442
* @deprecated use latest version of the model

0 commit comments

Comments
 (0)