找了一会儿,我没有找到合适的答案。
我目前正在 Dialogflow 中构建代理。该代理将集成在网页中(因此它既不是 Facebook Messenger,也不是 Google Assistant 的一部分)。该代理应该根据用户正在寻找的内容将用户重定向到网站的特定页面。
我想知道我应该在我的内联编辑器中输入什么类型的代码以获得一个意图答案,该答案将自动执行在浏览器的新窗口/选项卡中打开 URL 的操作。
它会是这样的:
User: "Hi, I would like the list of red bikes that are available in your shop"
Bot reply: "OK, here you have the list of all the red bikes we have in stock".
-> Then the bot open the page with the red bikes in a new tab/window.
我认为这部分代码应该插入到下面的块中,但是我是初学者,所以我不确定我的方法是否正确:
function userNeed(agent) {
// code that would open the URL
}
intentMap.set('User Need', userNeed);
如果这样的操作不可用,有没有办法将 URL 作为可点击的超链接包含在机器人答案中?
希望它足够清楚。非常感谢。