From ad718676959fd08d0c16033f3c21b9aa83bfc56c Mon Sep 17 00:00:00 2001 From: JarbasAI <33701864+JarbasAl@users.noreply.github.com> Date: Thu, 30 May 2024 16:27:33 +0100 Subject: [PATCH] move to vosk (#124) * move to vosk move from pocketsphinx to vosk companion to https://github.com/OpenVoiceOS/ovos-dinkum-listener/pull/113 * Update mycroft.conf --- ovos_config/mycroft.conf | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) 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 } },