Skip to main content
Version: 2.3.0

Wakeup Words

See Wakeup Words for more information.

Wakeup word phrases are often used to start a speech recognition application, and you may want to recognize these and/or filter them out from the recognized result.

To specify a wakeup word phrase, use the wakeup_word parameter:

	"asr": {
"topic": "GEN",
"auto_punctuate": false,
"wakeup_word": "Hey Dragon",
...
}

If you want to specify more than one wakeup word phrase, the value can be a list of strings:

	"asr": {
"topic": "GEN",
"auto_punctuate": false,
"wakeup_word": ["Hey Dragon", "Hey Nuance"],
...
}

To filter out wakeup word phrases from the ASR result, set the filter_wakeup_word parameter to true:

	"asr": {
"topic": "GEN",
"auto_punctuate": false,
"wakeup_word": ["Hey Dragon", "Hey Nuance"],
"filter_wakeup_word": true,
...
}

By default, filter_wakeup_word is false, meaning that any detected wakeup word phrases are included in the final ASR result.