Amazon Kendra Integration
This guide explains how to configure the display of reference sources when using the RAG assistant feature with Kendra in AI-Starter. This applies to both Azure GPT-4 RAG and AWS Claude 2.1 RAG.
Reference Display Options
AI-Starter offers three display methods to choose from:
- Display all references as links
- Link to URLs specified in S3 document metadata
- Do not display links (default)
Below, we explain the details and setup methods for each display option.
1. Display all references as links
Overview
This setting allows users to directly access files in the S3 bucket, which is Kendra's data source, through the application.
Notes
- Currently, accessible file formats are limited to PDF, HTML, JSON, XML, CSV, Markdown, and text files.
Setup Method
-
Open the AWS Secrets Manager service page in the AWS Management Console.
-
Open the
cmais-prd/customize
secret. -
In the "Overview" tab, under "Secret value," click "Retrieve secret value."
-
Click "Edit."
-
Enter
kendra_doc_link
as the key andALL
as the value, then click "Save." -
Open the S3 service page.
-
Display the S3 bucket referenced as Kendra's data source, select the "Properties" tab, and note the "Amazon Resource Name (ARN)."
-
Open the IAM service page and go to the "Roles" page.
-
Search for and display
cmais-prd-ar-instance-role
. -
In the "Permissions" tab, click "Add permissions" and choose "Create inline policy."
-
In the "Policy editor" tab, select "JSON." Paste the following JSON. Enter the ARN of the S3 bucket you noted earlier for
Resource
. After completing, click "Next."{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "Statement1",
"Action": "s3:GetObject",
"Resource": ["{S3 Bucket ARN1}/*", "{S3 Bucket ARN2}/*"],
"Effect": "Allow"
}
]
} -
Enter
ShowDataSourcePermission
as the policy name and click "Create policy." -
(Only if you updated the secret, perform the following steps)
-
Open the App Runner service page.
-
Select
cmais-prd-ar-ai-starter
. -
Click "Deploy."
2. Link to URLs specified in S3 document metadata
Overview
This setting displays specific attribute values in the metadata set for each document in the S3 bucket, which is Kendra's data source, as URLs.
Setup Method
-
Create metadata for each S3 document.
-
For details, refer to Amazon S3 document metadata - Amazon Kendra.
-
Create metadata in a JSON file.
-
The file name should be the target document name with
.metadata.json
appended. For example, the metadata file name for a document namedtest.txt
would betest.txt.metadata.json
. -
The file content should be written as follows. Replace
http://example.com
with the URL you want to reference.{
"Attributes": {
"custom_url": "http://example.com"
}
}
-
-
-
Open the S3 service page in the AWS Management Console.
-
Place the created metadata files in the S3 bucket referenced as Kendra's data source.
- For details, refer to Where is Amazon Kendra's metadata located? | DevelopersIO.
-
Open the Kendra service page.
-
Open the Index that AI-Starter is linked to.
-
Open "Facet definition."
-
Click the "Add field" button and add a field with the following settings:
- Field name:
custom_url
- Date type: String
- Displayable: Check the box
- Field name:
-
Open "Data sources."
-
Check the data source linked to AI-Starter and execute "Sync."
-
Open the AWS Secrets Manager service page.
-
Open the
cmais-prd/customize
secret. -
In the "Overview" tab, under "Secret value," click "Retrieve secret value."
-
Click "Edit."
-
Enter
kendra_doc_link
as the key andcustom_url
as the value, then click "Save." -
(Only if you updated the secret, perform the following steps)
-
Open the App Runner service page.
-
Select
cmais-prd-ar-ai-starter
. -
Click "Deploy."
3. Do not display links (default)
Overview
With this setting, users can only see the titles of reference sources and cannot access files or URLs.
Setup Method
- Open the AWS Secrets Manager service page in the AWS Management Console.
- Open the
cmais-prd/customize
secret. - In the "Overview" tab, under "Secret value," click "Retrieve secret value."
- Click "Edit."
- Enter
kendra_doc_link
as the key andOFF
as the value, then click "Save." - (Only if you updated the secret, perform the following steps)
- Open the App Runner service page.
- Select
cmais-prd-ar-ai-starter
. - Click "Deploy."