Advertisement
Guest User

new

a guest
May 21st, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.32 KB | None | 0 0
  1. # -*- codding: utf-8 -*-
  2. from chatterbot import ChatBot
  3. from chatterbot.trainers import ListTrainer
  4. bot = ChatBot("edu magro")
  5. conversa = ['oi', 'ola', 'tudo bem?', 'tudo Otimo']
  6. bot.set_trainer(ListTrainer)
  7. bot.train(conversa)
  8. while True:
  9.     request = input("You: ")
  10.     resposta = bot.get_response("request")
  11.     print("Bot: ", resposta)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement