Add changelog for #4199

This commit is contained in:
Mark Backman
2026-03-30 10:46:20 -04:00
parent 677ca04a18
commit 2e5e109bb6
2 changed files with 2 additions and 0 deletions

1
changelog/4199.added.md Normal file
View File

@@ -0,0 +1 @@
- Added `VADTurnAnalyzerUserTurnStopStrategy`, a turn stop strategy that triggers immediately when the turn analyzer reports COMPLETE without waiting for STT transcriptions. This reduces end-of-turn latency for speech-to-speech pipelines (e.g. Gemini Live) where audio goes directly to the LLM.

1
changelog/4199.fixed.md Normal file
View File

@@ -0,0 +1 @@
- Fixed `GeminiLiveLLMService` not responding to user speaking events when using local VAD turn management. The service was listening for `VADUserStartedSpeakingFrame`/`VADUserStoppedSpeakingFrame` instead of `UserStartedSpeakingFrame`/`UserStoppedSpeakingFrame`, which are the frames emitted by the user turn controller.