Botframework : redevelop the dialog QnAMakerDialog

489 Views Asked by At

I use sample from Microsoft, i would like to check input , if input =value use my http.get url else call the QnAMakerDialog.

I appreciate your help.

var basicQnAMakerDialog = new builder_cognitiveservices.QnAMakerDialog({
    recognizers: [recognizer],
    defaultMessage: 'No match! Try changing the query terms!', 
    qnaThreshold: 0.3
});

bot.dialog('/', basicQnAMakerDialog);
1

There are 1 best solutions below

3
On

Add a new root dialog to inspect your message, and if "input = value" then apply your own http service otherwise delegate to the QnAMakerDialog by calling it to add it to the dialog stack with beginDialog.