From d5d0dfafbd6ee703c89af56063ced117357ad887 Mon Sep 17 00:00:00 2001 From: Yige Date: Sun, 19 Jul 2026 17:46:40 +0800 Subject: [PATCH] =?UTF-8?q?fix(compute):=20Codex=20displayName=20=E5=8E=BB?= =?UTF-8?q?=E6=8E=89=E5=86=97=E4=BD=99=20(=E8=AE=A2=E9=98=85)=20=E5=90=8E?= =?UTF-8?q?=E7=BC=80=20(#58)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix(compute): Codex 模型 displayName 去掉多余的"(订阅)"后缀 整个 openai-codex provider 就是 ChatGPT 订阅接入,displayName 上 逐个标注"(订阅)"是冗余信息,用户在 provider 层面已经清楚。 * chore(manifest): bump presetDataVersion 74 -> 75 --- compute/providers/openai-codex.json | 14 +++++++------- manifest.json | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/compute/providers/openai-codex.json b/compute/providers/openai-codex.json index da3976c..61ee9ec 100644 --- a/compute/providers/openai-codex.json +++ b/compute/providers/openai-codex.json @@ -26,7 +26,7 @@ "models": [ { "modelName": "gpt-5.6-sol", - "displayName": "GPT-5.6 Sol (订阅)", + "displayName": "GPT-5.6 Sol", "serviceType": [ "chat" ], @@ -46,7 +46,7 @@ }, { "modelName": "gpt-5.6-terra", - "displayName": "GPT-5.6 Terra (订阅)", + "displayName": "GPT-5.6 Terra", "serviceType": [ "chat" ], @@ -66,7 +66,7 @@ }, { "modelName": "gpt-5.6-luna", - "displayName": "GPT-5.6 Luna (订阅)", + "displayName": "GPT-5.6 Luna", "serviceType": [ "chat" ], @@ -86,7 +86,7 @@ }, { "modelName": "gpt-5.5", - "displayName": "GPT-5.5 (订阅)", + "displayName": "GPT-5.5", "serviceType": [ "chat" ], @@ -106,7 +106,7 @@ }, { "modelName": "gpt-5.4", - "displayName": "GPT-5.4 (订阅)", + "displayName": "GPT-5.4", "serviceType": [ "chat" ], @@ -126,7 +126,7 @@ }, { "modelName": "gpt-5.4-mini", - "displayName": "GPT-5.4 Mini (订阅)", + "displayName": "GPT-5.4 Mini", "serviceType": [ "chat" ], @@ -146,7 +146,7 @@ }, { "modelName": "gpt-5.3-codex-spark", - "displayName": "GPT-5.3 Codex Spark (订阅,Pro 专属)", + "displayName": "GPT-5.3 Codex Spark(Pro 专属)", "serviceType": [ "chat" ], diff --git a/manifest.json b/manifest.json index af0c5d1..1abf08c 100644 --- a/manifest.json +++ b/manifest.json @@ -1,6 +1,6 @@ { "version": "1.0.0", - "presetDataVersion": 74, + "presetDataVersion": 75, "updatedAt": "2026-07-19", "description": "DesireCore 官方配置中心" }