RecognizerResult interface
認識エンジンから返される値。
プロパティ
altered |
元のテキストがスペルなどによって変更された場合は、変更されたバージョン。 |
entities | (省略可能) エンティティが認識されました。 |
intents | 発話に対して認識される意図。 |
text | 認識エンジンに送信される発話 |
プロパティの詳細
alteredText
元のテキストがスペルなどによって変更された場合は、変更されたバージョン。
alteredText?: string
プロパティ値
string
entities
(省略可能) エンティティが認識されました。
entities?: any
プロパティ値
any
intents
発話に対して認識される意図。
intents: Record<string, IntentScore>
プロパティ値
Record<string, IntentScore>
注釈
スコア付きのオブジェクトへの意図名のマップが返されます。
text
認識エンジンに送信される発話
text: string
プロパティ値
string