From c7f99cd623b31b929216ba0181fcabaf06b3c1fc Mon Sep 17 00:00:00 2001 From: Onur ULUSOY Date: Wed, 12 Jun 2024 13:55:25 +0300 Subject: [PATCH] Removed print in chat history --- gpt_computer_assistant/agent/chat_history.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpt_computer_assistant/agent/chat_history.py b/gpt_computer_assistant/agent/chat_history.py index 9093c1bf..092219bf 100644 --- a/gpt_computer_assistant/agent/chat_history.py +++ b/gpt_computer_assistant/agent/chat_history.py @@ -8,7 +8,7 @@ def get_chat_message_history(): - print("HISTORY DB", get_history_db()) + connection = SQLChatMessageHistory( session_id="abc123", connection_string=f"sqlite:///{get_history_db()}" )