Add MiniMax-M3 to the LLM model dropdown - #204
Merged
LauraGPT merged 1 commit intoAug 19, 2026
Merged
Conversation
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.
Reason: The executable MiniMax model dropdown listed only the MiniMax-M2.7 entries and omitted MiniMax-M3, so that model could not be picked in the LLM clipping UI.
Changes
funclip/launch.py: addminimax/MiniMax-M3to thellm_modeldropdown choices, next to the existing MiniMax entries.tests/test_minimax_launch_integration.py: update the dropdown regression test so the listed MiniMax models are asserted to includeminimax/MiniMax-M3.No routing changes were required.
funclip/llm/openai_api.pyalready strips theminimax/prefix and resolves any MiniMax model to the OpenAI-compatible endpoint (https://api.minimax.io/v1by default, withMINIMAX_API_BASEavailable for the regional host andMINIMAX_API_KEYfor credentials), andllm_inferenceinfunclip/launch.pyalready dispatches theminimax/prefix throughopenai_call. The dropdown entry was the only missing piece.Checks
python -m pytest -q tests/test_minimax_launch_integration.py tests/test_minimax_api.py tests/test_openai_api.py— 10 passed.python -m pytest -q tests/ --ignore=tests/test_duplicate_text_matching.py --ignore=tests/test_model_selection.py --ignore=tests/test_recognition_result_compat.py— 47 passed, 1 skipped, 6 failed. All 6 failures areModuleNotFoundErrorforgradioandtwelvelabs, which are not installed in this sandbox; the same 6 tests fail identically on the base commit, so they are unrelated to this change. The three ignored modules fail to import for the same reason (gradio,moviepy).python -m compileall funclip/launch.py tests/test_minimax_launch_integration.py