Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Changelog

## Unreleased
- Add missing models supported by Github Copilot

## 0.75.1

Expand Down
8 changes: 8 additions & 0 deletions integration-test/integration/initialize_test.clj
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,15 @@
"anthropic/claude-opus-4-20250514"
"anthropic/claude-sonnet-4-20250514"
"anthropic/claude-sonnet-4-5-20250929"
"github-copilot/claude-haiku-4.5"
"github-copilot/claude-opus-4.1"
"github-copilot/claude-sonnet-4.5"
"github-copilot/gemini-2.5-pro"
"github-copilot/gpt-4.1"
"github-copilot/gpt-4o"
"github-copilot/gpt-5"
"github-copilot/gpt-5-mini"
"github-copilot/grok-code-fast-1"
"google/gemini-2.0-flash"
"google/gemini-2.5-pro"
"openai/gpt-4.1"
Expand Down Expand Up @@ -77,11 +81,15 @@
"anthropic/claude-opus-4-20250514"
"anthropic/claude-sonnet-4-20250514"
"anthropic/claude-sonnet-4-5-20250929"
"github-copilot/claude-haiku-4.5"
"github-copilot/claude-opus-4.1"
"github-copilot/claude-sonnet-4.5"
"github-copilot/gemini-2.5-pro"
"github-copilot/gpt-4.1"
"github-copilot/gpt-4o"
"github-copilot/gpt-5"
"github-copilot/gpt-5-mini"
"github-copilot/grok-code-fast-1"
"google/gemini-2.0-flash"
"google/gemini-2.5-pro"
"my-custom/bar2"
Expand Down
10 changes: 7 additions & 3 deletions src/eca/config.clj
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,15 @@
:url "https://api.githubcopilot.com"
:key nil ;; not supported, requires login auth
:keyEnv nil ;; not supported, requires login auth
:models {"gpt-5" {}
:models {"claude-haiku-4.5" {}
"claude-opus-4.1" {}
"claude-sonnet-4.5" {}
"gpt-5" {}
"gpt-5-mini" {}
"gpt-4.1" {}
"gemini-2.5-pro" {}
"claude-sonnet-4.5" {}}}
"gpt-4o" {}
"grok-code-fast-1" {}
"gemini-2.5-pro" {}}}
"google" {:api "openai-chat"
:url "https://generativelanguage.googleapis.com/v1beta/openai"
:key nil
Expand Down
Loading