Uh oh!
There was an error while loading. Please reload this page.
Support audioStreamEnd in send_realtime for realtimeInput - #6508
Closed
guptaishaan wants to merge 1 commit into
Closed
Support audioStreamEnd in send_realtime for realtimeInput#6508guptaishaan wants to merge 1 commit into
guptaishaan wants to merge 1 commit into
Conversation
The Gemini Live API's `send_realtime_input` accepts an `audio_stream_end` parameter (a boolean flag) that forces the model to flush any buffered audio immediately when VAD (voice activity detection) is enabled. This is useful when the client wants to signal the definitive end of an audio stream without waiting for VAD to detect silence. Signed-off-by: Ishaan <ishaangupta0408@gmail.com>
wuliang229
commented
Jul 29, 2026
Collaborator
Hi @guptaishaan. Thanks for the PR. We are reviewing #4490 and will go with that one. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The Gemini Live API's
send_realtime_inputaccepts anaudio_stream_endparameter (a boolean flag) that forces the model to flush any buffered audio immediately when VAD (voice activity detection) is enabled. This is useful when the client wants to signal the definitive end of an audio stream without waiting for VAD to detect silence.This change threads
audio_stream_endsupport through all three relevant layers:LiveRequest(live_request_queue.py): adds anaudio_stream_end: Optional[bool]field alongside the existingactivity_start/activity_endfields, and exposes asend_audio_stream_end()convenience method onLiveRequestQueue.base_llm_flow.py: handles the newaudio_stream_endfield fromLiveRequestby callingllm_connection.send_realtime(True).GeminiLlmConnection.send_realtime(gemini_llm_connection.py): when the input is the booleanTrue, callssession.send_realtime_input(audio_stream_end=True)to forward the signal to the Gemini API.A regression test verifies that calling
send_realtime(True)correctly invokessend_realtime_input(audio_stream_end=True)on the underlying session.Fixes#2887