From 33c367cb3e68cdefe7c99fbdbe509e828124877d Mon Sep 17 00:00:00 2001 From: davidmoshal Date: Wed, 4 Oct 2023 01:54:28 -0700 Subject: [PATCH] Update lesson-02-prompts-and-llms.py wrong environment variable name --- lesson-02-prompts-and-llms.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lesson-02-prompts-and-llms.py b/lesson-02-prompts-and-llms.py index a2a796c..ebd47c4 100644 --- a/lesson-02-prompts-and-llms.py +++ b/lesson-02-prompts-and-llms.py @@ -1,7 +1,7 @@ # Prompts and LLMs import os -os.environ["OPENAI_API_KEY"] = "..." +os.environ["HUGGINGFACEHUB_API_TOKEN"] = "..." from langchain.llms import OpenAI