我正在尝试使用LUIS构建一个机器人,但它比我想象的要困难得多。 到目前为止,我已设法创建我的LUIS应用程序并创建意图和实体,我创建了一些似乎工作正常的话语
然后我创建了我的机器人,并将它连接到路易斯。当我测试我的机器人时,它按预期工作。 现在是有趣的部分。我想处理参数。在路易斯我添加了一个动作到我的意图:
如您所见,我添加了提示。 我机器人中的代码目前看起来像这样:
/// <summary>
/// Tries to find the category
/// </summary>
/// <param name="result">The Luis result</param>
/// <param name="alarm"></param>
/// <returns></returns>
public string TryFindCategory(LuisResult result)
{
// Variable for the title
EntityRecommendation title;
// If we find our enenty, return it
if (result.TryFindEntity(PiiiCK.Category, out title))
return title.Entity;
// Default fallback
return null;
}
[LuisIntent("Choose category")]
public async Task ChooseCategory(IDialogContext context, LuisResult result)
{
// Get our category
var category = TryFindCategory(result);
var response = "The category you have chosen is not in the system just yet.";
switch (category)
{
case "camera":
response = $"You need help buying a { category }, is this correct?";
this.started = true;
break;
default:
if (!string.IsNullOrEmpty(category)) response = $"Sorry, PiiiCK does not deal with { category.Pluralise() } just yet.";
break;
}
// Post our response back to the user
await context.PostAsync(response);
// Execute the message recieved delegate
context.Wait(MessageReceived);
}
我想你可以猜到我要去哪里。如果用户输入帮我购买相机,则会选择选择类别意图,并选择正确的实体。 但是,如果他们输入帮我购买,它仍然会转到正确的意图,但它没有选定的实体。我希望我的机器人看到并使用我在LUIS中创建的提示中的文字,当用户选择实体时,我希望它返回LUIS参数。
我不知道如何做到这一点,我无法找到相关的任何教程。 任何帮助将不胜感激(甚至链接!)
答案 0 :(得分:1)
首先,您需要确保在包含类别的话语中,您将它们标记为类别实体。这可以通过选择代表您的实体的单词/单词然后在提交您的话语之前单击实际类别来完成。
这与您添加的操作参数无关。要检查操作参数,您需要浏览实际意图。 IntentRecommendation有一个Actions集合属性;其中包含Parameters集合属性。
要添加的内容是,在develop分支中,BotFramework团队刚刚添加了对LUIS v2 API的支持,并添加了一些全新的功能。
例如,如果您的意图需要参数并且未提供参数,那么现在LuisDialog将起作用。在那种情况下(看起来是你的),LuisDialog将automatically launch一个LuisActionDialog,并使用您在action参数中定义的提示消息向用户询问缺少的参数。
请注意,这尚未作为Nuget包发布。