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)