我正在建立我的第一个Alexa技能。
我们使用Intent处理程序创建了自定义Alexa技能,以询问一些问题并返回有关我们产品的答案。当用户在两者之间提出通用问题时,是否可以默认将问题重定向到Alexa并保持会话开放以针对定制技能进一步针对产品特定问题
"shouldEndSession": "false"
例如:
Alexa launch myapp - (launch custom skill)
How much does product x cost (Custom intent handler to handle this)
Is Owl nocturnal - (Redirect to get answer for this from Alexa)
How much does product y cost (Custom intent handler to handle this)
谢谢