wit.ai 使用 Microsoft Bot Builder

wit.ai with Microsoft Bot Builder

Microsoft Bot 生成器使用 LUIS 对话框作为自然语言处理的唯一选项。 我们可以将 wit.ai 与 Microsoft Bot 生成器一起使用吗?开箱即用吗? 如果答案是否定的,有没有办法我们也可以使用 wit.ai 进行自然语言处理。

谢谢

wit.ai 目前不支持开箱即用。

如果您想自己实现此功能,可以从他们的 HTTP API Documentation 开始。

您没有提到您是将 Bot Builder 用于 Node.JS 还是用于 .NET。对于 Node.JS,LUISRecognizer could be a good starting point to build your own Recognizer. This is useful for natural language understanding that maps well to the "single Intent with Entities" model LUIS uses. The other, more flexible option, is just creating a SimpleDialog 具有调用 wit.ai 的单个处理函数。

欢迎您也为 this related feature request 投票!

祝你好运!

我还处于非常早期的阶段,但你可以看看我的 Wit.ai 与 BotBuilder 的集成

https://github.com/q3blend/BotBuilder-Wit.ai

有一个很好的 NPM 模块可以 Wit.ai 与 Bot Framework for Node 一起使用:botbuilder-wit。但是,由于几个月没有更新,我做了一些更正的分支https://github.com/Joffrey4/botbuilder-wit

对于 .NET 版本,有 BotBuilder-Wit.ai。但是我没有亲自测试过。