Chatterbot Terminal Version: From Import From Import
Chatterbot Terminal Version: From Import From Import
trainer = ListTrainer(chatbot)
trainer.train([
"Hi, can I help you?",
"Sure, I'd like to book a flight to Iceland.",
"Your flight has been booked."])
# The following loop will execute each time the user enters input
while True:
try:
user_input = input()
bot_response = chatbot.get_response(user_input)
print(bot_response)
# The following loop will execute each time the user enters input
while True:
try:
user_input = input()
bot_response = bot.get_response(user_input)
print(bot_response)
More on https://chatterbot.readthedocs.io/en/latest/examples.html#terminal-example