From 742ac7e99bb6a63f5233290f602048a7b52eabb0 Mon Sep 17 00:00:00 2001 From: imbytecat Date: Tue, 13 Jan 2026 09:40:42 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20=E8=B0=83=E6=95=B4=E6=A8=A1=E5=9E=8B?= =?UTF-8?q?=E9=85=8D=E7=BD=AE=E9=A1=BA=E5=BA=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 交换 GPT-5.2 和 GPT-5.2-Codex 模型在配置中的顺序。 - 将 GPT-5.2 和 GPT-5.2-Codex 的配置顺序进行调换。 --- opencode.jsonc | 6 +++--- snippet/provider.jsonc | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/opencode.jsonc b/opencode.jsonc index 3a37732..3fa7eca 100644 --- a/opencode.jsonc +++ b/opencode.jsonc @@ -52,11 +52,11 @@ "gemini-3-flash-preview": { "name": "Gemini 3 Flash" }, - "gpt-5.2-codex": { - "name": "GPT-5.2-Codex" - }, "gpt-5.2": { "name": "GPT-5.2" + }, + "gpt-5.2-codex": { + "name": "GPT-5.2-Codex" } } }, diff --git a/snippet/provider.jsonc b/snippet/provider.jsonc index 7967335..3b58be3 100644 --- a/snippet/provider.jsonc +++ b/snippet/provider.jsonc @@ -33,11 +33,11 @@ }, // GPT - "gpt-5.2-codex": { - "name": "GPT-5.2-Codex" - }, "gpt-5.2": { "name": "GPT-5.2" + }, + "gpt-5.2-codex": { + "name": "GPT-5.2-Codex" } } },