Skip to content

Commit

Permalink
Merge branch 'develop' v0.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
rstrahan committed Aug 12, 2024
2 parents 2ccd3d0 + 01bf00d commit d7971f1
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 12 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.9.1] - 2024-08-12

### Fixed

- Stack fails when using a CustomLanguageModel due to logic error in ValidateParams in v0.9.0 #176

## [0.9.0] - 2024-08-08

### Fixed
Expand Down Expand Up @@ -431,6 +437,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Initial release

[Unreleased]: https://github.com/aws-samples/amazon-transcribe-live-meeting-assistant/compare/main...develop
[0.9.1]: https://github.com/aws-samples/amazon-transcribe-live-call-analytics/compare/v0.8.12...v0.9.1
[0.9.0]: https://github.com/aws-samples/amazon-transcribe-live-call-analytics/compare/v0.8.12...v0.9.0
[0.8.13]: https://github.com/aws-samples/amazon-transcribe-live-call-analytics/compare/v0.8.12...v0.8.13
[0.8.12]: https://github.com/aws-samples/amazon-transcribe-live-call-analytics/compare/v0.8.11...v0.8.12
[0.8.11]: https://github.com/aws-samples/amazon-transcribe-live-call-analytics/compare/v0.8.10...v0.8.11
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.9.0
0.9.1
2 changes: 1 addition & 1 deletion lca-ai-stack/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.9.0
0.9.1
2 changes: 1 addition & 1 deletion lca-ai-stack/deployment/lca-ai-stack.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ Parameters:
BootstrapVersion:
Type: String
Default: 0.9.0
Default: 0.9.1
Description: >
Artifacts version (semver). Used to point to a specific release in the S3
bootstrap bucket
Expand Down
8 changes: 4 additions & 4 deletions lca-ai-stack/samconfig.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,20 @@ use_container = true
# shared account
[shared.global.parameters]
s3_bucket = "lca-artifacts-253873381732-us-east-1"
s3_prefix = "artifacts/lca/0.9.0"
s3_prefix = "artifacts/lca/0.9.1"

[shared.deploy.parameters]
stack_name = "LiveCallAnalytics"
s3_bucket = "lca-artifacts-253873381732-us-east-1"
s3_prefix = "artifacts/lca/0.9.0"
s3_prefix = "artifacts/lca/0.9.1"
region = "us-east-1"
fail_on_empty_changeset = false
confirm_changeset = true
capabilities = "CAPABILITY_IAM CAPABILITY_AUTO_EXPAND"
parameter_overrides = [
"BootstrapBucketBaseName=lca-artifacts-253873381732",
"BootstrapS3Prefix=artifacts/lca",
"BootstrapVersion=0.9.0",
"BootstrapVersion=0.9.1",
"S3BucketName=shared-ai-for-chime-vc-audio",
"IsContentRedactionEnabled=true",
"IsSentimentAnalysisEnabled=true",
Expand All @@ -32,4 +32,4 @@ parameter_overrides = [

[shared.package.parameters]
s3_bucket = "lca-artifacts-253873381732-us-east-1"
s3_prefix = "artifacts/lca/0.9.0"
s3_prefix = "artifacts/lca/0.9.1"
4 changes: 2 additions & 2 deletions lca-ai-stack/source/ui/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lca-ai-stack/source/ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lca-ui",
"version": "0.9.0",
"version": "0.9.1",
"private": true,
"dependencies": {
"@aws-amplify/ui-components": "^1.9.6",
Expand Down
4 changes: 2 additions & 2 deletions lca-main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
AWSTemplateFormatVersion: "2010-09-09"
Transform: AWS::Serverless-2016-10-31

Description: Amazon Transcribe Live Call Analytics with Agent Assist - LCA (v0.9.0) (SO9072)
Description: Amazon Transcribe Live Call Analytics with Agent Assist - LCA (v0.9.1) (SO9072)

Parameters:
CallAudioSource:
Expand Down Expand Up @@ -1094,7 +1094,7 @@ Resources:
status = cfnresponse.FAILED
reason = f"CustomVocabularyName '{customVocabularyName}' is not valid. When a list is provided, each name in the list must have a valid language code suffix, eg 'MyName_en-US, MyName_es-US'"
if customLanguageModelName:
if isCvOrClmListAllowed(customLanguageModelName, callAudioSource, callAudioProcessor):
if not isCvOrClmListAllowed(customLanguageModelName, callAudioSource, callAudioProcessor):
status = cfnresponse.FAILED
reason = f"CustomLanguageModelName '{customLanguageModelName}' is not valid for CallAudioSource '{callAudioSource}' and CallAudioProcessor '{callAudioProcessor}' . Multiple values are currently supported only when callAudioSource is either 'Demo Asterisk PBX Server' or 'Amazon Chime SDK Voice Connector (SIPREC)', AND CallAudioProcessor is 'Call Transcriber Lambda'."
elif not isValidCvOrClmName(customLanguageModelName):
Expand Down

0 comments on commit d7971f1

Please sign in to comment.