Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pkg/providers/antigravity_provider.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ const (
antigravityDefaultModel = "gemini-3-flash"
antigravityUserAgent = "antigravity"
antigravityXGoogClient = "google-cloud-sdk vscode_cloudshelleditor/0.1"
antigravityVersion = "1.15.8"
antigravityVersion = "1.25.0"
)
Comment on lines 21 to 25
Copy link

Copilot AI Apr 4, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

antigravityVersion is only used for the Chat request’s User-Agent header, but other Antigravity API calls in this file (e.g., FetchAntigravityProjectID and FetchAntigravityModels) still send User-Agent: antigravity without a version. Given the API gates features/models based on the antigravity/<version> User-Agent, these endpoints may remain blocked or behave inconsistently. Consider centralizing a single versioned User-Agent value and using it for all Antigravity HTTP requests in this provider.

Copilot uses AI. Check for mistakes.

// AntigravityProvider implements LLMProvider using Google's Cloud Code Assist (Antigravity) API.
Expand Down
Loading