Skip to content

Commit

Permalink
move to vosk
Browse files Browse the repository at this point in the history
move from pocketsphinx to vosk

companion to OpenVoiceOS/ovos-dinkum-listener#113
  • Loading branch information
JarbasAl authored May 30, 2024
1 parent f8959bc commit ebedfe0
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions ovos_config/mycroft.conf
Original file line number Diff line number Diff line change
Expand Up @@ -547,21 +547,21 @@
"listen": true
},
// 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
}
},
Expand Down

0 comments on commit ebedfe0

Please sign in to comment.