Skip to content

Commit f330970

Browse files
committed
feat(bedrock): add MiniMax M2.5 and GLM 5 foundation model identifiers
Add FoundationModelIdentifier entries for two new models announced on Amazon Bedrock (March 18, 2026): - MINIMAX_MINIMAX_M2_5 (minimax.minimax-m2.5) - ZAI_GLM_5 (zai.glm-5) Closes #37347
1 parent 293ce90 commit f330970

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

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

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -428,6 +428,9 @@ export class FoundationModelIdentifier {
428428
/** Base model "meta.llama4-scout-17b-instruct-v1:0". */
429429
public static readonly META_LLAMA_4_SCOUT_17B_INSTRUCT_V1_0 = new FoundationModelIdentifier('meta.llama4-scout-17b-instruct-v1:0');
430430

431+
/** Base model "minimax.minimax-m2.5". */
432+
public static readonly MINIMAX_MINIMAX_M2_5 = new FoundationModelIdentifier('minimax.minimax-m2.5');
433+
431434
/** Base model "mistral.mistral-7b-instruct-v0:2". */
432435
public static readonly MISTRAL_MISTRAL_7B_INSTRUCT_V0_2 = new FoundationModelIdentifier('mistral.mistral-7b-instruct-v0:2');
433436

@@ -515,6 +518,9 @@ export class FoundationModelIdentifier {
515518
/** Basic model "twelvelabs.marengo-embed-3-0-v1:0" */
516519
public static readonly TWELVELABS_MARENGO_EMBED_3_0_V1_0 = new FoundationModelIdentifier('twelvelabs.marengo-embed-3-0-v1:0');
517520

521+
/** Base model "zai.glm-5". */
522+
public static readonly ZAI_GLM_5 = new FoundationModelIdentifier('zai.glm-5');
523+
518524
/**
519525
* Constructor for foundation model identifier
520526
* @param modelId the model identifier

0 commit comments

Comments
 (0)