From 7817c3eca5aff3aae0e5b34f70348a9d707100e6 Mon Sep 17 00:00:00 2001 From: principle105 Date: Wed, 7 Sep 2022 23:15:04 -0400 Subject: [PATCH] last update --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5786a78..f6b5751 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ pip install thomasthechatbot from ttc import Chatbot, Context from ttc.utils import download_nltk_data -# Only needs to be run once +# Only needs to be run once (can be removed after first run) download_nltk_data() ctx = Context() @@ -44,7 +44,7 @@ while talk: # Saving the response to the context ctx.save_resp(resp) - print(resp) + print(f"Thomas: {resp}") # Saving the chatbot data chatbot.save_data()