Merge pull request #2995 from pipecat-ai/mb/fix-stt-mute-filter-stt-muting

fix: STTMuteFilter no longer sends STTMuteFrame
This commit is contained in:
Mark Backman
2025-11-06 14:35:07 -05:00
committed by GitHub
3 changed files with 14 additions and 30 deletions

View File

@@ -66,6 +66,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`.