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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## Unreleased

- Add support for gpt-5.5 variants

## 0.129.1

- Fix token usage not being reported in the UI for Google/Gemini (and other strict OpenAI-compat providers) by opting into `stream_options.include_usage` on streaming chat completion requests. #414
Expand Down
2 changes: 1 addition & 1 deletion src/eca/config.clj
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@
:outputTruncation {:lines 2000 :sizeKb 50}}
:variantsByModel {".*sonnet[-._]4[-._]6|opus[-._]4[-._][56]" {:variants anthropic-variants}
".*opus[-._]4[-._]7" {:variants anthropic-v2-variants}
".*gpt[-._]5(?:[-._](?:2|4)(?!\\d)|[-._]3[-._]codex)" {:variants openai-variants
".*gpt[-._]5(?:[-._](?:2|4|5)(?!\\d)|[-._]3[-._]codex)" {:variants openai-variants
:excludeProviders ["github-copilot"]}}
:mcpTimeoutSeconds 60
:lspTimeoutSeconds 30
Expand Down
Loading