I am building a chatbot where the following two type of path is followed -
Path 1
user : Hi
bot : Hi i am bot, I hope you are fine
user : I am fine (intent- greet_happy )
bot : great to hear that
Path 2
user : Hi
bot : Hi i am bot, I hope you are fine
user : I am not good (intent - greet_sad)
bot : sad to hear that
I want my rasa to confine the intent lookout to only two intents out of 10 intents I have for the particular response by the user. Is there any way to achieve it in rasa ?