From cdd9cbe855b0fc2cedc8eaeb977bd81e3b3180e9 Mon Sep 17 00:00:00 2001 From: David Date: Wed, 6 Mar 2024 21:05:55 +0000 Subject: [PATCH] bugfix: Add failover functionality to setup -Updated the fabric --setup to ask for an OPENAI_API_KEY if none is found. --- installer/client/cli/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/installer/client/cli/utils.py b/installer/client/cli/utils.py index 5d45a7b..3f1a04a 100644 --- a/installer/client/cli/utils.py +++ b/installer/client/cli/utils.py @@ -430,8 +430,8 @@ class Setup: openaiapikey = os.environ["OPENAI_API_KEY"] self.openaiapi_key = openaiapikey except KeyError: - print("OPENAI_API_KEY not found in environment variables.") - sys.exit() + print("OPENAI_API_KEY not found in environment variables. ") + self.run() self.fetch_available_models() def fetch_available_models(self):