From 8a860c268e0fc227cd78e56948b4e8a525634d5c Mon Sep 17 00:00:00 2001 From: Roger Gomez Date: Fri, 22 Nov 2024 16:33:33 -0500 Subject: [PATCH] update unused variables. --- week2/community-contributions/day1-azure-aws-ollama.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/week2/community-contributions/day1-azure-aws-ollama.ipynb b/week2/community-contributions/day1-azure-aws-ollama.ipynb index ced3e29..dfb346b 100644 --- a/week2/community-contributions/day1-azure-aws-ollama.ipynb +++ b/week2/community-contributions/day1-azure-aws-ollama.ipynb @@ -318,10 +318,10 @@ " session = boto3.Session()\n", " bedrock = session.client(service_name='bedrock-runtime', region_name='us-east-1')\n", " response = bedrock.converse(\n", - " modelId=AWS_MODEL,\n", + " modelId=model,\n", " inferenceConfig={\n", " \"maxTokens\": 2000,\n", - " \"temperature\": 0\n", + " \"temperature\": temp\n", " },\n", " messages=[aws_message],\n", " system=sys_message\n",