在QnA Maker API中,如果找不到结果,它将返回一些默认消息,或者我们可以更改该消息,但是我想在没有结果的情况下运行函数/方法。下面是代码。
public QnaDialog(): base(
new QnAMakerService(new QnAMakerAttribute(ConfigurationManager.AppSettings["QnaSubscriptionKey"],
ConfigurationManager.AppSettings["QnaKnowledgebaseId"], "Hmm, I wasn't able to find any relevant content. Can you try asking in a different way? or try with typing help.", 0.5)))
{
//this is what i want to call, this is working but **i am not able to get query text here**
SendEmail email = new SendEmail();
email.SendEmailtoAdmin("Query_Text", "Email ID");
}
最佳答案
看看GitHub上的QnaMakerDialog实现here。
您将看到有几种选择,更容易的是重写Qna搜索后调用的DefaultWaitNextMessageAsync
方法。
protected virtual async Task DefaultWaitNextMessageAsync(IDialogContext context, IMessageActivity message, QnAMakerResults result)
{
if (result.Answers.Count == 0)
{
// Here you have the query text in message.Text so:
SendEmail email = new SendEmail();
email.SendEmailtoAdmin(message.Text, "Email ID");
}
context.Done(true);
}
请注意,如果要避免发送有关未找到Qna的消息,则应改写MessageReceivedAsync并更改块
if (sendDefaultMessageAndWait)
中的代码