From 0c2675902be172beebf6883626dd9b749485264e Mon Sep 17 00:00:00 2001 From: maz Date: Fri, 20 Dec 2024 07:08:34 +0900 Subject: [PATCH] =?UTF-8?q?chore(bedrock):=20support=20Stable=20Diffusion?= =?UTF-8?q?=203.5=20Large=20and=20Meta=E2=80=99s=20Llama=203.3=2070B=20mod?= =?UTF-8?q?el?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/aws-cdk-lib/aws-bedrock/lib/foundation-model.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/packages/aws-cdk-lib/aws-bedrock/lib/foundation-model.ts b/packages/aws-cdk-lib/aws-bedrock/lib/foundation-model.ts index 64ff6fd778454..2c88a50666dfd 100644 --- a/packages/aws-cdk-lib/aws-bedrock/lib/foundation-model.ts +++ b/packages/aws-cdk-lib/aws-bedrock/lib/foundation-model.ts @@ -329,6 +329,9 @@ export class FoundationModelIdentifier { /** Base model "meta.llama3-2-90b-instruct-v1:0". */ public static readonly META_LLAMA_3_2_90B_INSTRUCT_V1 = new FoundationModelIdentifier('meta.llama3-2-90b-instruct-v1:0'); + /** Base model "meta.llama3-3-70b-instruct-v1:0". */ + public static readonly META_LLAMA_3_3_70B_INSTRUCT_V1 = new FoundationModelIdentifier('meta.llama3-3-70b-instruct-v1:0'); + /** Base model "mistral.mistral-7b-instruct-v0:2". */ public static readonly MISTRAL_MISTRAL_7B_INSTRUCT_V0_2 = new FoundationModelIdentifier('mistral.mistral-7b-instruct-v0:2'); @@ -371,6 +374,9 @@ export class FoundationModelIdentifier { /** Base model "stability.sd3-large-v1:0". */ public static readonly STABILITY_SD3_LARGE_V1_0 = new FoundationModelIdentifier('stability.sd3-large-v1:0'); + /** Base model "stability.sd3-5-large-v1:0". */ + public static readonly STABILITY_SD3_5_LARGE_V1_0 = new FoundationModelIdentifier('stability.sd3-5-large-v1:0'); + /** Base model "stability.stable-image-ultra-v1:0". */ public static readonly STABILITY_STABLE_IMAGE_ULTRA_V1_0 = new FoundationModelIdentifier('stability.stable-image-ultra-v1:0');