From 37b4473137d9fc5601c1a11fdc1859b65bfb75a2 Mon Sep 17 00:00:00 2001 From: Toran Bruce Richards Date: Mon, 10 Apr 2023 14:23:20 +0100 Subject: [PATCH] Fixes extra arg given in chat-with-ai call in main --- scripts/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/main.py b/scripts/main.py index c4fa2a20e6..3dfcaa157e 100644 --- a/scripts/main.py +++ b/scripts/main.py @@ -320,7 +320,7 @@ while True: user_input, full_message_history, memory, - cfg.fast_token_limit, cfg.debug) # TODO: This hardcodes the model to use GPT3.5. Make this an argument + cfg.fast_token_limit) # TODO: This hardcodes the model to use GPT3.5. Make this an argument # Print Assistant thoughts print_assistant_thoughts(assistant_reply)