Skip to content

Commit c2a0ad7

Browse files
authored
chore(bedrock): add Cohere Embed v4 multimodal embeddings model (#35665)
Add a new mode. * [Cohere’s Embed v4 multimodal embeddings model now available on Amazon Bedrock](https://aws.amazon.com/about-aws/whats-new/2025/10/coheres-embed-v4-multimodal-embeddings-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 9536472 commit c2a0ad7

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

308+
/** Base model "cohere.embed-v4:0". */
309+
public static readonly COHERE_EMBED_V4 = new FoundationModelIdentifier('cohere.embed-v4:0');
310+
308311
/** Base model "deepseek.r1-v1:0". */
309312
public static readonly DEEP_SEEK_R1_V1_0 = new FoundationModelIdentifier('deepseek.r1-v1:0');
310313

0 commit comments

Comments
 (0)