From 0f0ba4adc4927e808e3b1dc3ead7237be9b55276 Mon Sep 17 00:00:00 2001 From: RedwindA Date: Fri, 9 Jan 2026 20:37:12 +0800 Subject: [PATCH 1/2] fix: remove Minimax from FETCHABLE channels --- web/src/components/table/channels/modals/EditChannelModal.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/components/table/channels/modals/EditChannelModal.jsx b/web/src/components/table/channels/modals/EditChannelModal.jsx index 9e07a2bd..0abd3fdf 100644 --- a/web/src/components/table/channels/modals/EditChannelModal.jsx +++ b/web/src/components/table/channels/modals/EditChannelModal.jsx @@ -92,7 +92,7 @@ const REGION_EXAMPLE = { // 支持并且已适配通过接口获取模型列表的渠道类型 const MODEL_FETCHABLE_TYPES = new Set([ - 1, 4, 14, 34, 17, 26, 27, 24, 47, 25, 20, 23, 31, 35, 40, 42, 48, 43, + 1, 4, 14, 34, 17, 26, 27, 24, 47, 25, 20, 23, 31, 40, 42, 48, 43, ]); function type2secretPrompt(type) { From ffa8a4278440f13d5fb8ba6adf134fc52f167fc9 Mon Sep 17 00:00:00 2001 From: RedwindA Date: Fri, 9 Jan 2026 20:46:47 +0800 Subject: [PATCH 2/2] =?UTF-8?q?fix(minimax):=20=E6=B7=BB=E5=8A=A0=20MiniMa?= =?UTF-8?q?x-M2=20=E7=B3=BB=E5=88=97=E6=A8=A1=E5=9E=8B=E5=88=B0=20ModelLis?= =?UTF-8?q?t?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- relay/channel/minimax/constants.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/relay/channel/minimax/constants.go b/relay/channel/minimax/constants.go index df420d4b..91193c4b 100644 --- a/relay/channel/minimax/constants.go +++ b/relay/channel/minimax/constants.go @@ -14,6 +14,9 @@ var ModelList = []string{ "speech-02-turbo", "speech-01-hd", "speech-01-turbo", + "MiniMax-M2.1", + "MiniMax-M2.1-lightning", + "MiniMax-M2", } var ChannelName = "minimax"