-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
201 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.7.10 | ||
0.7.11 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
AWSTemplateFormatVersion: "2010-09-09" | ||
|
||
Description: Amazon Transcribe Post Call Analytics - PCA (v0.7.10) (uksb-1sn29lk73, SO9071) | ||
Description: Amazon Transcribe Post Call Analytics - PCA (v0.7.11) (uksb-1sn29lk73, SO9071) | ||
|
||
Parameters: | ||
|
||
|
@@ -17,6 +17,18 @@ Parameters: | |
AllowedPattern: ".+\\@.+\\..+" | ||
ConstraintDescription: Must be valid email address eg. [email protected] | ||
|
||
AllowedSignUpEmailDomain: | ||
Type: String | ||
Default: "" | ||
Description: >- | ||
Email address domain (example.com) or comma separated list of email domains (example1.com, | ||
example2.com) allowed to signin and signup using the web UI. To allow signup from any domain, | ||
enter *. | ||
If left empty, signup via the web UI is disabled and users will have to be created | ||
using | ||
Cognito. | ||
AllowedPattern: '^(\*||([\w-]+\.)+[\w-]{2,6}(, *([\w-]+\.)+[\w-]{2,6})*)$' | ||
|
||
BulkUploadBucketName: | ||
Type: String | ||
Default: "" | ||
|
@@ -415,6 +427,15 @@ Parameters: | |
- anthropic.claude-v2 | ||
Description: (Optional) If 'CallSummarization' is BEDROCK, which Bedrock model to use. | ||
|
||
TestBedrockModelId: | ||
Type: String | ||
Default: true | ||
AllowedValues: | ||
- true | ||
- false | ||
Description: > | ||
Set to false to disable checking if the Bedrock models are enabled. | ||
|
||
SummarizationSageMakerInitialInstanceCount: | ||
Type: Number | ||
MinValue: 0 | ||
|
@@ -444,6 +465,7 @@ Metadata: | |
Parameters: | ||
- AdminUsername | ||
- AdminEmail | ||
- AllowedSignUpEmailDomain | ||
- Label: | ||
default: Sample Data | ||
Parameters: | ||
|
@@ -545,6 +567,7 @@ Metadata: | |
- Environment | ||
- StepFunctionName | ||
- ffmpegDownloadUrl | ||
- TestBedrockModelId | ||
|
||
Conditions: | ||
ShouldCreateBulkUploadBucket: !Equals [!Ref BulkUploadBucketName, ''] | ||
|
@@ -563,14 +586,24 @@ Conditions: | |
!Equals [!Ref GenAIQuery, 'BEDROCK'], | ||
] | ||
ShouldDeployLLMThirdPartyApiKey: !And [!Not [!Equals [!Ref SummarizationLLMThirdPartyApiKey, '']], !Not [!Equals [!Ref SummarizationLLMThirdPartyApiKey, undefined]]] | ||
ShouldTestBedrockModelId: !Or [ | ||
!Equals [!Ref CallSummarization, 'BEDROCK'], | ||
!Equals [!Ref CallSummarization, "BEDROCK+TCA"], | ||
!Equals [!Ref GenAIQuery, 'BEDROCK'],] | ||
ShouldTestGenAIQueryBedrockModelId: !Equals [!Ref GenAIQuery, 'BEDROCK'] | ||
ShouldTestSummarizationBedrockModelId: !Or [ | ||
!Equals [!Ref CallSummarization, 'BEDROCK'], | ||
!Equals [!Ref CallSummarization, "BEDROCK+TCA"], | ||
ShouldTestBedrockModelId: !And [ | ||
!Or [ | ||
!Equals [!Ref CallSummarization, 'BEDROCK'], | ||
!Equals [!Ref CallSummarization, "BEDROCK+TCA"], | ||
!Equals [!Ref GenAIQuery, 'BEDROCK'], | ||
], | ||
!Equals [!Ref TestBedrockModelId, 'true'] | ||
] | ||
ShouldTestGenAIQueryBedrockModelId: !And [ | ||
!Equals [!Ref GenAIQuery, 'BEDROCK'], | ||
!Equals [!Ref TestBedrockModelId, 'true'] | ||
] | ||
ShouldTestSummarizationBedrockModelId: !And [ | ||
!Or [ | ||
!Equals [!Ref CallSummarization, 'BEDROCK'], | ||
!Equals [!Ref CallSummarization, "BEDROCK+TCA"], | ||
], | ||
!Equals [!Ref TestBedrockModelId, 'true'] | ||
] | ||
|
||
Resources: | ||
|
@@ -935,6 +968,7 @@ Resources: | |
Parameters: | ||
AdminUsername: !Ref AdminUsername | ||
AdminEmail: !Ref AdminEmail | ||
AllowedSignUpEmailDomain: !Ref AllowedSignUpEmailDomain | ||
MainStackName: !Ref AWS::StackName | ||
AudioBucket: | ||
!If | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
AWSTemplateFormatVersion: "2010-09-09" | ||
|
||
Description: Amazon Transcribe Post Call Analytics - PCA (v0.7.10) (uksb-1sn29lk73, SO9071) | ||
Description: Amazon Transcribe Post Call Analytics - PCA (v0.7.11) (uksb-1sn29lk73, SO9071) | ||
|
||
Parameters: | ||
|
||
|
@@ -17,6 +17,18 @@ Parameters: | |
AllowedPattern: ".+\\@.+\\..+" | ||
ConstraintDescription: Must be valid email address eg. [email protected] | ||
|
||
AllowedSignUpEmailDomain: | ||
Type: String | ||
Default: "" | ||
Description: >- | ||
Email address domain (example.com) or comma separated list of email domains (example1.com, | ||
example2.com) allowed to signin and signup using the web UI. To allow signup from any domain, | ||
enter *. | ||
If left empty, signup via the web UI is disabled and users will have to be created | ||
using | ||
Cognito. | ||
AllowedPattern: '^(\*||([\w-]+\.)+[\w-]{2,6}(, *([\w-]+\.)+[\w-]{2,6})*)$' | ||
|
||
BulkUploadBucketName: | ||
Type: String | ||
Default: "" | ||
|
@@ -456,6 +468,15 @@ Parameters: | |
- anthropic.claude-v2 | ||
Description: (Optional) If 'CallSummarization' is BEDROCK, which Bedrock model to use. | ||
|
||
TestBedrockModelId: | ||
Type: String | ||
Default: true | ||
AllowedValues: | ||
- true | ||
- false | ||
Description: > | ||
Set to false to disable checking if the Bedrock models are enabled. | ||
|
||
SummarizationSageMakerInitialInstanceCount: | ||
Type: Number | ||
MinValue: 0 | ||
|
@@ -485,6 +506,7 @@ Metadata: | |
Parameters: | ||
- AdminUsername | ||
- AdminEmail | ||
- AllowedSignUpEmailDomain | ||
- Label: | ||
default: Sample Data | ||
Parameters: | ||
|
@@ -586,6 +608,7 @@ Metadata: | |
- Environment | ||
- StepFunctionName | ||
- ffmpegDownloadUrl | ||
- TestBedrockModelId | ||
|
||
Conditions: | ||
ShouldCreateBulkUploadBucket: !Equals [!Ref BulkUploadBucketName, ''] | ||
|
@@ -604,14 +627,24 @@ Conditions: | |
!Equals [!Ref GenAIQuery, 'BEDROCK'], | ||
] | ||
ShouldDeployLLMThirdPartyApiKey: !And [!Not [!Equals [!Ref SummarizationLLMThirdPartyApiKey, '']], !Not [!Equals [!Ref SummarizationLLMThirdPartyApiKey, undefined]]] | ||
ShouldTestBedrockModelId: !Or [ | ||
!Equals [!Ref CallSummarization, 'BEDROCK'], | ||
!Equals [!Ref CallSummarization, "BEDROCK+TCA"], | ||
!Equals [!Ref GenAIQuery, 'BEDROCK'],] | ||
ShouldTestGenAIQueryBedrockModelId: !Equals [!Ref GenAIQuery, 'BEDROCK'] | ||
ShouldTestSummarizationBedrockModelId: !Or [ | ||
!Equals [!Ref CallSummarization, 'BEDROCK'], | ||
!Equals [!Ref CallSummarization, "BEDROCK+TCA"], | ||
ShouldTestBedrockModelId: !And [ | ||
!Or [ | ||
!Equals [!Ref CallSummarization, 'BEDROCK'], | ||
!Equals [!Ref CallSummarization, "BEDROCK+TCA"], | ||
!Equals [!Ref GenAIQuery, 'BEDROCK'], | ||
], | ||
!Equals [!Ref TestBedrockModelId, 'true'] | ||
] | ||
ShouldTestGenAIQueryBedrockModelId: !And [ | ||
!Equals [!Ref GenAIQuery, 'BEDROCK'], | ||
!Equals [!Ref TestBedrockModelId, 'true'] | ||
] | ||
ShouldTestSummarizationBedrockModelId: !And [ | ||
!Or [ | ||
!Equals [!Ref CallSummarization, 'BEDROCK'], | ||
!Equals [!Ref CallSummarization, "BEDROCK+TCA"], | ||
], | ||
!Equals [!Ref TestBedrockModelId, 'true'] | ||
] | ||
|
||
Rules: | ||
|
@@ -1119,6 +1152,7 @@ Resources: | |
Parameters: | ||
AdminUsername: !Ref AdminUsername | ||
AdminEmail: !Ref AdminEmail | ||
AllowedSignUpEmailDomain: !Ref AllowedSignUpEmailDomain | ||
MainStackName: !Ref AWS::StackName | ||
AudioBucket: | ||
!If | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,6 +16,18 @@ Parameters: | |
AllowedPattern: ".+\\@.+\\..+" | ||
ConstraintDescription: Must be valid email address eg. [email protected] | ||
|
||
AllowedSignUpEmailDomain: | ||
Type: String | ||
Default: "" | ||
Description: >- | ||
Email address domain (example.com) or comma separated list of email domains (example1.com, | ||
example2.com) allowed to signin and signup using the web UI. To allow signup from any domain, | ||
enter *. | ||
If left empty, signup via the web UI is disabled and users will have to be created | ||
using | ||
Cognito. | ||
AllowedPattern: '^(\*||([\w-]+\.)+[\w-]{2,6}(, *([\w-]+\.)+[\w-]{2,6})*)$' | ||
|
||
AudioBucket: | ||
Type: String | ||
Default: InputBucketName | ||
|
@@ -128,6 +140,7 @@ Resources: | |
Parameters: | ||
AdminUsername: !Ref AdminUsername | ||
AdminEmail: !Ref AdminEmail | ||
AllowedSignUpEmailDomain: !Ref AllowedSignUpEmailDomain | ||
WebUri: !GetAtt Web.Outputs.Uri | ||
Environment: !Ref Environment | ||
Name: | ||
|
Oops, something went wrong.