From accf2c52969b0876625ffa8d66a5add803dc056f Mon Sep 17 00:00:00 2001 From: decolua Date: Thu, 10 Sep 2026 23:32:55 +0700 Subject: [PATCH] fix(providers): remove the duplicate qwen provider MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit qwen.js points at the same transport as alims-intl — identical baseUrl (dashscope-intl compatible-mode), headers, and quirks — but carries only 8 Qwen models against alims-intl's broader catalog, so it adds nothing a user could not already reach. Node count is back to 81. The id was dropped on 2026-08-05 (dcdd4628b) when the Qwen OAuth flow died; this removes the standalone API-key entry that shadowed it. The `qw` alias returns to unassigned, its state before today. Co-Authored-By: Claude Code --- open-sse/providers/registry/index.js | 2 -- open-sse/providers/registry/qwen.js | 36 ---------------------------- 2 files changed, 38 deletions(-) delete mode 100644 open-sse/providers/registry/qwen.js diff --git a/open-sse/providers/registry/index.js b/open-sse/providers/registry/index.js index 48a49ebe..fb355d6d 100644 --- a/open-sse/providers/registry/index.js +++ b/open-sse/providers/registry/index.js @@ -123,7 +123,6 @@ import p119 from "./selfhosted-embedding.js"; import p120 from "./fish-audio.js"; import p121 from "./alitp-intl.js"; import p122 from "./xquik.js"; -import p124 from "./qwen.js"; export default [ p0, p1, @@ -247,5 +246,4 @@ export default [ p120, p121, p122, - p124, ]; diff --git a/open-sse/providers/registry/qwen.js b/open-sse/providers/registry/qwen.js deleted file mode 100644 index d51e88a8..00000000 --- a/open-sse/providers/registry/qwen.js +++ /dev/null @@ -1,36 +0,0 @@ -export default { - id: "qwen", - priority: 12, - alias: "qwen", - aliases: ["qw"], - display: { - name: "Qwen", - icon: "sparkles", - color: "#6366F1", - textIcon: "Qw", - website: "https://www.alibabacloud.com/en/product/model-studio", - notice: { - apiKeyUrl: - "https://modelstudio.console.alibabacloud.com/?apiKey=1", - }, - }, - category: "apikey", - transport: { - baseUrl: - "https://dashscope-intl.aliyuncs.com/compatible-mode/v1/chat/completions", - headers: {}, - quirks: { preserveCacheControl: true }, - }, - models: [ - // Flagship & API models - { id: "qwen3.8-max", name: "Qwen3.8 Max" }, - { id: "qwen3.8-flash", name: "Qwen3.8 Flash" }, - { id: "qwen3.7-plus", name: "Qwen3.7 Plus" }, - { id: "qwen3.7-flash", name: "Qwen3.7 Flash" }, - // Open-source models - { id: "qwen3.8-2.4t-a95b", name: "Qwen3.8 2.4T MoE (Open)" }, - { id: "qwen3.8-27b", name: "Qwen3.8 27B (Open)" }, - { id: "qwen3.6-35b-a3b", name: "Qwen3.6 35B MoE (Open)" }, - { id: "qwen3.6-27b", name: "Qwen3.6 27B (Open)" }, - ], -};