fix(google): add Gemini 3.1 Flash Live compatibility - #1186
Closed
swayamg20 wants to merge 2 commits into
Closed
Conversation
🦋 Changeset detectedLatest commit: 0c40602 The changes in this PR will be included in the next version bump. This PR includes changesets to release 22 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
Always send sessionResumption: {} to opt in on first connect.
The previous fix omitted it entirely when no handle existed, creating
a deadlock where the server never enabled resumption tracking.
swayamg20
force-pushed
the
fix/gemini-31-compatibility
branch
from
March 31, 2026 09:19
577e906 to
0c40602
Compare
Contributor
|
Thanks for the work here. I’m taking over this effort in a follow-up PR: #1189. Given the discussion and outcome in Python, we should hold off on the So the current plan is to defer full Gemini 3.1 |
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 free
to 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.
Problem
Two things were broken when using
gemini-3.1-flash-live-previewwith the Live API:pushAudio()was sendingmediaChunks(deprecated) Gemini 3.1 requires theaudiofield directly.generateReply()was usingsendClientContentto trigger generation, Gemini 3.1 rejects this with "Request contains an invalid argument."Additionally, empty
toolsandsessionResumptionfields were being sent in session setup even when unpopulated, causing rejections on stricter model versions.Changes
mediaChunkswithaudiofield inpushAudio()and all related event handlingsendClientContentwithsendRealtimeInput({ text })ingenerateReply()— works across all Live API modelstoolsin session config when there are actual declarationssessionResumptionwhen a handle existsgemini-3.1-flash-live-previewtoLiveAPIModelstypeTesting
Tested against
gemini-3.1-flash-live-previewaudio streaming and reply generation both work correctly.Closes #1179