From 9b956f6338a31ef264103c82d4bf8878ef07b316 Mon Sep 17 00:00:00 2001 From: hkfires <10558748+hkfires@users.noreply.github.com> Date: Wed, 17 Dec 2025 23:15:15 +0800 Subject: [PATCH 1/2] chore: ignore agent and bmad artifacts --- .dockerignore | 4 +++- .gitignore | 2 ++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/.dockerignore b/.dockerignore index 7bc97fec..6117d7d8 100644 --- a/.dockerignore +++ b/.dockerignore @@ -28,4 +28,6 @@ bin/* .claude/* .vscode/* .serena/* -.bmad/* \ No newline at end of file +.agent/* +.bmad/* +_bmad/* diff --git a/.gitignore b/.gitignore index 14395e6d..8ee4275f 100644 --- a/.gitignore +++ b/.gitignore @@ -31,7 +31,9 @@ GEMINI.md .vscode/* .claude/* .serena/* +.agent/* .bmad/* +_bmad/* # macOS .DS_Store From f27672f6cf8a819ce7aee1f6b94c07073ad326fe Mon Sep 17 00:00:00 2001 From: Luis Pater Date: Thu, 18 Dec 2025 01:02:19 +0800 Subject: [PATCH 2/2] feat(antigravity): add Gemini 3 Flash Preview model definition with enhanced capabilities --- internal/registry/model_definitions.go | 47 +++++++++++++++++++++++++- 1 file changed, 46 insertions(+), 1 deletion(-) diff --git a/internal/registry/model_definitions.go b/internal/registry/model_definitions.go index ca894ba6..d44efc06 100644 --- a/internal/registry/model_definitions.go +++ b/internal/registry/model_definitions.go @@ -242,6 +242,21 @@ func GetGeminiVertexModels() []*ModelInfo { SupportedGenerationMethods: []string{"generateContent", "countTokens", "createCachedContent", "batchGenerateContent"}, Thinking: &ThinkingSupport{Min: 128, Max: 32768, ZeroAllowed: false, DynamicAllowed: true}, }, + { + ID: "gemini-3-flash-preview", + Object: "model", + Created: 1765929600, + OwnedBy: "google", + Type: "gemini", + Name: "models/gemini-3-flash-preview", + Version: "3.0", + DisplayName: "Gemini 3 Flash Preview", + Description: "Our most intelligent model built for speed, combining frontier intelligence with superior search and grounding.", + InputTokenLimit: 1048576, + OutputTokenLimit: 65536, + SupportedGenerationMethods: []string{"generateContent", "countTokens", "createCachedContent", "batchGenerateContent"}, + Thinking: &ThinkingSupport{Min: 128, Max: 32768, ZeroAllowed: false, DynamicAllowed: true}, + }, { ID: "gemini-3-pro-image-preview", Object: "model", @@ -317,7 +332,22 @@ func GetGeminiCLIModels() []*ModelInfo { Name: "models/gemini-3-pro-preview", Version: "3.0", DisplayName: "Gemini 3 Pro Preview", - Description: "Gemini 3 Pro Preview", + Description: "Our most intelligent model with SOTA reasoning and multimodal understanding, and powerful agentic and vibe coding capabilities", + InputTokenLimit: 1048576, + OutputTokenLimit: 65536, + SupportedGenerationMethods: []string{"generateContent", "countTokens", "createCachedContent", "batchGenerateContent"}, + Thinking: &ThinkingSupport{Min: 128, Max: 32768, ZeroAllowed: false, DynamicAllowed: true}, + }, + { + ID: "gemini-3-flash-preview", + Object: "model", + Created: 1765929600, + OwnedBy: "google", + Type: "gemini", + Name: "models/gemini-3-flash-preview", + Version: "3.0", + DisplayName: "Gemini 3 Flash Preview", + Description: "Our most intelligent model built for speed, combining frontier intelligence with superior search and grounding.", InputTokenLimit: 1048576, OutputTokenLimit: 65536, SupportedGenerationMethods: []string{"generateContent", "countTokens", "createCachedContent", "batchGenerateContent"}, @@ -389,6 +419,21 @@ func GetAIStudioModels() []*ModelInfo { SupportedGenerationMethods: []string{"generateContent", "countTokens", "createCachedContent", "batchGenerateContent"}, Thinking: &ThinkingSupport{Min: 128, Max: 32768, ZeroAllowed: false, DynamicAllowed: true}, }, + { + ID: "gemini-3-flash-preview", + Object: "model", + Created: 1765929600, + OwnedBy: "google", + Type: "gemini", + Name: "models/gemini-3-flash-preview", + Version: "3.0", + DisplayName: "Gemini 3 Flash Preview", + Description: "Our most intelligent model built for speed, combining frontier intelligence with superior search and grounding.", + InputTokenLimit: 1048576, + OutputTokenLimit: 65536, + SupportedGenerationMethods: []string{"generateContent", "countTokens", "createCachedContent", "batchGenerateContent"}, + Thinking: &ThinkingSupport{Min: 128, Max: 32768, ZeroAllowed: false, DynamicAllowed: true}, + }, { ID: "gemini-pro-latest", Object: "model",