From a0459cde8aadbc2358a35f058d534bae4c88237b Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Fri, 8 May 2026 15:47:31 +0100 Subject: [PATCH] test: use gemini 3.1 in live switch --- src/agents/google-gemini-switch.live.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/agents/google-gemini-switch.live.test.ts b/src/agents/google-gemini-switch.live.test.ts index 95379aba60a..efc275c4d16 100644 --- a/src/agents/google-gemini-switch.live.test.ts +++ b/src/agents/google-gemini-switch.live.test.ts @@ -10,7 +10,7 @@ const LIVE = isLiveTestEnabled(["GEMINI_LIVE_TEST"]); const describeLive = LIVE && GEMINI_KEY ? describe : describe.skip; describeLive("gemini live switch", () => { - const googleModels = ["gemini-3-pro-preview", "gemini-2.5-pro"] as const; + const googleModels = ["gemini-3.1-pro-preview", "gemini-2.5-pro"] as const; for (const modelId of googleModels) { it(`handles unsigned tool calls from Antigravity when switching to ${modelId}`, async () => {