Replies: 2 comments
-
Additional Fix Required: Antigravity VersionI confirmed this issue locally with pi v0.55.0. Adding the model IDs alone is not sufficient. Root CauseThe With the old version header, the API returns: Fix RequiredIn // From:
const DEFAULT_ANTIGRAVITY_VERSION = "1.15.8";
// To:
const DEFAULT_ANTIGRAVITY_VERSION = "1.107.0";Or better, make it dynamically read from Workaround (for users)Set the environment variable: PI_AI_ANTIGRAVITY_VERSION=1.107.0 pi --provider google-antigravity --model gemini-3.1-pro-highVerified Working ModelsAfter applying both fixes (model IDs + version):
Deprecated (API returns error):
|
Beta Was this translation helpful? Give feedback.
-
|
I independently ran into the same issue and have a working fix ready. PR: #1691 (auto-closed due to first-time contributor gate — happy to reopen once approved) Branch: Changes (3 files, +59 lines)
TestingVerified both models return 200 OK from the sandbox API. Tested in production (OpenClaw) for several days — reasoning, tool use, and streaming all work correctly. Existing models (
|
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Antigravity is deprecating
gemini-3-pro-high/gemini-3-pro-lowin favor ofgemini-3-1-pro-high/gemini-3-1-pro-low.These new model IDs are missing from
models.generated.jsunder thegoogle-antigravityprovider, causing downstream tools to show them as
missing.Please add catalog entries mirroring the existing
gemini-3-pro-high/gemini-3-pro-lowentries with the updated
3-1IDs.Beta Was this translation helpful? Give feedback.
All reactions