Reputation: 11
I am trying to make a chatbot for the faqs of our website with rasa_nlu. There are about 200 frequently asked questions divided in some categories. Is it correct way to make intent for every question or should I follow some other approach?
Upvotes: 1
Views: 551
Reputation: 46
You can try it easily with Rasa-core. You can use a distinctive intent for same questions. In domain.yml, you create an action for each intent, where action corresponds to the answer. Stores is just the (intent action) pair.
By default, memorization policy is used. As long as correct intent is detected by rasa-nlu, the correct answer will be given. I tried with mine, it works.
Upvotes: 0
Reputation: 2814
Before you start adding the Intents, there are few suggestions I have:
The goal will be to have a good user experience when someone is interacting with your chatbot and should complete the conversation in a natural flow with a meaningful start and end.
Upvotes: 1