From aad510a9d558014f393338c6349afb789f5d45de Mon Sep 17 00:00:00 2001 From: diegosouzapw Date: Wed, 25 Mar 2026 19:18:00 -0300 Subject: [PATCH] feat: update Antigravity model list and enable passthrough (#628) - Add Claude Sonnet 4.5, Claude Sonnet 4, GPT 5, GPT 5 Mini - Enable passthroughModels: true so users can access any model Antigravity supports without waiting for registry updates --- open-sse/config/providerRegistry.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/open-sse/config/providerRegistry.ts b/open-sse/config/providerRegistry.ts index 3629356d7d..b5ed82670d 100644 --- a/open-sse/config/providerRegistry.ts +++ b/open-sse/config/providerRegistry.ts @@ -391,11 +391,16 @@ export const REGISTRY: Record = { models: [ { id: "claude-opus-4-6-thinking", name: "Claude Opus 4.6 Thinking" }, { id: "claude-sonnet-4-6", name: "Claude Sonnet 4.6" }, + { id: "claude-sonnet-4-5", name: "Claude Sonnet 4.5" }, + { id: "claude-sonnet-4", name: "Claude Sonnet 4" }, { id: "gemini-2.5-pro", name: "Gemini 2.5 Pro" }, { id: "gemini-2.5-flash", name: "Gemini 2.5 Flash" }, { id: "gemini-2.0-flash", name: "Gemini 2.0 Flash" }, { id: "gpt-oss-120b-medium", name: "GPT OSS 120B Medium" }, + { id: "gpt-5", name: "GPT 5" }, + { id: "gpt-5-mini", name: "GPT 5 Mini" }, ], + passthroughModels: true, }, github: {