From 241baab547d0d6f0cfaa40c772811ab7b1841a29 Mon Sep 17 00:00:00 2001 From: Shubham Rajendra Burad <37264064+shubhamburad@users.noreply.github.com> Date: Thu, 1 Oct 2020 09:54:39 +0530 Subject: [PATCH] Update main-raw.py --- chatbot-master/main-raw.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/chatbot-master/main-raw.py b/chatbot-master/main-raw.py index d91c68e..05f2bf4 100644 --- a/chatbot-master/main-raw.py +++ b/chatbot-master/main-raw.py @@ -3,6 +3,7 @@ kernel = aiml.Kernel() +# path for bot_brain.brn file. if os.path.isfile("bot_brain.brn"): kernel.bootstrap(brainFile = "bot_brain.brn") else: @@ -11,7 +12,7 @@ # kernel now ready for use while True: - message = raw_input("Tell your message to the bot: ") + message = raw_input("Tell your message to the bot: ") #if condition is true it will display the message else it exit from the code. if message == "quit": exit() elif message == "save":