-
Notifications
You must be signed in to change notification settings - Fork 124
adding aws-simple-rag sample app #1806
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| # This file excludes unnecessary files from the application package. See | ||
| # https://docs.vespa.ai/en/reference/vespaignore.html for more information. | ||
| .DS_Store | ||
| .gitignore | ||
| README.md | ||
| ext/ |
| Original file line number | Diff line number | Diff line change | ||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -0,0 +1,256 @@ | ||||||||||||||||||
| <!-- Copyright Vespa.ai. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.--> | ||||||||||||||||||
|
|
||||||||||||||||||
| <picture> | ||||||||||||||||||
| <source media="(prefers-color-scheme: dark)" srcset="https://assets.vespa.ai/logos/Vespa-logo-green-RGB.svg"> | ||||||||||||||||||
| <source media="(prefers-color-scheme: light)" srcset="https://assets.vespa.ai/logos/Vespa-logo-dark-RGB.svg"> | ||||||||||||||||||
| <img alt="#Vespa" width="200" src="https://assets.vespa.ai/logos/Vespa-logo-dark-RGB.svg" style="margin-bottom: 25px;"> | ||||||||||||||||||
| </picture> | ||||||||||||||||||
|
|
||||||||||||||||||
| # Retrieval Augmented Generation (RAG) in Vespa using AWS BedRock models | ||||||||||||||||||
|
|
||||||||||||||||||
| This sample application demonstrates an end-to-end Retrieval Augmented | ||||||||||||||||||
| Generation application in Vespa, leveraging [AWS BedRock](https://aws.amazon.com/bedrock/) hosted models. | ||||||||||||||||||
|
Comment on lines
+9
to
+12
|
||||||||||||||||||
| # Retrieval Augmented Generation (RAG) in Vespa using AWS BedRock models | |
| This sample application demonstrates an end-to-end Retrieval Augmented | |
| Generation application in Vespa, leveraging [AWS BedRock](https://aws.amazon.com/bedrock/) hosted models. | |
| # Retrieval Augmented Generation (RAG) in Vespa using AWS Bedrock models | |
| This sample application demonstrates an end-to-end Retrieval Augmented | |
| Generation application in Vespa, leveraging [AWS Bedrock](https://aws.amazon.com/bedrock/) hosted models. |
Copilot
AI
Nov 7, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Incorrect capitalization: "BedRock" should be "Bedrock" (lowercase 'r'). The official AWS product name is "Amazon Bedrock" not "BedRock".
Copilot
AI
Nov 7, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing opening angle bracket in the vault attribute. The value should be vault="<my-vault-name>" instead of vault=">my-vault-name>" to match the pattern used for <my-secret-name>.
| <bedrock-api-key vault=">my-vault-name>" name="<my-secret-name>"/> | |
| <bedrock-api-key vault="<my-vault-name>" name="<my-secret-name>"/> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Incorrect capitalization: "BedRock" should be "Bedrock" (lowercase 'r'). The official AWS product name is "Amazon Bedrock" not "BedRock".