From 8e3728f60e4dfd894f8d95f21839e31bed9b9042 Mon Sep 17 00:00:00 2001 From: Andriy Mulyar Date: Tue, 16 May 2023 13:02:19 -0400 Subject: [PATCH] Update gpt4all_chat.md (#598) Signed-off-by: Andriy Mulyar --- gpt4all-bindings/python/docs/gpt4all_chat.md | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/gpt4all-bindings/python/docs/gpt4all_chat.md b/gpt4all-bindings/python/docs/gpt4all_chat.md index aa29ac59..95c99425 100644 --- a/gpt4all-bindings/python/docs/gpt4all_chat.md +++ b/gpt4all-bindings/python/docs/gpt4all_chat.md @@ -24,11 +24,7 @@ import openai openai.api_base = "http://localhost:4891/v1" #openai.api_base = "https://api.openai.com/v1" -# Read the OpenAI API key from an environment variable (not needed if using local LLM) -openai_api_key = os.environ.get("OPENAI_API_KEY") -if not openai_api_key: - raise ValueError("Please set the 'OPENAI_API_KEY' environment variable.") -openai.api_key = openai_api_key +openai_api_key = "no needed for a local LLM" # Set up the prompt and other parameters for the API request prompt = "Who is Michael Jordan?"