@dianshuv/copilot-api 0.20.4 → 0.20.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -67,7 +67,7 @@ make down
67
67
 
68
68
  ### Hidden Models
69
69
 
70
- By default the proxy hides 34 stale / duplicate / unused upstream model ids from
70
+ By default the proxy hides 36 stale / duplicate / unused upstream model ids from
71
71
  its **listing surfaces** (`/v1/models` and the startup banner).
72
72
 
73
73
  **Important**: this is a *display* filter only. The remaining POST endpoints
@@ -85,9 +85,9 @@ Currently hidden (grouped):
85
85
  - **Legacy GPT** — `gpt-3.5-turbo`, `gpt-3.5-turbo-0613`, `gpt-4`, `gpt-4-0613`, `gpt-4-0125-preview`
86
86
  - **GPT-4o family** — `gpt-4o`, `gpt-4o-mini`, `gpt-4-o-preview`, `gpt-4o-2024-05-13`, `gpt-4o-2024-08-06`, `gpt-4o-2024-11-20`, `gpt-4o-mini-2024-07-18`
87
87
  - **GPT-4.1 family** — `gpt-4.1`, `gpt-4.1-2025-04-14`, `gpt-41-copilot`
88
- - **Older / smaller GPT-5** — `gpt-5-mini`, `gpt-5.3-codex`, `gpt-5.4`, `gpt-5.4-nano`
88
+ - **Older / smaller GPT-5** — `gpt-5-mini`, `gpt-5.3-codex`, `gpt-5.4`, `gpt-5.4-mini`, `gpt-5.4-nano`
89
89
  - **All embeddings** — `text-embedding-ada-002`, `text-embedding-3-small`, `text-embedding-3-small-inference`
90
- - **Older Gemini** — `gemini-2.5-pro`, `gemini-3-flash-preview`
90
+ - **Older Gemini** — `gemini-2.5-pro`, `gemini-3-flash-preview`, `gemini-3.5-flash`
91
91
  - **Older / variant Claude** — `claude-opus-4.5`, `claude-opus-4.6`, `claude-opus-4.7`, `claude-opus-4.7-high`, `claude-opus-4.7-xhigh`, `claude-sonnet-4.5`, `claude-sonnet-4.6`
92
92
  - **Special-purpose** — `mai-code-1-flash-internal`, `mai-code-1-flash-picker`, `trajectory-compaction`
93
93
 
package/dist/main.mjs CHANGED
@@ -1011,7 +1011,7 @@ const logout = defineCommand({
1011
1011
 
1012
1012
  //#endregion
1013
1013
  //#region package.json
1014
- var version = "0.20.4";
1014
+ var version = "0.20.5";
1015
1015
 
1016
1016
  //#endregion
1017
1017
  //#region src/lib/event-loop-lag.ts
@@ -2450,12 +2450,14 @@ const HIDDEN_MODEL_IDS = new Set([
2450
2450
  "gpt-5-mini",
2451
2451
  "gpt-5.3-codex",
2452
2452
  "gpt-5.4",
2453
+ "gpt-5.4-mini",
2453
2454
  "gpt-5.4-nano",
2454
2455
  "text-embedding-ada-002",
2455
2456
  "text-embedding-3-small",
2456
2457
  "text-embedding-3-small-inference",
2457
2458
  "gemini-2.5-pro",
2458
2459
  "gemini-3-flash-preview",
2460
+ "gemini-3.5-flash",
2459
2461
  "claude-opus-4.5",
2460
2462
  "claude-opus-4.6",
2461
2463
  "claude-opus-4.7",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dianshuv/copilot-api",
3
- "version": "0.20.4",
3
+ "version": "0.20.5",
4
4
  "description": "Turn GitHub Copilot into OpenAI/Anthropic API compatible server. Usable with Claude Code!",
5
5
  "author": "dianshuv",
6
6
  "type": "module",