gpt4 book ai didi

node.js - 谷歌 SSML 上的操作不起作用

转载 作者:太空宇宙 更新时间:2023-11-03 22:24:24 27 4
gpt4 key购买 nike

在 Google node.js 上运行的

SSML 无法正常工作。它只是告诉值以及 SSML 标记

示例: <speak> Hello <break time="1s"/> All </speak>它只是告诉我们这样的标签“小于说话大于你好小于休息时间等于......”

最佳答案

假设您正在使用 action-on-google npm 包。

您可以引用下面的代码,

// Handle the Dialogflow intent named 'favorite color'.
// The intent collects a parameter named 'color'
app.intent('favorite color', (conv, {color}) => {
const luckyNumber = color.length;
const audioSound = 'https://actions.google.com/sounds/v1/cartoon/clang_and_wobble.ogg';
if (conv.data.userName) {
// If we collected user name previously, address them by name and use SSML
// to embed an audio snippet in the response.
conv.close(`<speak>${conv.data.userName}, your lucky number is ` +
`${luckyNumber}.<audio src="${audioSound}"></audio></speak>`);
} else {
conv.close(`<speak>Your lucky number is ${luckyNumber}.` +
`<audio src="${audioSound}"></audio></speak>`);
}
});

更多详情,您可以查看Google Code Lab

关于node.js - 谷歌 SSML 上的操作不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48704629/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com