feat(minimax): add MiniMax-M3 and make it the default model#283
Open
octo-patch wants to merge 1 commit into
Open
feat(minimax): add MiniMax-M3 and make it the default model#283octo-patch wants to merge 1 commit into
octo-patch wants to merge 1 commit into
Conversation
MiniMax-M3 is the latest model in the MiniMax family. Add it to the built-in minimax provider profile so `oh setup` and the model picker both surface it, and make it the new default for the profile and for the Anthropic-compatible setup flow. Keep MiniMax-M2.7 and MiniMax-M2.7-highspeed in the picker so existing users can still select them. Refresh the README example and the related tests to match the new default.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Upgrade the built-in
minimaxprovider profile to surface the latest MiniMax model,MiniMax-M3, and make it the default for new setups.Changes
src/openharness/config/settings.py:default_provider_profiles()["minimax"].default_model→MiniMax-M3.src/openharness/cli.py: theclaude-api→minimax-anthropicsetup default model is nowMiniMax-M3.src/openharness/ui/backend_host.py: model picker now showsMiniMax-M3first (labelled "MiniMax latest"), withMiniMax-M2.7andMiniMax-M2.7-highspeedstill available below it for users who pinned to them.README.md: the Anthropic-compatible table now usesMiniMax-M3as the example model (the oldminimax-m1entry no longer matches the catalog).tests/test_config/test_settings.pyandtests/test_ui/test_react_backend.py: updated the hard-coded default-model assertions to match.CHANGELOG.md: short Unreleased entry underAdded.The provider name, env key (
MINIMAX_API_KEY), base URL (https://api.minimax.io/v1), API format, and theminimax-vlvision regex are unchanged.Test plan
uv run ruff check src tests scripts— clean.uv run pytest -q tests/test_config/test_settings.py::TestMiniMaxProvider— 5 passed.uv run pytest -q tests/test_ui/test_react_backend.py::test_backend_host_uses_effective_model_from_env_override— 1 passed.