如何使用actions sdk在webhook中添加建议芯片

How to add suggestion chips in webhook with actions sdk

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

这是我的网络钩子

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

我找不到如何在对话中添加建议筹码,任何帮助都将非常有用。

可以用 Suggestion class 添加建议筹码。

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' }));
});