Skip to content

Commit

Permalink
Merge branch 'develop' v0.1.16
Browse files Browse the repository at this point in the history
  • Loading branch information
rstrahan committed Jul 2, 2024
2 parents d31cc5b + 85b08d6 commit 0dd698a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 3 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.16] - 2024-07-02
### Added
- Amazon Bedrock LLM plugin now suports anthropic.claude-3-haiku model - PR #28.

## [0.1.15] - 2024-03-07
### Added
- Amazon Bedrock LLM plugin now suports anthropic.claude-3-sonnet model, and deprecates anthropic.claude-v1 - PR #26 & PR #27.
Expand Down Expand Up @@ -84,7 +88,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Initial release

[Unreleased]: https://github.com/aws-samples/qnabot-on-aws-plugin-samples/compare/v0.1.14...develop
[Unreleased]: https://github.com/aws-samples/qnabot-on-aws-plugin-samples/compare/main...develop
[0.1.16]: https://github.com/aws-samples/qnabot-on-aws-plugin-samples/releases/tag/v0.1.15
[0.1.15]: https://github.com/aws-samples/qnabot-on-aws-plugin-samples/releases/tag/v0.1.15
[0.1.14]: https://github.com/aws-samples/qnabot-on-aws-plugin-samples/releases/tag/v0.1.14
[0.1.13]: https://github.com/aws-samples/qnabot-on-aws-plugin-samples/releases/tag/v0.1.13
Expand Down
6 changes: 4 additions & 2 deletions lambdas/bedrock-embeddings-and-llm/template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Parameters:

LLMModelId:
Type: String
Default: anthropic.claude-instant-v1
Default: anthropic.claude-3-haiku-20240307-v1:0
AllowedValues:
- amazon.titan-text-express-v1
- amazon.titan-text-lite-v1
Expand All @@ -21,7 +21,9 @@ Parameters:
- anthropic.claude-instant-v1
- anthropic.claude-v2
- anthropic.claude-v2:1
- anthropic.claude-3-haiku-20240307-v1:0
- anthropic.claude-3-sonnet-20240229-v1:0
- anthropic.claude-3-opus-20240229-v1:0
- cohere.command-text-v14
- cohere.command-light-text-v14
- meta.llama2-13b-chat-v1
Expand Down Expand Up @@ -383,4 +385,4 @@ Outputs:

QnAItemLambdaHookArgs:
Description: QnA Item Lambda Hook Args (use with no_hits item for optional ask-the-LLM fallback)
Value: !GetAtt OutputSettings.QNAITEM_LAMBDAHOOK_ARGS
Value: !GetAtt OutputSettings.QNAITEM_LAMBDAHOOK_ARGS

0 comments on commit 0dd698a

Please sign in to comment.