在 Dialogflow 中无需用户输入即可触发下一个意图
Triggering next intent without user input in Dialogflow
我正在使用 Dialogflow 构建我的第一个聊天机器人。在我的聊天会话中,我想从一个意图转到另一个意图,而中间没有用户输入。这可以在 Imgur.
上的这张图片中看到
目前的聊天布局可以看到here。
我应该从直接显示视频或文章转移到 "allright has your car..." 而无需任何用户输入,但我似乎做不到。我该如何解决这个问题?
我试过使用 in 和 output 上下文,但这似乎不起作用。
提前致谢!
Events can be triggered through Dialogflow fulfillment or the
detect intent API. These events can be handled in your Dialogflow agent or in fulfillment.
在此处查看文档:Dialogflow Events
这意味着您需要以编程方式执行此操作
我正在使用 Dialogflow 构建我的第一个聊天机器人。在我的聊天会话中,我想从一个意图转到另一个意图,而中间没有用户输入。这可以在 Imgur.
上的这张图片中看到目前的聊天布局可以看到here。
我应该从直接显示视频或文章转移到 "allright has your car..." 而无需任何用户输入,但我似乎做不到。我该如何解决这个问题?
我试过使用 in 和 output 上下文,但这似乎不起作用。
提前致谢!
Events can be triggered through Dialogflow fulfillment or the detect intent API. These events can be handled in your Dialogflow agent or in fulfillment.
在此处查看文档:Dialogflow Events
这意味着您需要以编程方式执行此操作