Browse Source

Remove invalid duplicative use of openai_api_key attribute

pull/28/head
Ryan Balfanz 1 year ago committed by GitHub
parent
commit
49dc288ad3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      client/utils.py

2
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")

Loading…
Cancel
Save