utf-8 codec can t decode byte 0x93 in position 249 invalid start byte

Viewed 16
from chatterbot import ChatBot

from chatterbot.trainers import ChatterBotCorpusTrainer

chatbot=ChatBot('corona bot')

trainer = ChatterBotCorpusTrainer(chatbot)

trainer.train("chatterbot.corpus.english.greetings",

              "chatterbot.corpus.english.conversations" )

  

response = chatbot.get_response('What is your Number')

print(response)

response = chatbot.get_response('Who are you?')

print(response)
0 Answers
Related