Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. from chatterbot import ChatBot
  2. from chatterbot.trainers import ListTrainer
  3.  
  4. # Create a new chat bot named Charlie
  5. chatbot = ChatBot('Charlie')
  6.  
  7. trainer = ListTrainer(chatbot)
  8.  
  9. trainer.train([
  10. "Hi, can I help you?",
  11. "Sure, I'd like to book a flight to Iceland.",
  12. "Your flight has been booked."
  13. ])
  14.  
  15. # Get a response to the input text 'I would like to book a flight.'
  16. response = chatbot.get_response('I would like to book a flight.')
  17.  
  18. print(response)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement