Skip to content

Commit 01abd83

Browse files
authored
feat(bedrock): support Luma AI's Ray2 visual AI model (#33163)
Add a new foundation model. Ref * https://aws.amazon.com/about-aws/whats-new/2025/01/luma-ais-ray2-visual-ai-model-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 01be69f commit 01abd83

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

284+
/** Base model "luma.ray-v2:0". */
285+
public static readonly LUMA_RAY_V2_0 = new FoundationModelIdentifier('luma.ray-v2:0');
286+
284287
/**
285288
* Base model "meta.llama2-13b-v1".
286289
* @deprecated use latest version of the model

0 commit comments

Comments
 (0)