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 Antworten
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
beantwortet vor 2 Monaten
profile picture
EXPERTE
überprüft vor 2 Monaten
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
beantwortet vor 2 Monaten

Du bist nicht angemeldet. Anmelden um eine Antwort zu veröffentlichen.

Eine gute Antwort beantwortet die Frage klar, gibt konstruktives Feedback und fördert die berufliche Weiterentwicklung des Fragenstellers.

Richtlinien für die Beantwortung von Fragen