From 38eac705a5f31ae7b6f66581c546d50fd1dc68b1 Mon Sep 17 00:00:00 2001 From: Ryan Balfanz <133278+RyanBalfanz@users.noreply.github.com> Date: Fri, 2 Feb 2024 16:40:28 -0800 Subject: [PATCH] Strip the OpenAI API Key when parsing the .env config file --- client/utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/utils.py b/client/utils.py index faaf1f7..5744cc8 100644 --- a/client/utils.py +++ b/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")