我正在使用Diagflow来构建Google Assistant应用。
我想做一些看起来很简单的事情-但是我很努力,因为找不到带有工作示例的相关文档
我只想使用一些文本-并在同一输出中播放音频文件。
我可以在此处查看有关在Google上执行操作的文档: https://developers.google.com/actions/tools/sound-library/ //使用Google动作
function playAudio(assistant) {
let text_to_speech = '<speak>'
+ 'I can play a sound'
+ '<audio src="https://actions.google.com/sounds/v1/alarms/digital_watch_alarm_long.ogg">a digital watch alarm</audio>. '
+ '</speak>'
assistant.tell(text_to_speech);
};
但是我似乎看不到如何通过Diagflow做到这一点?
有什么想法吗?