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?