Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Repository files navigation
# ChatBox
from chatterbot.trainers import ListTrainer
from chatterbot import *
bot = ChatBot('Test')
conv = open('chats.txt','r').readlines()
bot.set_trainer(ListTrainer)
bot.train(conv)
while True:
request = input('You: ')
response = bot.get_response(request)
print('Bot: ',response)