Hope you have read the previous blog to create chatbot using Rasa. I would recommend to read it before starting this blog. This blog will help you understand insights of rasa ecosystem and explain how to train your model effectively. Rasa is an open source framework for creating chatbot with natural language undertsanding. There are few important files of rasa project - ✪ domain.yml This file contain information about intent and respective actions . For instance- basis on intent of a user, appropriate action gets triggered and response is sent back to user. '-utter' is plain text without any logic behind it, however we can create custom action which we will discuss further in the blog. intents : - greet - goodbye - affirm actions : - utter_greet - utter_cheer_up - utter_did_that_help responses : utter_greet : - text : Hey! How are you? utter_cheer_up : - text : 'Great, carry on!' utter_did_that_help : - text : Did that help yo...