Skip to content

Commit 406e355

Browse files
committed
Add support for gemini-3-flash-preview model to google provider
Signed-off-by: Arthur Heymans <[email protected]>
1 parent f5d5e4f commit 406e355

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
- Support Google Gemini thought signatures.
66
- Support `gemini-3-pro-preview` model.
7+
- Support `gemini-3-flash-preview` model.
78
- Fix deepseek reasoning with openai-chat API #228
89
- Support `~` in dynamic string parser.
910
- Support removing nullable values from LLM request body if the value in extraPayload is null. #232

integration-test/integration/initialize_test.clj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
"google/gemini-2.0-flash"
3232
"google/gemini-2.5-pro"
3333
"google/gemini-3-pro-preview"
34+
"google/gemini-3-flash-preview"
3435
"openai/gpt-4.1"
3536
"openai/gpt-5"
3637
"openai/gpt-5-codex"

src/eca/config.clj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,8 @@
8383
:requiresAuth? true
8484
:models {"gemini-2.0-flash" {}
8585
"gemini-2.5-pro" {}
86-
"gemini-3-pro-preview" {}}}
86+
"gemini-3-pro-preview" {}
87+
"gemini-3-flash-preview" {}}}
8788
"ollama" {:url "${env:OLLAMA_API_URL:http://localhost:11434}"}}
8889
:defaultBehavior "agent"
8990
:behavior {"agent" {:systemPrompt "${classpath:prompts/agent_behavior.md}"

0 commit comments

Comments
 (0)