kalliope-project / kalliope

Kalliope is a framework that will help you to create your own personal assistant.
https://kalliope-project.github.io/
GNU General Public License v3.0
1.71k stars 230 forks source link

Add hooks for start/stop STT processing #688

Closed joshuaboniface closed 1 year ago

joshuaboniface commented 1 year ago

I find it very useful to know via hook feedback when my Kalliope actually stops listening (i.e. the microphone is no longer actively recording) and when STT starts processing, especially since with some STT providers this latter step can take some amount of time.

This alters the behaviour of the old on_stop_listening hook to fire inside the STT Utils when the listener actually stops listening and the callback is fired, and then adds two new hooks around said callback: on_start_stt_processing and on_stop_stt_processing. These are optional like most others, but could be used if desired.

With this new setup, the on_start_listening/on_stop_listening only fire when the microphone is in use by the STT library; I can't see a good reason why this wouldn't happen, but am open to feedback if there is a better place to put these.

joshuaboniface commented 1 year ago

Should be good now, new tests passing successfully.

Sispheor commented 1 year ago

Thx

joshuaboniface commented 1 year ago

Glad to help!