From f4aefb3278d1e4361573df0df8d0d55d5fe76182 Mon Sep 17 00:00:00 2001 From: wea_ondara Date: Sun, 21 Apr 2024 18:20:35 +0200 Subject: [PATCH] fix bot response print --- chat_cli.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chat_cli.py b/chat_cli.py index 1f1ea2f..8f365a7 100644 --- a/chat_cli.py +++ b/chat_cli.py @@ -5,4 +5,4 @@ client = ChatClient() while True: user_prompt = prompt('>> User: ') response = client.input('user', user_prompt) - print(response) + print('>> Bot: ' + response)