Skip to content

Commit 4e95eb7

Browse files
committed
Add new supported github-copilot models to builtin conf
1 parent 349a005 commit 4e95eb7

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Changelog
22

33
## Unreleased
4+
- Add new OpenAI and Gemini models to Github config.
45

56
## 0.79.1
67

integration-test/integration/initialize_test.clj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,12 @@
2121
"github-copilot/claude-opus-4.1"
2222
"github-copilot/claude-sonnet-4.5"
2323
"github-copilot/gemini-2.5-pro"
24+
"github-copilot/gemini-3-pro"
2425
"github-copilot/gpt-4.1"
2526
"github-copilot/gpt-4o"
2627
"github-copilot/gpt-5"
2728
"github-copilot/gpt-5-mini"
29+
"github-copilot/gpt-5.1"
2830
"github-copilot/grok-code-fast-1"
2931
"google/gemini-2.0-flash"
3032
"google/gemini-2.5-pro"
@@ -82,10 +84,12 @@
8284
"github-copilot/claude-opus-4.1"
8385
"github-copilot/claude-sonnet-4.5"
8486
"github-copilot/gemini-2.5-pro"
87+
"github-copilot/gemini-3-pro"
8588
"github-copilot/gpt-4.1"
8689
"github-copilot/gpt-4o"
8790
"github-copilot/gpt-5"
8891
"github-copilot/gpt-5-mini"
92+
"github-copilot/gpt-5.1"
8993
"github-copilot/grok-code-fast-1"
9094
"google/gemini-2.0-flash"
9195
"google/gemini-2.5-pro"

src/eca/config.clj

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,12 +65,14 @@
6565
:models {"claude-haiku-4.5" {}
6666
"claude-opus-4.1" {}
6767
"claude-sonnet-4.5" {}
68+
"gpt-5.1" {}
6869
"gpt-5" {}
6970
"gpt-5-mini" {}
7071
"gpt-4.1" {}
7172
"gpt-4o" {}
7273
"grok-code-fast-1" {}
73-
"gemini-2.5-pro" {}}}
74+
"gemini-2.5-pro" {}
75+
"gemini-3-pro" {}}}
7476
"google" {:api "openai-chat"
7577
:url "https://generativelanguage.googleapis.com/v1beta/openai"
7678
:key nil

0 commit comments

Comments
 (0)