Skip to content

Commit 4815248

Browse files
authored
Merge pull request #236 from ArthurHeymans/GeminiFlash3Preview
Add support for gemini 3 flash preview
2 parents 95e1540 + 6bc6603 commit 4815248

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
- Support for Gemini 3 models in Github-copilot.
66
- Support Google Gemini thought signatures.
77
- Support `gemini-3-pro-preview` model.
8+
- Support `gemini-3-flash-preview` model.
89
- Fix deepseek reasoning with openai-chat API #228
910
- Support `~` in dynamic string parser.
1011
- Support removing nullable values from LLM request body if the value in extraPayload is null. #232

integration-test/integration/initialize_test.clj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
"github-copilot/grok-code-fast-1"
3333
"google/gemini-2.0-flash"
3434
"google/gemini-2.5-pro"
35+
"google/gemini-3-flash-preview"
3536
"google/gemini-3-pro-preview"
3637
"openai/gpt-4.1"
3738
"openai/gpt-5"
@@ -99,6 +100,7 @@
99100
"github-copilot/grok-code-fast-1"
100101
"google/gemini-2.0-flash"
101102
"google/gemini-2.5-pro"
103+
"google/gemini-3-flash-preview"
102104
"google/gemini-3-pro-preview"
103105
"my-custom/bar2"
104106
"my-custom/foo1"

src/eca/config.clj

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,8 @@
8585
:requiresAuth? true
8686
:models {"gemini-2.0-flash" {}
8787
"gemini-2.5-pro" {}
88-
"gemini-3-pro-preview" {}}}
88+
"gemini-3-pro-preview" {}
89+
"gemini-3-flash-preview" {}}}
8990
"ollama" {:url "${env:OLLAMA_API_URL:http://localhost:11434}"}}
9091
:defaultBehavior "agent"
9192
:behavior {"agent" {:systemPrompt "${classpath:prompts/agent_behavior.md}"

0 commit comments

Comments
 (0)