-
Notifications
You must be signed in to change notification settings - Fork 20.4k
Preliminary MiniMax-M3 support #24523
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
danielhanchen
wants to merge
6
commits into
ggml-org:master
Choose a base branch
from
danielhanchen:minimax-m3
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+558
−2
Open
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
2846a38
Add preliminary MiniMax-M3 support
danielhanchen 2031f0f
minimax-m3 : fix tool calling and Transformers 5.12 conversion
danielhanchen 87e767e
Merge upstream/master into minimax-m3
danielhanchen e8f375f
Addressing review comments
danielhanchen a18decf
Merge upstream master into minimax-m3
danielhanchen 00f95bd
Use p.ac for string tool argument values
danielhanchen File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2035,6 +2035,191 @@ static common_chat_params common_chat_params_init_deepseek_v3_2(const common_cha | |
| return data; | ||
| } | ||
|
|
||
| static common_chat_params common_chat_params_init_minimax_m3(const common_chat_template & tmpl, | ||
| const autoparser::generation_params & inputs) { | ||
| common_chat_params data; | ||
|
|
||
| data.prompt = common_chat_template_direct_apply_impl(tmpl, inputs); | ||
| data.generation_prompt = common_chat_template_generation_prompt_impl(tmpl, inputs); | ||
| data.format = COMMON_CHAT_FORMAT_PEG_NATIVE; | ||
| data.supports_thinking = true; | ||
| data.thinking_start_tag = "<mm:think>"; | ||
| data.thinking_end_tag = "</mm:think>"; | ||
|
|
||
| // M3 prefixes every tool tag with the namespace token "]<]minimax[>["; | ||
| // params use the parameter name as the tag (<file_path>...</file_path>). | ||
| const std::string NS = "]<]minimax[>["; | ||
| const std::string THINK_START = "<mm:think>"; | ||
| const std::string THINK_END = "</mm:think>"; | ||
| const std::string FC_START = NS + "<tool_call>"; | ||
| const std::string FC_END = NS + "</tool_call>"; | ||
| const std::string INVOKE_END = NS + "</invoke>"; | ||
|
|
||
| data.preserved_tokens = { | ||
| NS, | ||
| "<tool_call>", | ||
| "</tool_call>", | ||
| THINK_START, | ||
| THINK_END, | ||
| }; | ||
|
|
||
| auto has_tools = inputs.tools.is_array() && !inputs.tools.empty(); | ||
| auto has_response_format = !inputs.json_schema.is_null() && inputs.json_schema.is_object(); | ||
| auto extract_reasoning = inputs.reasoning_format != COMMON_REASONING_FORMAT_NONE; | ||
| auto include_grammar = has_response_format || (has_tools && inputs.tool_choice != COMMON_CHAT_TOOL_CHOICE_NONE); | ||
|
|
||
| const std::string GEN_PROMPT = data.generation_prompt; | ||
|
|
||
| if (inputs.has_continuation()) { | ||
| const auto & msg = inputs.continue_msg; | ||
|
|
||
| data.generation_prompt = GEN_PROMPT + THINK_START + msg.reasoning_content; | ||
| if (inputs.continue_final_message == COMMON_CHAT_CONTINUATION_CONTENT) { | ||
| data.generation_prompt += THINK_END + msg.render_content(); | ||
| } | ||
|
|
||
| data.prompt += data.generation_prompt; | ||
| } | ||
|
|
||
| auto parser = build_chat_peg_parser([&](common_chat_peg_builder & p) { | ||
| auto generation_prompt = p.literal(GEN_PROMPT); | ||
| auto end = p.end(); | ||
|
|
||
| auto reasoning = p.eps(); | ||
| // M3 can emit a bare </mm:think> (no opener) after tool results; keep the opener optional. | ||
| if (extract_reasoning && inputs.enable_thinking) { | ||
| reasoning = p.optional(p.optional(p.literal(THINK_START)) + p.reasoning(p.until(THINK_END)) + THINK_END); | ||
| } else if (extract_reasoning) { | ||
| reasoning = p.optional(p.optional(p.literal(THINK_START)) + p.until(THINK_END) + p.literal(THINK_END)); | ||
| } | ||
|
|
||
| if (has_response_format) { | ||
| auto response_format = p.rule("response-format", | ||
| p.literal("```json") + p.space() + | ||
| p.content(p.schema(p.json(), "response-format-schema", inputs.json_schema)) + | ||
| p.space() + p.literal("```")); | ||
| return generation_prompt + reasoning + response_format + end; | ||
| } | ||
|
|
||
| if (!has_tools || inputs.tool_choice == COMMON_CHAT_TOOL_CHOICE_NONE) { | ||
| return generation_prompt + reasoning + p.content(p.rest()) + end; | ||
| } | ||
|
|
||
| auto tool_choice = p.choice(); | ||
| foreach_function(inputs.tools, [&](const json & tool) { | ||
| const auto & function = tool.at("function"); | ||
| std::string name = function.at("name"); | ||
| auto params = function.contains("parameters") ? function.at("parameters") : json::object(); | ||
| const auto & props = params.contains("properties") ? params.at("properties") : json::object(); | ||
|
|
||
| std::set<std::string> required; | ||
| if (params.contains("required")) { | ||
| params.at("required").get_to(required); | ||
| } | ||
|
|
||
| auto schema_info = common_schema_info(); | ||
| schema_info.resolve_refs(params); | ||
|
|
||
| std::vector<common_peg_parser> required_parsers; | ||
| std::vector<common_peg_parser> optional_parsers; | ||
| for (const auto & [param_name, param_schema] : props.items()) { | ||
| bool is_required = required.find(param_name) != required.end(); | ||
| bool is_string = schema_info.resolves_to_string(param_schema); | ||
|
|
||
| const std::string p_close = NS + "</" + param_name + ">"; | ||
|
|
||
| auto arg = p.tool_arg( | ||
| p.tool_arg_open( | ||
| p.literal(NS + "<") + | ||
| p.tool_arg_name(p.literal(param_name)) + | ||
| p.literal(">")) + | ||
| (is_string | ||
| ? p.ac(p.tool_arg_string_value(p.until(p_close)) + | ||
| p.tool_arg_close(p.literal(p_close)), p_close) | ||
| : p.tool_arg_json_value(p.schema(p.json(), | ||
| "tool-" + name + "-arg-" + param_name + "-schema", | ||
| param_schema, false)) + | ||
| p.tool_arg_close(p.literal(p_close)))); | ||
|
|
||
| auto named_arg = p.rule("tool-" + name + "-arg-" + param_name, arg); | ||
| if (is_required) { | ||
| required_parsers.push_back(named_arg); | ||
| } else { | ||
| optional_parsers.push_back(named_arg); | ||
| } | ||
| } | ||
|
|
||
| common_peg_parser args_seq = p.eps(); | ||
| for (size_t i = 0; i < required_parsers.size(); i++) { | ||
| if (i > 0) { | ||
| args_seq = args_seq + p.space(); | ||
| } | ||
| args_seq = args_seq + required_parsers[i]; | ||
| } | ||
|
|
||
| if (!optional_parsers.empty()) { | ||
| common_peg_parser any_opt = p.choice(); | ||
| for (const auto & opt : optional_parsers) { | ||
| any_opt |= opt; | ||
| } | ||
| args_seq = args_seq + p.repeat(p.space() + any_opt, 0, -1); | ||
| } | ||
|
|
||
| common_peg_parser invoke_body = args_seq; | ||
| auto func_parser = p.tool( | ||
| p.tool_open(p.literal(NS + "<invoke name=\"") + | ||
| p.tool_name(p.literal(name)) + p.literal("\">")) + | ||
| p.space() + invoke_body + p.space() + | ||
| p.tool_close(p.literal(INVOKE_END))); | ||
|
|
||
| tool_choice |= p.rule("tool-" + name, func_parser); | ||
| }); | ||
|
|
||
| auto require_tools = inputs.tool_choice == COMMON_CHAT_TOOL_CHOICE_REQUIRED; | ||
|
|
||
| common_peg_parser tool_calls = p.eps(); | ||
| if (inputs.parallel_tool_calls) { | ||
| tool_calls = p.trigger_rule("tool-call", | ||
| p.literal(FC_START) + p.space() + tool_choice + | ||
| p.zero_or_more(p.space() + tool_choice) + p.space() + p.literal(FC_END)); | ||
| } else { | ||
| tool_calls = p.trigger_rule("tool-call", | ||
| p.literal(FC_START) + p.space() + tool_choice + p.space() + p.literal(FC_END)); | ||
| } | ||
|
|
||
| if (!require_tools) { | ||
| tool_calls = p.optional(tool_calls); | ||
| } | ||
|
|
||
| auto content_before_tools = p.content(p.until(FC_START)); | ||
| return generation_prompt + reasoning + content_before_tools + tool_calls + end; | ||
| }); | ||
|
|
||
| data.parser = parser.save(); | ||
|
|
||
| if (include_grammar) { | ||
| data.grammar_lazy = !(has_response_format || (has_tools && inputs.tool_choice == COMMON_CHAT_TOOL_CHOICE_REQUIRED)); | ||
| data.grammar = build_grammar([&](const common_grammar_builder & builder) { | ||
| foreach_function(inputs.tools, [&](const json & tool) { | ||
| const auto & function = tool.at("function"); | ||
| auto schema = function.contains("parameters") ? function.at("parameters") : json::object(); | ||
| builder.resolve_refs(schema); | ||
| }); | ||
| if (has_response_format) { | ||
| auto schema = inputs.json_schema; | ||
| builder.resolve_refs(schema); | ||
| } | ||
| parser.build_grammar(builder, data.grammar_lazy); | ||
| }); | ||
|
|
||
| data.grammar_triggers = { | ||
| { COMMON_GRAMMAR_TRIGGER_TYPE_WORD, FC_START }, | ||
| }; | ||
| } | ||
|
|
||
| return data; | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please add |
||
| } | ||
|
|
||
| // Cohere2 MoE (a.k.a. "North Code") parser. | ||
| // | ||
| // The assistant turn is fully marker-wrapped: | ||
|
|
@@ -2595,6 +2780,15 @@ std::optional<common_chat_params> common_chat_try_specialized_template( | |
| return common_chat_params_init_gigachat_v3(tmpl, params); | ||
| } | ||
|
|
||
| // MiniMax-M3: the namespace token "]<]minimax[>[" collides with the autoparser's | ||
| // markup delimiters, so detect the template and use a dedicated parser. | ||
| if (src.find("]<]minimax[>[") != std::string::npos && | ||
| src.find("<tool_call>") != std::string::npos && | ||
| src.find("<invoke name=") != std::string::npos) { | ||
| LOG_DBG("Using specialized template: MiniMax-M3\n"); | ||
| return common_chat_params_init_minimax_m3(tmpl, params); | ||
| } | ||
|
|
||
| // DeepSeek V3.2 format detection: template defines dsml_token and uses it for tool calls. | ||
| // The template source contains the token as a variable assignment, not as a literal in markup. | ||
| if (src.find("dsml_token") != std::string::npos && | ||
|
|
||
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
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
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
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
Oops, something went wrong.
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.