From cb08f8e9e07df8934f431081a24b69d65285e7b8 Mon Sep 17 00:00:00 2001 From: octo-patch Date: Sat, 14 Mar 2026 22:48:10 +0800 Subject: [PATCH 1/3] feat: add MiniMax-M2.5-highspeed to static model list Add the MiniMax-M2.5-highspeed model variant to the static MiniMax model list. This model offers the same performance as MiniMax-M2.5 but with faster inference speed. API docs: https://platform.minimax.io/docs/api-reference/text-openai-api --- internal/plugins/ai/openai_compatible/providers_config.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/plugins/ai/openai_compatible/providers_config.go b/internal/plugins/ai/openai_compatible/providers_config.go index 8f86dbd4..e99f2b4c 100644 --- a/internal/plugins/ai/openai_compatible/providers_config.go +++ b/internal/plugins/ai/openai_compatible/providers_config.go @@ -195,6 +195,7 @@ func (c *Client) getStaticModels(modelsKey string) ([]string, error) { case "static:minimax": return []string{ "MiniMax-M2.5", + "MiniMax-M2.5-highspeed", "MiniMax-M2.5-lightning", "MiniMax-M2", "MiniMax-M2.1", From 5689858ce54e7f795c138f2bce14140eae4d57e4 Mon Sep 17 00:00:00 2001 From: Kayvan Sylvan Date: Sun, 15 Mar 2026 11:26:43 -0700 Subject: [PATCH 2/3] chore: incoming 2060 changelog entry --- cmd/generate_changelog/incoming/2060.txt | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 cmd/generate_changelog/incoming/2060.txt diff --git a/cmd/generate_changelog/incoming/2060.txt b/cmd/generate_changelog/incoming/2060.txt new file mode 100644 index 00000000..2fc29f48 --- /dev/null +++ b/cmd/generate_changelog/incoming/2060.txt @@ -0,0 +1,7 @@ +### PR [#2060](https://github.com/danielmiessler/Fabric/pull/2060) by [octo-patch](https://github.com/octo-patch): feat: add MiniMax-M2.5-highspeed to static model list + +- Feat: add MiniMax-M2.5-highspeed to static model list +Add the MiniMax-M2.5-highspeed model variant to the static MiniMax +model list. This model offers the same performance as MiniMax-M2.5 +but with faster inference speed. +API docs: From 70977dfc0a95c304aeb64eb26beab7d3b27c479a Mon Sep 17 00:00:00 2001 From: Kayvan Sylvan Date: Sun, 15 Mar 2026 14:59:16 -0700 Subject: [PATCH 3/3] chore: incoming 2060 changelog entry --- cmd/generate_changelog/incoming/2060.txt | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/cmd/generate_changelog/incoming/2060.txt b/cmd/generate_changelog/incoming/2060.txt index 2fc29f48..637e12f3 100644 --- a/cmd/generate_changelog/incoming/2060.txt +++ b/cmd/generate_changelog/incoming/2060.txt @@ -1,7 +1,3 @@ ### PR [#2060](https://github.com/danielmiessler/Fabric/pull/2060) by [octo-patch](https://github.com/octo-patch): feat: add MiniMax-M2.5-highspeed to static model list -- Feat: add MiniMax-M2.5-highspeed to static model list -Add the MiniMax-M2.5-highspeed model variant to the static MiniMax -model list. This model offers the same performance as MiniMax-M2.5 -but with faster inference speed. -API docs: +- Added the `MiniMax-M2.5-highspeed` model variant to the static MiniMax model list. This variant delivers the same performance as `MiniMax-M2.5` but with faster inference speed.