LUIS is normally used as a dispatcher with multiple QnAs or used parallel with QnA or as an (If else) to redirect to a QnA. As also mentioned in link below:
Look use-cases mention in the answer
I want to transfer knowledge from LUIS to QnA:
LUIS: Extracts things like entities and intents from utterances, but in most of the above scenarios what we are transfering are only the utterances but not the information about intents and entities from LUIS.
QnA metadata: metadata filters (Key value pairs) to boost some answers, when we query the qna base afterwards.
Here are my questions:
Is this scenario plausible to transfer not only the session.message or utterance but also entity and intents to the QnA services?
To implement it using metadata for example intent: something and entities: some products , and passing the intents and entities from LUIS to be compared with this metadata in QnA services, is this also reasonable?
If above concepts are wrong, then is there another way to transfer knowledge from LUIS to QnA service? In my little knowledge, LUIS is more intelligent service than QnA and QnA is mostly used as a solid QnA base but if we give control to LUIS, then may be even questions that have different entities or way of presentation but same context can be mapped to desired QnA pair in QnA database.
Finally can someone help me to come up with how to implement this in node.js? if possible you don't have to write code from scratch, just this intent and entity transfer logic from LUIS to metadata of QnA. ofcourse if this logic is feasible.