1

我正在使用 Microsoft Bot Framework 使用 LuisDialog 创建一个非常简单的机器人。但是我不断收到 System.Collections.Generic.KeyNotFoundException。

这是我的控制器:

public async Task<HttpResponseMessage> Post([FromBody]Activity activity)
{
    if (activity.Type == ActivityTypes.Message)
    {
        await Conversation.SendAsync(activity, () => new QuotesDialog());
    }
    else
    {
        HandleSystemMessage(activity);
    }
    var response = Request.CreateResponse(HttpStatusCode.OK);
    return response;
}

这是我的对话框:

[Serializable]
[LuisModel("MyModelIdGoesHere", "MySubscriptionKeyGoesHere")]
public class QuotesDialog : LuisDialog<object>
{
    [LuisIntent("CheckQuote")]
    public async Task CheckQuote(IDialogContext context, LuisResult result)
    {
        await context.PostAsync("Hello you!");
        context.Wait(MessageReceived);
    }

    [LuisIntent("None")]
    public async Task None(IDialogContext context, LuisResult result)
    {
        await context.PostAsync("I'm sorry. I didn't get that.");
        context.Wait(MessageReceived);
    }
}

如果我使用较旧版本的 Bot Framework,例如 3.0.0,我会收到以下错误:500 InternalServerError { "message": "An error has occurred." }

但是,如果我更新到最新的稳定版本(3.2.1),则会收到以下类型为“System.Collections.Generic.KeyNotFoundException”的错误:

“例外:System.Collections.Generic.KeyNotFoundException:给定的键不在字典中。在 Microsoft.Bot.Builder.Dialogs.LuisDialog 的 System.Collections.Generic.Dictionary2.get_Item(TKey key)”

完整的堆栈跟踪在这里:

http://pastebin.com/uLJF5fcV

我尝试在另一个解决方案上创建一个新项目,但我得到了同样的错误。我尝试通过 nuget 安装不同版本的 Bot Framework,但就像我之前所说的那样,无论如何我仍然会收到错误消息。到目前为止,我对 Bot Framework 的经验非常少,所以我真的不知道还能尝试什么。

4

1 回答 1

4

您可以再次尝试在 None 方法之上添加以下内容吗?

[LuisIntent("")]

您看到的错误通常发生在 LuisDialog 无法根据收到的消息解析要执行的方法(意图)时。

当 LuisDialog 寻找空的意图时,我怀疑这里提出了这个问题。

handler = this.handlerByIntent[string.Empty];
于 2016-10-18T15:21:22.627 回答