1

我正在使用 Google Actions SDK构建一个动作,而对于一个场景,我正在使用一个webhookonEnter我的问题是如何使用 webhook 功能添加建议芯片。

这是我的网络钩子

app.handle('startSceneOnEnter',conv=>{
    conv.add('its the on enter of the scene');   
});

我找不到如何通过对话添加建议芯片,任何帮助都会很棒。

4

1 回答 1

3

可以在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' }));
});
于 2020-12-03T18:05:44.847 回答