We are building a chat bot with LUIS and QNA in c#. The approach is like when nointent is reached in LUIS it will invoke QNA maker and try to see if the asked question is available there or not . But if QNA mathes the asked question with multiple Question in knowledge base it will prompt with all such question and ask what the user actually meant. But the problem is when user selects any one of the question some times it matches any of my luis intents there by displaying wrong answer instead of going to QNA maker.
I was available to fix this by assigning such questions to nointents in luis. But i just wanted to know whether this is right approach or something else can be done for this. Because it will be pain to actually sit and assign all such possible questions to nointents.
If some one else has approached this in different, please educate me with your approach.
Thanks in advance