LiX

Results 1 issues of LiX

Here's my code: ``` import time time.clock = time.time from chatterbot import ChatBot from chatterbot.trainers import ChatterBotCorpusTrainer chatbot = ChatBot('Rema') trainer = ChatterBotCorpusTrainer(chatbot) trainer.train("chatterbot.corpus.english") response = chatbot.get_response("Hey, how are you?")...