Skip to content

Commit

Permalink
Update to version v5.3.2
Browse files Browse the repository at this point in the history
### Added

- Added new parameter for configurable Opensearch EBS Volume Size (#567)
- Added MetricsBucket to stack outputs (#571)

### Fixed

- Fix Lambda Embeddings documentation with correct event definition (#576)
- Fix broken urls in prairielinetrail tour example (#577)
- Fix bug causing CONNECT_IGNORE_WORDS from working correctly (#589)
- Fix QIDs not matching correctly when the score is less than 1 (#592)
- Improved handling of Lex and Connect response limits (#593)

### Updated

- Security patches for npm and pip packages
- Update Connect Interactive Message limits
  • Loading branch information
tabdunabi authored Apr 17, 2023
2 parents 0dc3403 + 3c380db commit 0e258e2
Show file tree
Hide file tree
Showing 44 changed files with 2,840 additions and 735 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,26 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [5.3.2] - 2023-04-17

### Added

- Added new parameter for configurable Opensearch EBS Volume Size (#567)
- Added MetricsBucket to stack outputs (#571)

### Fixed

- Fix Lambda Embeddings documentation with correct event definition (#576)
- Fix broken urls in prairielinetrail tour example (#577)
- Fix bug causing CONNECT_IGNORE_WORDS from working correctly (#589)
- Fix QIDs not matching correctly when the score is less than 1 (#592)
- Improved handling of Lex and Connect response limits (#593)

### Updated

- Security patches for npm and pip packages
- Update Connect Interactive Message limits

## [5.3.1] - 2023-03-15

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions docs/semantic_matching_using_LLM_embeddings/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ Use a custom Lambda function to use any Embedding API or embedding model on Sage
Your Lambda function is passed an event of the form:
```
{
"inputtype": "string", // value 'q' for question, 'a' for answer
"inputtext":"string" // string of question of answer to use to generate embeddings
"inputType": "string", // value 'q' for question, 'a' for answer
"inputText":"string" // string of question of answer to use to generate embeddings
}
```
and must return a JSON structure of the form:
Expand Down
4 changes: 2 additions & 2 deletions docs/settings.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
| KENDRA_INDEXER_SCHEDULE | [CloudWatch Rate Syntax](https://docs.aws.amazon.com/AmazonCloudWatch/latest/events/ScheduledEvents.html) | Interval Indexer should crawl
| KENDRA_INDEXER_CRAWL_DEPTH | number | Sets the depth to the number of levels in a website from the seed level that you want to crawl
| KENDRA_INDEXER_CRAWL_MODE | HOST_ONLY \| SUBDOMAINS \| EVERYTHING | Determines which addresses should be crawled
| KENDRA_WEB_PAGE_INDEX | Kendra Index Id | The index to use for the web crawler, a [custom data source](https://docs.aws.amazon.com/kendra/latest/dg/data-source-custom.html) will automatically be added to the specified index.
| KENDRA_WEB_PAGE_INDEX | Kendra Index Id | The index to use for the web crawler, a [custom data source](https://docs.aws.amazon.com/kendra/latest/dg/data-source-custom.html) will automatically be added to the specified index.
| KENDRA_INDEXED_DOCUMENTS_LANGUAGES | comma separate list | Should be one of supported Kendra languages mentioned in [documentation](https://docs.aws.amazon.com/kendra/latest/dg/in-adding-languages.html)
| ERRORMESSAGE | text | Response to the user when a processing error occurs
| EMPTYMESSAGE | text | Response to the user when an answer could not be found
Expand All @@ -53,7 +53,7 @@
| ELICIT_RESPONSE_RETRY_MESSAGE | text | Default retry message when working with LexBot
| ELICIT_RESPONSE_BOT_FAILURE_MESSAGE | text | Message used when maximum number of retries is exceeded
| ELICIT_RESPONSE_DEFAULT_MSG| text |
| CONNECT_IGNORE_WORDS | comma separated list | Throw error if connect client sends individual characters not processable by elastic search
| CONNECT_IGNORE_WORDS | comma separated list | Throw an error if the transcript provided by connect __only__ contains the words in this list (case insensitive). This is useful if you find many missed utterances due to the use of filler words before a proper utterance (e.g. "a", "e", "umm", "like", etc.). This setting can not be used as a transcript filter (see `LAMBDA_PREPROCESS_HOOK` or `LAMBDA_POSTPROCESS_HOOK` if you wish to apply custom processing to questions/answers)
| CONNECT_ENABLE_VOICE_RESPONSE_INTERRUPT | true or false | Return bot response in session attribute to enable contact flow to use response as an interruptible prompt.
| CONNECT_NEXT_PROMPT_VARNAME | text | Name of session var to use for next prompt
| ENABLE_REDACTING | true or false | Enable the system to redact log output
Expand Down
Loading

0 comments on commit 0e258e2

Please sign in to comment.