From dd26b356c52e06343a49322e54d37b0f6401f689 Mon Sep 17 00:00:00 2001 From: Patrick Ruddiman Date: Thu, 14 Mar 2024 01:31:18 -0400 Subject: [PATCH] update error message during call to openai with an empty key --- installer/client/cli/utils.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/installer/client/cli/utils.py b/installer/client/cli/utils.py index 24a2413..d22d10f 100644 --- a/installer/client/cli/utils.py +++ b/installer/client/cli/utils.py @@ -259,6 +259,8 @@ class Standalone: with open(self.args.output, "w") as f: f.write(response.choices[0].message.content) except Exception as e: + if getattr(e.__cause__, 'args', [''])[0] == "Illegal header value b'Bearer '": + print("Error: Cannot connect to the OpenAI API Server because the API key is not set. Please run fabric --setup and add a key.") if "All connection attempts failed" in str(e): print( "Error: cannot connect to llama2. If you have not already, please visit https://ollama.com for installation instructions")