Default minimax provider to MiniMax-M3 in setup wizard#83
Open
octo-patch wants to merge 1 commit into
Open
Conversation
The minimax preset previously left model_id empty, forcing every user to look up a model name during the first-time setup. Set the default to the current flagship model `MiniMax-M3` so the wizard runs end to end without manual lookup, matching how the kimi/qwen/openai/volcengine presets already ship a sensible default. Users can still override it at the wizard's "Model ID" prompt or via `metaclaw config llm.model_id`. Co-Authored-By: Octopus <liyuan851277048@icloud.com>
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
The
minimaxpreset inmetaclaw/setup_wizard.pyshipped with an emptymodel_iddefault, forcing first-time users to look up a valid model ID before the wizard could finish. The other API-key presets that have a clear flagship (kimi,qwen,openai,volcengine) all ship one, so this bringsminimaxin line.MiniMax-M3is the current flagship MiniMax model and is the right default for a freshmetaclaw setup. Users who want a different model can still override it at the wizard'sModel IDprompt or viametaclaw config llm.model_id <id>afterwards.Changes
metaclaw/setup_wizard.py: set the defaultmodel_idfor theminimaxpreset from""to"MiniMax-M3". No changes toapi_base, no changes to any other provider.Notes
test_setup_wizard.pymocks the model ID prompt so it is unaffected).