From 49dc288ad3fe2adf29f7e95ea7004846ccf8bf0b Mon Sep 17 00:00:00 2001 From: Ryan Balfanz <133278+RyanBalfanz@users.noreply.github.com> Date: Fri, 2 Feb 2024 16:57:47 -0800 Subject: [PATCH] Remove invalid duplicative use of openai_api_key attribute --- client/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/utils.py b/client/utils.py index 21b6195..7c79f41 100644 --- a/client/utils.py +++ b/client/utils.py @@ -28,7 +28,7 @@ class UserConfig: class Standalone: def __init__(self, args, pattern=''): try: - c = UserConfig.from_env_file(env_file).openai_api_key + c = UserConfig.from_env_file(env_file) self.client = OpenAI(api_key=c.openai_api_key) except FileNotFoundError: print("No API key found. Use the --apikey option to set the key")