From d6179708b820da8fd8d3e551792659ccc55f063c Mon Sep 17 00:00:00 2001 From: JarbasAI <33701864+JarbasAl@users.noreply.github.com> Date: Tue, 7 Jan 2025 01:39:13 +0000 Subject: [PATCH] fix:missing messages to forward (#74) --- ovos_gui/namespace.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/ovos_gui/namespace.py b/ovos_gui/namespace.py index 590d07c..75729d3 100644 --- a/ovos_gui/namespace.py +++ b/ovos_gui/namespace.py @@ -461,13 +461,21 @@ def _define_message_handlers(self): def _define_messages_to_forward(self): """Messages from the core bus to be forwarded to GUI clients.""" messages_to_forward = [ + # Core + "ovos.utterance.handled", + "ovos.utterance.cancelled", + "mycroft.skill.handler.start", + "mycroft.skill.handler.complete", + "complete_intent_failure", # Audio Service + "speak", "recognizer_loop:audio_output_start", "recognizer_loop:audio_output_end", # Speech Service "recognizer_loop:sleep", "recognizer_loop:wake_up", "mycroft.awoken", + "recognizer_loop:utterance", "recognizer_loop:wakeword", "recognizer_loop:recognition_unknown", "recognizer_loop:record_begin",