未知插槽类型
Unknown Slot types
我刚刚开始研究制作基本的 Alexa 技能。
我想创建一种重复用户所说内容的技能。例如 "Alexa, repeat 'hello'"。
由于我不知道用户会说什么,我会使用哪种类型的问候语?
谢谢
@Josep Valls 回答错误:
- Amazon.LITERAL Slot-Type 仍然可以使用。亚马逊计划将其删除,但由于开发人员的反馈而撤销了该决定。 Here 是文档。
- 即使没有文字类型,您也可以捕捉到用户所说的一切。这包括未预定义的值。引用 this:
"When you create a custom slot type, a key concept to understand is
that this is training data for Alexa’s NLP (natural language
processing). The values you provide are NOT a strict enum or array
that limit what the user can say. This has two implications 1) words
and phrases not in your slot values will be passed to you, 2) your
code needs to perform any validation you require if what’s said is
unknown."
我刚刚开始研究制作基本的 Alexa 技能。
我想创建一种重复用户所说内容的技能。例如 "Alexa, repeat 'hello'"。
由于我不知道用户会说什么,我会使用哪种类型的问候语?
谢谢
@Josep Valls 回答错误:
- Amazon.LITERAL Slot-Type 仍然可以使用。亚马逊计划将其删除,但由于开发人员的反馈而撤销了该决定。 Here 是文档。
- 即使没有文字类型,您也可以捕捉到用户所说的一切。这包括未预定义的值。引用 this:
"When you create a custom slot type, a key concept to understand is that this is training data for Alexa’s NLP (natural language processing). The values you provide are NOT a strict enum or array that limit what the user can say. This has two implications 1) words and phrases not in your slot values will be passed to you, 2) your code needs to perform any validation you require if what’s said is unknown."