根据 QnAMaker 中的输入对结果进行排名
Ranked results based on the input in QnAMaker
使用 Bot Framework SDK v-3,我能够根据建议的关键字获得匹配问题列表 action/cards,就像这样-
现在,我使用的是使用中间件概念的预发布版本SDK v-4。所以我在 Startup.cs-
中做了类似的事情
services.AddBot<QnABot>(options =>
{
options.CredentialProvider = new ConfigurationCredentialProvider(Configuration);
var endpoint = new QnAMakerEndpoint
{
KnowledgeBaseId = kbId,
// Get the Host from the HTTP request example at https://www.qnamaker.ai
// For GA services: https://<Service-Name>.azurewebsites.net/qnamaker
// For Preview services: https://westus.api.cognitive.microsoft.com/qnamaker/v2.0
Host = hostURL,
EndpointKey = endpointKey
};
var qnaOptions = new QnAMakerMiddlewareOptions();
qnaOptions.Top = 5;
options.Middleware.Add(new QnAMakerMiddleware(endpoint, qnaOptions));
});
我只得到第一个匹配问题的答案作为聊天输出window,但没有得到作为建议操作卡供用户选择的匹配问题。我曾经有一个从 SDK v-3 中的 QnAMakerDialog 继承的单独对话框以及用于管理我的对话流的覆盖函数。我不确定现在如何在中间件中管理它,因为我从文档中得到的只是这个 - QnAMaker with bot framework SDK v-4
请问有什么帮助吗?
我发现这个 github 问题中报告了同样的问题:"Ability to get ranked results based on the input does not work",正如 JonathanFingold 所建议的,我们可以在机器人代码中使用 QnA maker 服务,然后发送不同的响应 activity 根据 QnA maker 服务返回的匹配问题的数量给用户。
此外,如果您希望像 Bot Framework SDK v3 中那样显示多个选项,您可以动态生成一张英雄卡片来显示建议的选项。您可以参考以下示例代码使用英雄卡片显示建议选项。
var results = await QnA.GetAnswers(text);
switch (results.Length)
{
case 0:
await context.SendActivity($"I have no topics in the FAQ for '{text}'.");
await context.SendActivity("Ask me a question.");
break;
case 1:
await context.SendActivity(results[0].Answer);
break;
default:
//var options = MessageFactory.SuggestedActions(
// results.Select(r => r.Questions[0]).ToList(), "Did you mean:");
//options.SuggestedActions.Actions.Add(None);
//show options using HeroCard
var options = results.Select(r => r.Questions[0]).ToList();
var herocard = new HeroCard();
herocard.Text = "Did you mean:";
List<CardAction> buttons = new List<CardAction>();
foreach (var item in options)
{
buttons.Add(new CardAction()
{
Type = ActionTypes.ImBack,
Title = item.ToString(),
Value = item.ToString()
});
}
buttons.Add(new CardAction()
{
Type = ActionTypes.ImBack,
Title = "None of the above.",
Value = "None of the above."
});
herocard.Buttons = buttons;
var response = context.Activity.CreateReply();
response.Attachments = new List<Attachment>() { herocard.ToAttachment() };
await context.SendActivity(response);
break;
}
测试结果:
使用 Bot Framework SDK v-3,我能够根据建议的关键字获得匹配问题列表 action/cards,就像这样-
现在,我使用的是使用中间件概念的预发布版本SDK v-4。所以我在 Startup.cs-
中做了类似的事情services.AddBot<QnABot>(options =>
{
options.CredentialProvider = new ConfigurationCredentialProvider(Configuration);
var endpoint = new QnAMakerEndpoint
{
KnowledgeBaseId = kbId,
// Get the Host from the HTTP request example at https://www.qnamaker.ai
// For GA services: https://<Service-Name>.azurewebsites.net/qnamaker
// For Preview services: https://westus.api.cognitive.microsoft.com/qnamaker/v2.0
Host = hostURL,
EndpointKey = endpointKey
};
var qnaOptions = new QnAMakerMiddlewareOptions();
qnaOptions.Top = 5;
options.Middleware.Add(new QnAMakerMiddleware(endpoint, qnaOptions));
});
我只得到第一个匹配问题的答案作为聊天输出window,但没有得到作为建议操作卡供用户选择的匹配问题。我曾经有一个从 SDK v-3 中的 QnAMakerDialog 继承的单独对话框以及用于管理我的对话流的覆盖函数。我不确定现在如何在中间件中管理它,因为我从文档中得到的只是这个 - QnAMaker with bot framework SDK v-4 请问有什么帮助吗?
我发现这个 github 问题中报告了同样的问题:"Ability to get ranked results based on the input does not work",正如 JonathanFingold 所建议的,我们可以在机器人代码中使用 QnA maker 服务,然后发送不同的响应 activity 根据 QnA maker 服务返回的匹配问题的数量给用户。
此外,如果您希望像 Bot Framework SDK v3 中那样显示多个选项,您可以动态生成一张英雄卡片来显示建议的选项。您可以参考以下示例代码使用英雄卡片显示建议选项。
var results = await QnA.GetAnswers(text);
switch (results.Length)
{
case 0:
await context.SendActivity($"I have no topics in the FAQ for '{text}'.");
await context.SendActivity("Ask me a question.");
break;
case 1:
await context.SendActivity(results[0].Answer);
break;
default:
//var options = MessageFactory.SuggestedActions(
// results.Select(r => r.Questions[0]).ToList(), "Did you mean:");
//options.SuggestedActions.Actions.Add(None);
//show options using HeroCard
var options = results.Select(r => r.Questions[0]).ToList();
var herocard = new HeroCard();
herocard.Text = "Did you mean:";
List<CardAction> buttons = new List<CardAction>();
foreach (var item in options)
{
buttons.Add(new CardAction()
{
Type = ActionTypes.ImBack,
Title = item.ToString(),
Value = item.ToString()
});
}
buttons.Add(new CardAction()
{
Type = ActionTypes.ImBack,
Title = "None of the above.",
Value = "None of the above."
});
herocard.Buttons = buttons;
var response = context.Activity.CreateReply();
response.Attachments = new List<Attachment>() { herocard.ToAttachment() };
await context.SendActivity(response);
break;
}
测试结果: