Add "Enable Intent Matching" to every node
# 👀feature-requests
r
Currently, if we want to give the user a choice (with buttons) and we also want to listen for intents (if the user did not choose one of the options), we need to use a combination of the Raw Input element + Transition (as explained here: https://discord.com/channels/1108396290624213082/1138926700885966950). However, with this solution we need to create a transition for each intent we want to match. If you have a large bot with over 50 intents and want to check if each intent was matched, this means that you need add 50 transitions for every choice you want to give the user, which is not desirable solution. Therefore, I propose to add an "Enable Intent Matching" (just like the "Enable Knowledge Answering" option) option to each node that automatically checks if the user input did match an intent if no choice was selected by the user (by using buttons).