【发布时间】:2020-04-20 09:34:27
【问题描述】:
我正在开发一个基于 C# Core-Bot 示例的机器人。
如何添加 QnA Maker 实例?如果 Intent 为“none”,则应调用它。
谢谢
编辑:
switch (topIntent)
{
case "None":
//connect with QnA Maker
return await stepContext.BeginDialogAsync(nameof(QnADialog), topIntent, cancellationToken);
QnADialog 应该是什么样子?
【问题讨论】:
标签: c# botframework chatbot azure-language-understanding qnamaker