fix(antigravity): add aicode OAuth scope for voice transcription support - #2361
Open
icarogamatos wants to merge 3 commits into
Open
icarogamatos wants to merge 3 commits into
icarogamatos wants to merge 3 commits into
Conversation
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 Description
When authenticating Google Antigravity accounts through Cockpit Tools, standard text prompts and code assistance work as expected, but the built-in Live Voice Transcription (
streamAudioTranscriptionvia the microphone button orCtrl+Shift+M) fails immediately within ~1 second.Inspecting the Antigravity runtime console logs reveals:
Root Cause
In Cockpit Tools, the Google OAuth authorization URL (
get_auth_url) requested only 6 scopes:openidhttps://www.googleapis.com/auth/cloud-platformhttps://www.googleapis.com/auth/userinfo.emailhttps://www.googleapis.com/auth/userinfo.profilehttps://www.googleapis.com/auth/ccloghttps://www.googleapis.com/auth/experimentsandconfigsAntigravity 2.0+ uses bidirectional gRPC audio streaming with Google's backend API, which strictly requires the Cloud Code AI scope:
https://www.googleapis.com/auth/aicode. Because tokens minted by Cockpit Tools lacked this scope, Google's backend immediately rejected the audio stream withPermissionDenied: Request had insufficient authentication scopes.Changes Made
Added
"https://www.googleapis.com/auth/aicode"to the OAuthscopeslist in:src-tauri/src/modules/oauth.rscrates/cockpit-core/src/modules/oauth.rsVerification
1071006060591-tmhssin2h21lcre235vtolojh4g403ep.apps.googleusercontent.comaccepts and grantshttps://www.googleapis.com/auth/aicode.aicodeincluded in the granted scopes.