Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions cmd/generate_changelog/incoming/2135.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
### PR [#2135](https://github.com/danielmiessler/Fabric/pull/2135) by [octo-patch](https://github.com/octo-patch): feat: upgrade MiniMax default model to M3

- Upgraded the MiniMax default model to M3, making it the new flagship selection.
- Added MiniMax-M3 to the static model list as the first entry, establishing it as the default.
- Retained MiniMax-M2.7 and MiniMax-M2.7-highspeed as available alternative models.
- Removed deprecated models (M2.5, M2.5-highspeed, M2.5-lightning, M2, M2.1, and M2.1-lightning) from the static list.
7 changes: 1 addition & 6 deletions internal/plugins/ai/openai_compatible/providers_config.go
Original file line number Diff line number Diff line change
Expand Up @@ -206,14 +206,9 @@ func (c *Client) getStaticModels(modelsKey string) ([]string, error) {
}, nil
case "static:minimax":
return []string{
"MiniMax-M3",
"MiniMax-M2.7",
"MiniMax-M2.7-highspeed",
"MiniMax-M2.5",
"MiniMax-M2.5-highspeed",
"MiniMax-M2.5-lightning",
"MiniMax-M2",
"MiniMax-M2.1",
"MiniMax-M2.1-lightning",
}, nil
default:
return nil, fmt.Errorf(i18n.T("openai_compatible_unknown_static_model_list"), modelsKey)
Expand Down
Loading