From c5fce3df47302d5ff38b2a0545e30eebb8cfe4f1 Mon Sep 17 00:00:00 2001 From: JarbasAI <33701864+JarbasAl@users.noreply.github.com> Date: Fri, 19 Jan 2024 20:17:48 +0000 Subject: [PATCH] default utterance plugins enable https://github.com/OpenVoiceOS/ovos-utterance-corrections-plugin and https://github.com/OpenVoiceOS/ovos-utterance-plugin-cancel by default if installed --- ovos_config/mycroft.conf | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/ovos_config/mycroft.conf b/ovos_config/mycroft.conf index 79ece76..a2faf3c 100644 --- a/ovos_config/mycroft.conf +++ b/ovos_config/mycroft.conf @@ -123,8 +123,17 @@ // To enable a utterance transformer plugin just add it's name with any relevant config // these plugins can mutate the utterance between STT and the Intent stage // they may also modify message.context with metadata + // plugins only load if they are installed and enabled in this section "utterance_transformers": { - "ovos-utterance-normalizer": {} + + "ovos-utterance-normalizer": {}, + + // cancel utterances mid command + "ovos-utterance-plugin-cancel": {}, + + // define utterance fixes via fuzzy match ~/.local/share/mycroft/corrections.json + // define unconditional replacements at word level ~/.local/share/mycroft/word_corrections.json + "ovos-utterance-corrections-plugin": {} }, // To enable a metadata transformer plugin just add it's name with any relevant config