File tree 1 file changed +7
-1
lines changed
packages/aws-cdk-lib/aws-bedrock/lib
1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ import { ArnFormat, Stack } from '../../core';
5
5
/**
6
6
* The model identifiers for the Bedrock base foundation models.
7
7
*
8
- * @see https://docs.aws.amazon.com/bedrock/latest/userguide/model-ids-arns .html
8
+ * @see https://docs.aws.amazon.com/bedrock/latest/userguide/model-ids.html
9
9
*/
10
10
export class FoundationModelIdentifier {
11
11
/** Base model "ai21.j2-mid-v1". */
@@ -56,6 +56,12 @@ export class FoundationModelIdentifier {
56
56
/** Base model "meta.llama2-70b-chat-v1". */
57
57
public static readonly META_LLAMA_2_CHAT_70B_V1 = new FoundationModelIdentifier ( 'meta.llama2-70b-chat-v1' ) ;
58
58
59
+ /** Base model "stability.stable-diffusion-xl-v0". */
60
+ public static readonly STABILITY_STABLE_DIFFUSION_XL_V0 = new FoundationModelIdentifier ( 'stability.stable-diffusion-xl-v0' ) ;
61
+
62
+ /** Base model "stability.stable-diffusion-xl-v1". */
63
+ public static readonly STABILITY_STABLE_DIFFUSION_XL_V1 = new FoundationModelIdentifier ( 'stability.stable-diffusion-xl-v1' ) ;
64
+
59
65
/**
60
66
* Constructor for foundation model identifier
61
67
* @param modelId the model identifier
You can’t perform that action at this time.
0 commit comments