RecognizerResult interface

从识别器返回的值。

属性

alteredText

如果原始文本被拼写等内容更改,则更改的版本。

entities

(可选)识别的实体。

intents

为言语识别的意向。

text

发送到识别器的话语

属性详细信息

alteredText

如果原始文本被拼写等内容更改,则更改的版本。

alteredText?: string

属性值

string

entities

(可选)识别的实体。

entities?: any

属性值

any

intents

为言语识别的意向。

intents: Record<string, IntentScore>

属性值

Record<string, IntentScore>

注解

返回意向名称到具有分数的对象映射。

text

发送到识别器的话语

text: string

属性值

string