我正在使用 Google Actions SDK构建一个动作,而对于一个场景,我正在使用一个webhook。onEnter
我的问题是如何使用 webhook 功能添加建议芯片。
这是我的网络钩子
app.handle('startSceneOnEnter',conv=>{
conv.add('its the on enter of the scene');
});
我找不到如何通过对话添加建议芯片,任何帮助都会很棒。
我正在使用 Google Actions SDK构建一个动作,而对于一个场景,我正在使用一个webhook。onEnter
我的问题是如何使用 webhook 功能添加建议芯片。
这是我的网络钩子
app.handle('startSceneOnEnter',conv=>{
conv.add('its the on enter of the scene');
});
我找不到如何通过对话添加建议芯片,任何帮助都会很棒。
可以在Suggestion
课程中添加建议筹码。
const {Suggestion} = require('@assistant/conversation');
app.handle('startSceneOnEnter', conv => {
conv.add('its the on enter of the scene');
conv.add(new Suggestion({ title: 'My Suggestion' }));
});