在 Gather 结束后说 "one moment"
Say "one moment" after a Gather finishes
我似乎找不到任何关于此的文档,但我想在用户停止说话和语音识别处理器传递他们的单词之间的 Gather 块中说 "one moment"说(因为有趣的是这可能需要几秒钟,同时会导致死气沉沉)。
我似乎在文档中找不到类似的内容。所有示例都适用于:
<Response>
<Gather>
<Say>Voice prompt to read to the user before collection</Say>
<Say>Say more things if you want</Say>
</Gather>
<Say>Something to say if the user doesn't provide feedback</Say>
</Response>
大约 5 秒的死气沉沉并不是最糟糕的事情,但它缺乏润色。
此处为 Twilio 开发人员布道师。
在用户与 <Gather>
and after the speech result is ready and sent to the action
URL 通话结束后,没有任何消息可提供,但我认为您描述的延迟可能有误。
Twilio 将语音流式传输到语音检测服务,因此我们可以获得实时结果(您可以通过设置 partialResultCallback
URL). Instead, the time that elapses between the end of the caller speaking and the action
being called is based on the timeout
默认为 5 秒来获得部分结果。
我建议您为 speechTimout
attribute 尝试不同的值,包括 auto
,其中 "will stop speech recognition when there is a pause in speech and return the results immediately."
如果有帮助请告诉我。
我似乎找不到任何关于此的文档,但我想在用户停止说话和语音识别处理器传递他们的单词之间的 Gather 块中说 "one moment"说(因为有趣的是这可能需要几秒钟,同时会导致死气沉沉)。
我似乎在文档中找不到类似的内容。所有示例都适用于:
<Response>
<Gather>
<Say>Voice prompt to read to the user before collection</Say>
<Say>Say more things if you want</Say>
</Gather>
<Say>Something to say if the user doesn't provide feedback</Say>
</Response>
大约 5 秒的死气沉沉并不是最糟糕的事情,但它缺乏润色。
此处为 Twilio 开发人员布道师。
在用户与 <Gather>
and after the speech result is ready and sent to the action
URL 通话结束后,没有任何消息可提供,但我认为您描述的延迟可能有误。
Twilio 将语音流式传输到语音检测服务,因此我们可以获得实时结果(您可以通过设置 partialResultCallback
URL). Instead, the time that elapses between the end of the caller speaking and the action
being called is based on the timeout
默认为 5 秒来获得部分结果。
我建议您为 speechTimout
attribute 尝试不同的值,包括 auto
,其中 "will stop speech recognition when there is a pause in speech and return the results immediately."
如果有帮助请告诉我。