Skip to content

Commit 67c75b5

Browse files
authored
Add Gemini 3.5 Flash and 3.1 Flash-Lite to Gemini workflow block (#2355)
Adds two new model options to GEMINI_MODELS in the v3 block: - gemini-3.5-flash (just released) - gemini-3.1-flash-lite-preview Both are marked as supporting thinking_level and native code execution to match the rest of the Gemini 3.x family. Following the convention established when Gemini 3 Flash Preview was added (#1910), only the v3 block is updated.
1 parent a593cb7 commit 67c75b5

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

  • inference/core/workflows/core_steps/models/foundation/google_gemini

inference/core/workflows/core_steps/models/foundation/google_gemini/v3.py

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,24 @@
5050
}
5151

5252
GEMINI_MODELS = [
53+
{
54+
"id": "gemini-3.5-flash",
55+
"name": "Gemini 3.5 Flash",
56+
"supports_thinking_level": True,
57+
"supports_native_code_execution": True,
58+
},
5359
{
5460
"id": "gemini-3.1-pro-preview",
5561
"name": "Gemini 3.1 Pro",
5662
"supports_thinking_level": True,
5763
"supports_native_code_execution": True,
5864
},
65+
{
66+
"id": "gemini-3.1-flash-lite-preview",
67+
"name": "Gemini 3.1 Flash-Lite",
68+
"supports_thinking_level": True,
69+
"supports_native_code_execution": True,
70+
},
5971
{
6072
"id": "gemini-3-pro-preview",
6173
"name": "Gemini 3 Pro",

0 commit comments

Comments
 (0)