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);
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.