fix: STTMuteFilter no longer sends STTMuteFrame

This commit is contained in:
Mark Backman
2025-11-06 11:38:28 -05:00
parent 9f2ddcc5f4
commit f6b6aa8766
3 changed files with 14 additions and 30 deletions

View File

@@ -58,6 +58,13 @@ reason")`.
### Changed
- `STTMuteFilter` no longer sends `STTMuteFrame` to the STT service. The filter
now blocks frames locally without instructing the STT service to stop
processing audio. This prevents inactivity-related errors (such as 409 errors
from Google STT) while maintaining the same muting behavior at the application
level. Important: The STTMuteFilter should be placed _after_ the STT service
itself.
- Bumped the `fastapi` dependency's upperbound to `<0.122.0`.
- Updated the default model for `GoogleVertexLLMService` to `gemini-2.5-flash`.