I’m currently trying to create a chatbot that can handle some predefined FAQ but also is able to hold some basic conversation using the ML based approach.
I want to:
Always give same response to a list of FAQ.
Also have different intents than “FAQ” that can be used in conversation.
I’ve followed the tutorial on FAQ bots: Chitchat and FAQs.
It only allows to make a different responseselector for each intent = FAQ, chitchat.
My best guess now is I need to add custom actions called utter_faq and utter_chitchat that map to the subintents. I’ve seen some custom actions on the example chatbot you linked. But I can’t figure it out in my example, how I would make this?