我正在尝试通知我的客户,然后再将其转移到后续意图中。我可以单独调用每个意图,当我打电话给Injured时,它会将我带到“发送护理包”的意图,但它从未回复“我很抱歉听到”文字。我也尝试过conv.close()但是在转发到第二个意图之前我无法说出来。
我正在使用action-on-google-nodejs包
app.intent('Injured', conv => {
conv.ask("I'm sorry to hear that")
conv.followup('event2')
})
app.intent('Send Care Package', conv => {
//send care package
conv.close("I'm sending you a care package")
})
答案 0 :(得分:1)
使用Dialogflow(以前称为API.AI)可以做到这一点。您必须使用响应创建用户意图,然后在之后触发您的下一个(后续)响应。