Skip to content

Commit 660ee53

Browse files
committed
chore: update version to 1.7.1 in package.json and add support for gpt-5.5 in default config
1 parent 93b4559 commit 660ee53

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"$schema": "https://json.schemastore.org/package.json",
33
"name": "@jeffreycao/copilot-api",
4-
"version": "1.7.0",
4+
"version": "1.7.1",
55
"description": "Turn GitHub Copilot into OpenAI/Anthropic API compatible server. Usable with Claude Code Or Codex Or Opencode!",
66
"keywords": [
77
"proxy",

src/lib/config.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,7 @@ const defaultConfig: AppConfig = {
8787
"gpt-5.3-codex": gpt5CommentaryPrompt,
8888
"gpt-5.4-mini": gpt5CommentaryPrompt,
8989
"gpt-5.4": gpt5CommentaryPrompt,
90+
"gpt-5.5": gpt5CommentaryPrompt,
9091
},
9192
smallModel: "gpt-5-mini",
9293
responsesApiContextManagementModels: [],
@@ -95,6 +96,7 @@ const defaultConfig: AppConfig = {
9596
"gpt-5.3-codex": "xhigh",
9697
"gpt-5.4-mini": "xhigh",
9798
"gpt-5.4": "xhigh",
99+
"gpt-5.5": "xhigh",
98100
},
99101
useFunctionApplyPatch: true,
100102
useMessagesApi: true,

0 commit comments

Comments
 (0)