From 1da9dbe671fb6d876b7e8883c5ec06a88225adb5 Mon Sep 17 00:00:00 2001 From: "fabi.s" Date: Thu, 13 Apr 2023 19:05:23 +0200 Subject: [PATCH] remove output to set OpenAI API key in config.py --- scripts/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/main.py b/scripts/main.py index 68f9d10c..c08ba1b2 100644 --- a/scripts/main.py +++ b/scripts/main.py @@ -26,7 +26,7 @@ def check_openai_api_key(): if not cfg.openai_api_key: print( Fore.RED + - "Please set your OpenAI API key in config.py or as an environment variable." + "Please set your OpenAI API key in .env or as an environment variable." ) print("You can get your key from https://beta.openai.com/account/api-keys") exit(1)