소스 검색

fixing typo

Beto 1 년 전
부모
커밋
aa97bb7e48
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      recipes/llama_api_providers/examples_with_aws/getting_started_llama_3_on_amazon_bedrock.ipynb

+ 2 - 2
recipes/llama_api_providers/examples_with_aws/getting_started_llama_3_on_amazon_bedrock.ipynb

@@ -251,7 +251,7 @@
     "print(\"\\n=======LLAMA-3-8B====PROMPT 1================>\", prompt_1)\n",
     "response_8b_prompt1 = invoke_model(bedrock_runtime, 'meta.llama3-8b-instruct-v1:0', prompt_1, 256)\n",
     "print(\"\\n=======LLAMA-3-70B====PROMPT 1================>\", prompt_1)\n",
-    "esponse_70b_prompt1 = invoke_model(bedrock_runtime, 'meta.llama3-70b-instruct-v1:0', prompt_1, 256)\n",
+    "response_70b_prompt1 = invoke_model(bedrock_runtime, 'meta.llama3-70b-instruct-v1:0', prompt_1, 256)\n",
     "\n",
     "\n",
     "# Print the differences in responses\n",
@@ -275,7 +275,7 @@
     "# Print the differences in responses\n",
     "print(\"==========================\")\n",
     "print(\"\\nDIFF VIEW for PROMPT 2:\")\n",
-    "print_diff(response_8b_prompt1, response_70b_prompt1)\n",
+    "print_diff(response_8b_prompt2, response_70b_prompt2)\n",
     "print(\"==========================\")"
    ]
   }