botframework - 什么被视为端点命中/话语?

标签 botframework azure-language-understanding

在我的 LUIS 仪表板中,当前有 6 个已注册的端点命中。有时,来 self 自己计算机的连接被视为端点命中,有时我发送到机器人的消息最终会出现在查看端点话语下。

什么触发端点命中和端点话语?此时似乎非常随机地触发。

我正在使用 DirectLine channel 通过此本地 HTML 文件访问在 Azure 中运行的机器人:

<!DOCTYPE html>
<html>
  <head>
    <link href="https://cdn.botframework.com/botframework-webchat/latest/botchat.css" rel="stylesheet" />
  </head>
  <body>
    <div id="bot"/>
    <script src="https://cdn.botframework.com/botframework-webchat/latest/botchat.js"></script>
    <script>
      BotChat.App({
        directLine: { secret: direct_line_secret },
        user: { id: 'userid' },
        bot: { id: 'botid' },
        resize: 'detect'
      }, document.getElementById("bot"));
    </script>
  </body>
</html>

最佳答案

端点命中是对 LUIS API 的调用。因此,每次您的机器人使用 LUIS 时,都会发生端点命中。

LUIS 门户中似乎存在一个与此相关的错误,我已经看到我的端点命中率仍然为 0,但我的机器人已成功调用 LUIS。

关于botframework - 什么被视为端点命中/话语?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48803893/

相关文章:

node.js - 提示输入文本而不路由

azure-language-understanding - 将应用程序导入 LUIS 会得到 BadArgument : Labels cannot have two overlapping children of the same parent

facebook - 使用Azure的Facebook Messenger Bot主动/推送通知

azure - 创建Web App Bot时如何选择模板?

facebook - 无法将 Facebook channel 添加到 Microsoft Bot Framework

microsoft-cognitive - 路易斯 : An item with the same key has already been added

c# - 将机器人框架 Luis 与 QnA 作为 Intent 集成,然后在进入 QnA 后重新询问用户

javascript - 更改网络聊天控件中建议操作按钮的字体

azure - 由于资源提供者注册错误,无法创建 Azure Web App 机器人

Azure 机器人在 Web 测试聊天中给出错误 : To continue to run this bot, 请修复机器人源代码