Skip to content

Commit

Permalink
Merge branch 'main' into s3deploy-sg
Browse files Browse the repository at this point in the history
  • Loading branch information
obraafo authored and hemige committed Jul 25, 2024
2 parents 422a8e1 + 84dd06b commit 3b3e5aa
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
9 changes: 9 additions & 0 deletions packages/aws-cdk-lib/aws-bedrock/lib/foundation-model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,15 @@ export class FoundationModelIdentifier {
/** Base model "meta.llama3-70b-instruct-v1:0". */
public static readonly META_LLAMA_3_70_INSTRUCT_V1 = new FoundationModelIdentifier('meta.llama3-70b-instruct-v1:0');

/** Base model "meta.llama3-1-8b-instruct-v1:0". */
public static readonly META_LLAMA_3_1_8B_INSTRUCT_V1 = new FoundationModelIdentifier('meta.llama3-1-8b-instruct-v1:0');

/** Base model "meta.llama3-1-70b-instruct-v1:0". */
public static readonly META_LLAMA_3_1_70_INSTRUCT_V1 = new FoundationModelIdentifier('meta.llama3-1-70b-instruct-v1:0');

/** Base model "meta.llama3-1-405b-instruct-v1:0". */
public static readonly META_LLAMA_3_1_405_INSTRUCT_V1 = new FoundationModelIdentifier('meta.llama3-1-405b-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');

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ export interface BucketDeploymentProps {
*
* @default - the Vpc default strategy if not specified
*/
readonly securityGroups?: ec2.SecurityGroup[];
readonly securityGroups?: ec2.ISecurityGroup[];

/**
* If set to true, uploads will precompute the value of `x-amz-content-sha256`
Expand Down

0 comments on commit 3b3e5aa

Please sign in to comment.