diff --git a/ovos_config/mycroft.conf b/ovos_config/mycroft.conf index 1950ebe..18212dc 100644 --- a/ovos_config/mycroft.conf +++ b/ovos_config/mycroft.conf @@ -548,20 +548,20 @@ }, // default wakeup word to take ovos out of SLEEPING mode, "wake_up": { - "module": "ovos-ww-plugin-pocketsphinx", - "phonemes": "W EY K . AH P", - "threshold": 1e-20, - "lang": "en-us", - "wakeup": true, - "fallback_ww": "wake_up_vosk" - }, - // in case pocketsphinx plugin is not installed, attempt to use vosk - "wake_up_vosk": { "module": "ovos-ww-plugin-vosk", "rule": "fuzzy", "samples": ["wake up"], "lang": "en-us", // makes this a wakeup word for usage in SLEEPING mode + "wakeup": true, + "fallback_ww": "wake_up_pocketsphinx" + }, + // in case vosk plugin is not installed, attempt to use pocketsphinx + "wake_up_pocketsphin": { + "module": "ovos-ww-plugin-pocketsphinx", + "phonemes": "W EY K . AH P", + "threshold": 1e-20, + "lang": "en-us", "wakeup": true } },