I have currently integrated LUIS with my chatbot. The scenario is:-
- User types in something in bot.
- The bot logic calls LUIS to determine the Intent and based on INTENT respective dialog is called.
- In the dialog, I am gathering user information using waterfall dialog through prompts.
What i want now is, After step 2 in above scenario, depending on INTENT returned from LUIS, I want the follow-up questions to be presented from QnA rather than the BOT. Basically, I want to replace waterfall steps with QnA maker. Is it okay to do so or is it feasible?
The flow is something like described below:- USER:-Create task
-->>>>Intent returned from LUIS
-->>>>Call QnA based on INTENT returned
QnA:-In which project would you like to create task?
USER:- (provides project name)
QnA:- What is the description of the task?
USER:- (provides description)