Browse Source

Strip the OpenAI API Key when parsing the .env config file

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

2
client/utils.py

@ -13,7 +13,7 @@ class Standalone:
def __init__(self, args, pattern=''):
try:
with open(env_file, "r") as f:
apikey = f.read().split("=")[1]
apikey = f.read().split("=")[1].strip()
self.client = OpenAI(api_key=apikey)
except FileNotFoundError:
print("No API key found. Use the --apikey option to set the key")

Loading…
Cancel
Save