Add STTMuteProcessor to un/mute the STT

This commit is contained in:
Mark Backman
2024-11-14 12:50:26 -05:00
parent 534f710f5d
commit 5fe679039c
4 changed files with 213 additions and 1 deletions

View File

@@ -570,6 +570,13 @@ class TTSUpdateSettingsFrame(ServiceUpdateSettingsFrame):
pass
@dataclass
class STTMuteFrame(ControlFrame):
"""Control frame to mute/unmute the STT service."""
muted: bool
@dataclass
class STTUpdateSettingsFrame(ServiceUpdateSettingsFrame):
pass