【发布时间】:2018-02-15 09:33:07
【问题描述】:
在我的 LUIS 仪表板中,当前有 6 个已注册的端点命中。有时,来自我自己计算机的连接被视为端点命中,有时我发送给机器人的消息最终会在 Review Endpoint Utterances 下结束。
是什么触发了端点命中和端点话语?此时触发似乎非常随机。
我正在使用 DirectLine 通道通过此本地 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>
【问题讨论】:
标签: botframework azure-language-understanding