We are using BasicQnAMakerDialog (Azure QnA template) for a QnA bot. It can handle most questions, however when certain questions are asked, there is no reply (not even the default message: No good match found). The bot just hangs.
Scenario:
User: Hello
Bot: Hi
User: Can i do a booking
Bot:
(no reply, nothing!)
Code:
BasicQnAMakerDialog() : base(new QnAMakerService(newQnAMakerAttribute(RootDialog.GetSetting("QnAAuthKey"),Utils.GetAppSetting("QnAKnowledgebaseId"), "", 0, 5,Utils.GetAppSetting("QnAEndpointHostName"))))
Any idea whats wrong?
Can i do a booking
– Nicolas RRespondFromQnAMakerResultAsync
method and check if you can get the matched answer. Or you can use fiddler to capture and monitor traffic to check if the request is sent from QnAMakerDialog as expected. – Fei Han