From 6608523697d6e70abc7b25be021657e97a35c4e1 Mon Sep 17 00:00:00 2001 From: sai prasad <49365842+prasad5141@users.noreply.github.com> Date: Wed, 19 Apr 2023 00:33:40 +0530 Subject: [PATCH] added missing headline variable while calling print_colored function I added a headline as per my knowledge, please let me know if any specific headline should be displayed, like user or system --- src/apis/gpt.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apis/gpt.py b/src/apis/gpt.py index ddf6a25..9145fd4 100644 --- a/src/apis/gpt.py +++ b/src/apis/gpt.py @@ -50,7 +50,7 @@ If you have updated it already, please restart your terminal. continue return True except openai.error.InvalidRequestError: - print_colored('GPT-4 is not available. Using GPT-3.5-turbo instead.', 'yellow') + print_colored('GPT version info', 'GPT-4 is not available. Using GPT-3.5-turbo instead.', 'yellow') return False def get_conversation(self, system_definition_examples: List[str] = ['executor', 'docarray', 'client']):