environment variables for a RAG/Bedrock notebook

0

What values do I have to set:

# os.environ["AWS_DEFAULT_REGION"] = "<REGION_NAME>"  # E.g. "us-east-1"
# os.environ["AWS_PROFILE"] = "<YOUR_PROFILE>"
# os.environ["BEDROCK_ASSUME_ROLE"] = "<YOUR_ROLE_ARN>"  # E.g. "arn:aws:..."

in order to work with this notebook ? https://github.com/aws-samples/amazon-bedrock-workshop/blob/main/03_QuestionAnswering/01_qa_w_rag_llama2.ipynb

2回答
0
os.environ["AWS_DEFAULT_REGION"] - The region where you have access to the Bedrock. Sample value : us-east-1  
os.environ["AWS_PROFILE"] = "<YOUR_PROFILE>"  - If you run the notebook from your local, the profile you have setup in your local environment which has access to the Bedrock. 
os.environ["BEDROCK_ASSUME_ROLE"] = "<YOUR_ROLE_ARN>"  - IAM Role which has access to the Bedrock

Please refer the following link which has the boto3 setup instructions - Create the boto3 client
https://github.com/aws-samples/amazon-bedrock-workshop/blob/6c6997b042b8d493b74d2e8ece3eff4dce96a95c/00_Intro/bedrock_boto3_setup.ipynb#Prerequisites

profile pictureAWS
回答済み 2ヶ月前
profile picture
エキスパート
レビュー済み 2ヶ月前
0

Hi Josh, Before you begin any of the modules in the workshop you need to run the Workshop set up located at

https://github.com/aws-samples/amazon-bedrock-workshop/blob/6c6997b042b8d493b74d2e8ece3eff4dce96a95c/00_Intro/bedrock_boto3_setup.ipynb#Prerequisites

If you are already in the notebook session, you can find this module at: 00_Intro -> bedrock_boto3_setup.ipynb then proceed to run all cells.

zeekg
回答済み 2ヶ月前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ