| #include "chat.h" |
|
|
| #include "chat-auto-parser-helpers.h" |
| #include "chat-auto-parser.h" |
| #include "chat-peg-parser.h" |
| #include "common.h" |
| #include "ggml.h" |
| #include "json-schema-to-grammar.h" |
| #include "log.h" |
|
|
| #include "jinja/value.h" |
| #include "jinja/runtime.h" |
| #include "jinja/caps.h" |
| #include "peg-parser.h" |
|
|
| #include "nlohmann/json.hpp" |
|
|
| #include <algorithm> |
| #include <cstdio> |
| #include <cstdlib> |
| #include <ctime> |
| #include <exception> |
| #include <functional> |
| #include <map> |
|
|
| #include <optional> |
| #include <sstream> |
| #include <stdexcept> |
| #include <string> |
| #include <utility> |
| #include <vector> |
|
|
| using json = nlohmann::ordered_json; |
|
|
| static std::string format_time(const std::chrono::system_clock::time_point & now, const std::string & format) { |
| auto time = std::chrono::system_clock::to_time_t(now); |
| auto local_time = *std::localtime(&time); |
| std::ostringstream ss; |
| ss << std::put_time(&local_time, format.c_str()); |
| auto res = ss.str(); |
| return res; |
| } |
|
|
| static json safe_args_parse(const std::string & to_parse) { |
| std::string stripped = to_parse; |
| if (to_parse.at(0) == '"' && to_parse.at(to_parse.length() - 1) == '"') { |
| stripped = to_parse.substr(1, to_parse.length() - 1); |
| } |
| try { |
| return json::parse(stripped); |
| } catch (json::exception & e) { |
| return stripped; |
| } |
| } |
|
|
| static std::string string_diff(const std::string & last, const std::string & current) { |
| if (last.empty()) { |
| return current; |
| } |
| if (!string_starts_with(current, last)) { |
| if (string_starts_with(last, current)) { |
| |
| |
| return ""; |
| } |
| throw std::runtime_error("Invalid diff: '" + last + "' not found at start of '" + current + "'"); |
| } |
| return current.substr(last.size()); |
| } |
|
|
| static bool has_content_or_tool_calls(const common_chat_msg & msg) { |
| return !msg.content.empty() || !msg.tool_calls.empty(); |
| } |
|
|
| std::string common_chat_msg::render_content(const std::string & delimiter) const { |
| if (!content.empty() && !content_parts.empty()) { |
| throw std::runtime_error("Cannot specify both content and content_parts"); |
| } |
| if (!content.empty()) { |
| return content; |
| } |
|
|
| std::string text; |
| for (const auto & part : content_parts) { |
| if (part.type == "text") { |
| if (!text.empty()) { |
| text += delimiter; |
| } |
| text += part.text; |
| } |
| } |
| return text; |
| } |
|
|
| common_chat_role common_chat_role_from_string(const std::string & role) { |
| if (role == "system") { return COMMON_CHAT_ROLE_SYSTEM; } |
| if (role == "assistant") { return COMMON_CHAT_ROLE_ASSISTANT; } |
| if (role == "user") { return COMMON_CHAT_ROLE_USER; } |
| if (role == "tool") { return COMMON_CHAT_ROLE_TOOL; } |
| return COMMON_CHAT_ROLE_UNKNOWN; |
| } |
|
|
| const char * common_chat_role_to_string(common_chat_role role) { |
| switch (role) { |
| case COMMON_CHAT_ROLE_SYSTEM: return "system"; |
| case COMMON_CHAT_ROLE_ASSISTANT: return "assistant"; |
| case COMMON_CHAT_ROLE_USER: return "user"; |
| case COMMON_CHAT_ROLE_TOOL: return "tool"; |
| case COMMON_CHAT_ROLE_UNKNOWN: return ""; |
| } |
| return ""; |
| } |
|
|
| json common_chat_msg_delimiters::to_json() const { |
| json result = json::array(); |
| for (const auto & d : delimiters) { |
| result.push_back({ |
| { "role", common_chat_role_to_string(d.role) }, |
| { "delimiter", d.delimiter }, |
| }); |
| } |
| return result; |
| } |
|
|
| common_chat_msg_delimiters common_chat_msg_delimiters_parse(const json & delimiters) { |
| common_chat_msg_delimiters result; |
|
|
| if (!delimiters.is_array()) { |
| return result; |
| } |
|
|
| result.delimiters.reserve(delimiters.size()); |
| for (const auto & d : delimiters) { |
| if (!d.is_object()) { |
| continue; |
| } |
| result.delimiters.push_back({ |
| common_chat_role_from_string(d.value("role", std::string())), |
| d.value("delimiter", std::string()), |
| }); |
| } |
|
|
| return result; |
| } |
|
|
| void common_chat_msg_delimiters::tokenize(const llama_vocab * vocab) { |
| for (auto & d : delimiters) { |
| d.tokens = common_tokenize(vocab, d.delimiter, false, true); |
| } |
| } |
|
|
| common_chat_msg_spans common_chat_msg_delimiters::split(const llama_tokens & tokens, const std::map<size_t, size_t> & skips) const { |
| std::vector<std::pair<common_chat_role, size_t>> matches; |
|
|
| auto skip = skips.begin(); |
| for (size_t i = 0; i < tokens.size();) { |
| if (skip != skips.end() && i == skip->first) { |
| i += skip->second; |
| ++skip; |
| continue; |
| } |
| for (const auto & d : delimiters) { |
| if (i + d.tokens.size() > tokens.size()) { |
| continue; |
| } |
| if (std::equal(d.tokens.begin(), d.tokens.end(), tokens.begin() + i)) { |
| matches.emplace_back(d.role, i); |
| break; |
| } |
| } |
| i++; |
| } |
|
|
| matches.emplace_back(COMMON_CHAT_ROLE_UNKNOWN, tokens.size()); |
|
|
| common_chat_msg_spans spans; |
| for (size_t i = 0; i + 1 < matches.size(); i++) { |
| const auto & curr = matches[i]; |
| const auto & next = matches[i + 1]; |
| spans.add(curr.first, curr.second, next.second - curr.second); |
| } |
|
|
| return spans; |
| } |
|
|
| json common_chat_msg::to_json_oaicompat(bool concat_typed_text) const { |
| if (!content.empty() && !content_parts.empty()) { |
| throw std::runtime_error("Cannot specify both content and content_parts"); |
| } |
| json jmsg { |
| {"role", role}, |
| }; |
| if (!content.empty()) { |
| jmsg["content"] = content; |
| } else if (!content_parts.empty()) { |
| if (concat_typed_text || contains_media()) { |
| std::string text; |
| bool last_was_media_marker = false; |
| |
| for (const auto & part : content_parts) { |
| bool add_new_line = true; |
| if (part.type == "text") { |
| add_new_line = !last_was_media_marker && !text.empty(); |
| last_was_media_marker = false; |
| } else if (part.type == "media_marker") { |
| add_new_line = false; |
| last_was_media_marker = true; |
| } else { |
| LOG_WRN("Ignoring content part type: %s\n", part.type.c_str()); |
| continue; |
| } |
|
|
| if (add_new_line) { |
| text += '\n'; |
| } |
|
|
| text += part.text; |
| } |
| jmsg["content"] = text; |
| } else { |
| auto & parts = jmsg["content"] = json::array(); |
| for (const auto & part : content_parts) { |
| parts.push_back({ |
| {"type", part.type}, |
| {"text", part.text}, |
| }); |
| } |
| } |
| } else { |
| jmsg["content"] = ""; |
| } |
| if (!reasoning_content.empty()) { |
| jmsg["reasoning_content"] = reasoning_content; |
| } |
| if (!tool_name.empty()) { |
| jmsg["name"] = tool_name; |
| } |
| if (!tool_call_id.empty()) { |
| jmsg["tool_call_id"] = tool_call_id; |
| } |
| if (!tool_calls.empty()) { |
| jmsg["tool_calls"] = json::array(); |
| auto & jtool_calls = jmsg["tool_calls"]; |
| for (const auto & tool_call : tool_calls) { |
| json tc { |
| {"type", "function"}, |
| {"function", { |
| {"name", tool_call.name}, |
| {"arguments", json(tool_call.arguments)}, |
| }}, |
| }; |
| if (!tool_call.id.empty()) { |
| tc["id"] = tool_call.id; |
| } |
| |
| |
| |
| |
| jtool_calls.push_back(tc); |
| } |
| } |
|
|
| return jmsg; |
| } |
|
|
| std::vector<common_chat_msg_diff> common_chat_msg_diff::compute_diffs(const common_chat_msg & msg_prv, |
| const common_chat_msg & msg_new) { |
| std::vector<common_chat_msg_diff> diffs; |
| if (msg_new.tool_calls.size() > msg_prv.tool_calls.size()) { |
| diffs.reserve(msg_new.tool_calls.size() - msg_prv.tool_calls.size() + 3); |
| } else { |
| diffs.reserve(3); |
| } |
|
|
| |
| if (msg_prv.reasoning_content != msg_new.reasoning_content) { |
| auto & diff = diffs.emplace_back(); |
| diff.reasoning_content_delta = string_diff(msg_prv.reasoning_content, msg_new.reasoning_content); |
| } |
| if (msg_prv.content != msg_new.content) { |
| auto & diff = diffs.emplace_back(); |
| diff.content_delta = string_diff(msg_prv.content, msg_new.content); |
| } |
|
|
| if (msg_new.tool_calls.size() < msg_prv.tool_calls.size()) { |
| std::string err = "Invalid diff: now finding less tool calls!\n"; |
| err += " Previous (" + std::to_string(msg_prv.tool_calls.size()) + "):\n"; |
| for (const auto & tc : msg_prv.tool_calls) { |
| err += " - name: '" + tc.name + "', args: '" + tc.arguments + "'\n"; |
| } |
| err += " Current (" + std::to_string(msg_new.tool_calls.size()) + "):\n"; |
| for (const auto & tc : msg_new.tool_calls) { |
| err += " - name: '" + tc.name + "', args: '" + tc.arguments + "'\n"; |
| } |
| err += " Current msg text content:\n" + msg_new.content + "\n"; |
| throw std::runtime_error(err); |
| } |
|
|
| if (!msg_prv.tool_calls.empty()) { |
| const auto idx = msg_prv.tool_calls.size() - 1; |
| const auto & pref = msg_prv.tool_calls[idx]; |
| const auto & newf = msg_new.tool_calls[idx]; |
| |
| |
| |
| if (pref.name != newf.name && !pref.name.empty() && !newf.name.empty()) { |
| |
| bool is_prefix = (newf.name.rfind(pref.name, 0) == 0); |
| if (!is_prefix) { |
| LOG_ERR("Tool call mismatch: prev='%s' new='%s'\n", pref.name.c_str(), newf.name.c_str()); |
| throw std::runtime_error("Invalid diff: tool call mismatch!"); |
| } |
| } |
| const auto args_diff = string_diff(pref.arguments, newf.arguments); |
| if (!args_diff.empty() || pref.id != newf.id || pref.name != newf.name) { |
| auto & diff = diffs.emplace_back(); |
| diff.tool_call_index = idx; |
| if (pref.id != newf.id || pref.name != newf.name) { |
| diff.tool_call_delta.id = newf.id; |
| diff.tool_call_delta.name = newf.name; |
| } |
| diff.tool_call_delta.arguments = args_diff; |
| } |
| } |
| for (size_t idx = msg_prv.tool_calls.size(); idx < msg_new.tool_calls.size(); ++idx) { |
| auto & diff = diffs.emplace_back(); |
| diff.tool_call_index = idx; |
| diff.tool_call_delta = msg_new.tool_calls[idx]; |
| } |
|
|
| return diffs; |
| } |
|
|
| using chat_template_caps = jinja::caps; |
|
|
| struct common_chat_templates { |
| bool add_bos; |
| bool add_eos; |
| bool has_explicit_template; |
| std::unique_ptr<common_chat_template> template_default; |
| std::unique_ptr<common_chat_template> template_tool_use; |
| }; |
|
|
| common_chat_tool_choice common_chat_tool_choice_parse_oaicompat(const std::string & tool_choice) { |
| if (tool_choice == "auto") { |
| return COMMON_CHAT_TOOL_CHOICE_AUTO; |
| } |
| if (tool_choice == "none") { |
| return COMMON_CHAT_TOOL_CHOICE_NONE; |
| } |
| if (tool_choice == "required") { |
| return COMMON_CHAT_TOOL_CHOICE_REQUIRED; |
| } |
| throw std::invalid_argument("Invalid tool_choice: " + tool_choice); |
| } |
|
|
| bool common_chat_templates_support_enable_thinking(const common_chat_templates * chat_templates) { |
| common_chat_templates_inputs inputs; |
| inputs.reasoning_format = COMMON_REASONING_FORMAT_DEEPSEEK; |
| common_chat_msg msg; |
| msg.role = "user"; |
| msg.content = "test"; |
| inputs.messages = { msg }; |
| inputs.enable_thinking = true; |
| inputs.add_generation_prompt = true; |
| inputs.reasoning_format = COMMON_REASONING_FORMAT_DEEPSEEK; |
|
|
| auto params = common_chat_templates_apply(chat_templates, inputs); |
| return params.supports_thinking; |
| } |
|
|
| std::vector<common_chat_msg> common_chat_msgs_parse_oaicompat(const json & messages) { |
| std::vector<common_chat_msg> msgs; |
|
|
| try { |
| if (!messages.is_array()) { |
| throw std::invalid_argument("Expected 'messages' to be an array, got " + messages.dump()); |
| } |
|
|
| for (const auto & message : messages) { |
| if (!message.is_object()) { |
| throw std::invalid_argument("Expected 'message' to be an object, got " + message.dump()); |
| } |
|
|
| common_chat_msg msg; |
| if (!message.contains("role")) { |
| throw std::invalid_argument("Missing 'role' in message: " + message.dump()); |
| } |
| msg.role = message.at("role"); |
|
|
| auto has_content = message.contains("content"); |
| auto has_tool_calls = message.contains("tool_calls"); |
| if (has_content) { |
| const auto & content = message.at("content"); |
| if (content.is_string()) { |
| msg.content = content; |
| } else if (content.is_array()) { |
| for (const auto & part : content) { |
| if (!part.contains("type")) { |
| throw std::invalid_argument("Missing content part type: " + part.dump()); |
| } |
| const auto & type = part.at("type"); |
| if (type != "text" && type != "media_marker") { |
| throw std::invalid_argument("Unsupported content part type: " + type.dump()); |
| } |
| common_chat_msg_content_part msg_part; |
| msg_part.type = type; |
| msg_part.text = part.at("text"); |
| msg.content_parts.push_back(msg_part); |
| } |
| } else if (!content.is_null()) { |
| throw std::invalid_argument("Invalid 'content' type: expected string or array, got " + |
| content.dump() + |
| " (ref: https://github.com/ggml-org/llama.cpp/issues/8367)"); |
| } |
| } |
| if (has_tool_calls) { |
| for (const auto & tool_call : message.at("tool_calls")) { |
| common_chat_tool_call tc; |
| if (!tool_call.contains("type")) { |
| throw std::invalid_argument("Missing tool call type: " + tool_call.dump()); |
| } |
| const auto & type = tool_call.at("type"); |
| if (type != "function") { |
| throw std::invalid_argument("Unsupported tool call type: " + tool_call.dump()); |
| } |
| if (!tool_call.contains("function")) { |
| throw std::invalid_argument("Missing tool call function: " + tool_call.dump()); |
| } |
| const auto & fc = tool_call.at("function"); |
| if (!fc.contains("name")) { |
| throw std::invalid_argument("Missing tool call name: " + tool_call.dump()); |
| } |
| tc.name = fc.at("name"); |
| const auto & args = fc.at("arguments"); |
| if (args.is_string()) { |
| tc.arguments = args; |
| } else { |
| tc.arguments = args.dump(); |
| } |
| if (tool_call.contains("id")) { |
| tc.id = tool_call.at("id"); |
| } |
| msg.tool_calls.push_back(tc); |
| } |
| } |
| if (!has_content && !has_tool_calls) { |
| throw std::invalid_argument( |
| "Expected 'content' or 'tool_calls' (ref: https://github.com/ggml-org/llama.cpp/issues/8367 & " |
| "https://github.com/ggml-org/llama.cpp/issues/12279)"); |
| } |
| if (message.contains("reasoning_content")) { |
| msg.reasoning_content = message.at("reasoning_content"); |
| } |
| if (message.contains("name")) { |
| msg.tool_name = message.at("name"); |
| } |
| if (message.contains("tool_call_id")) { |
| msg.tool_call_id = message.at("tool_call_id"); |
| } |
|
|
| msgs.push_back(msg); |
| } |
| } catch (const std::exception & e) { |
| |
| |
| throw std::runtime_error("Failed to parse messages: " + std::string(e.what())); |
| } |
|
|
| return msgs; |
| } |
|
|
| static json render_message_to_json(const std::vector<common_chat_msg> & msgs, const jinja::caps & c) { |
| if (!c.supports_string_content && !c.supports_typed_content) { |
| LOG_WRN("%s: Neither string content nor typed content is supported by the template. This is unexpected and may lead to issues.\n", __func__); |
| } |
|
|
| bool only_string_accepted = c.supports_string_content && !c.supports_typed_content; |
| bool only_typed_accepted = !c.supports_string_content && c.supports_typed_content; |
|
|
| json messages = json::array(); |
| for (const auto & msg : msgs) { |
| if (only_string_accepted) { |
| json jmsg = msg.to_json_oaicompat( true); |
| messages.push_back(jmsg); |
| } else if (only_typed_accepted) { |
| json jmsg = msg.to_json_oaicompat( false); |
| if (jmsg.at("content").is_string()) { |
| jmsg["content"] = json::array({ |
| json{ |
| {"type", "text"}, |
| {"text", jmsg.at("content").get<std::string>()}, |
| } |
| }); |
| } |
| messages.push_back(jmsg); |
| } else { |
| json jmsg = msg.to_json_oaicompat( false); |
| messages.push_back(jmsg); |
| } |
| } |
| return messages; |
| } |
|
|
| |
| json common_chat_msgs_to_json_oaicompat(const std::vector<common_chat_msg> & msgs, bool concat_typed_text) { |
| jinja::caps c; |
| c.supports_string_content = true; |
| c.supports_typed_content = !concat_typed_text; |
| return render_message_to_json(msgs, c); |
| } |
|
|
| json common_chat_tools_to_json_oaicompat(const std::vector<common_chat_tool> & tools) { |
| if (tools.empty()) { |
| return json(); |
| } |
|
|
| auto result = json::array(); |
| for (const auto & tool : tools) { |
| result.push_back({ |
| { "type", "function" }, |
| { "function", { |
| { "name", tool.name }, |
| { "description", tool.description }, |
| { "parameters", json::parse(tool.parameters) }, |
| }}, |
| }); |
| } |
| return result; |
| } |
|
|
| std::vector<common_chat_tool> common_chat_tools_parse_oaicompat(const json & tools) { |
| std::vector<common_chat_tool> result; |
|
|
| try { |
| if (!tools.is_null()) { |
| if (!tools.is_array()) { |
| throw std::invalid_argument("Expected 'tools' to be an array, got " + tools.dump()); |
| } |
| for (const auto & tool : tools) { |
| if (!tool.contains("type")) { |
| throw std::invalid_argument("Missing tool type: " + tool.dump()); |
| } |
| const auto & type = tool.at("type"); |
| if (!type.is_string() || type != "function") { |
| throw std::invalid_argument("Unsupported tool type: " + tool.dump()); |
| } |
| if (!tool.contains("function")) { |
| throw std::invalid_argument("Missing tool function: " + tool.dump()); |
| } |
|
|
| const auto & function = tool.at("function"); |
| result.push_back({ |
| function.at("name"), |
| function.value("description", ""), |
| function.value("parameters", json::object()).dump(), |
| }); |
| } |
| } |
| } catch (const std::exception & e) { |
| throw std::runtime_error("Failed to parse tools: " + std::string(e.what()) + "; tools = " + tools.dump(2)); |
| } |
|
|
| return result; |
| } |
|
|
| common_chat_continuation common_chat_continuation_parse(const nlohmann::ordered_json & value) { |
| if (value.is_boolean() && value.get<bool>()) { |
| return COMMON_CHAT_CONTINUATION_AUTO; |
| } |
| if (value.is_string()) { |
| auto value_str = value.get<std::string>(); |
| if (value_str == "reasoning_content") { |
| return COMMON_CHAT_CONTINUATION_REASONING; |
| } |
| if (value_str == "content") { |
| return COMMON_CHAT_CONTINUATION_CONTENT; |
| } |
| } |
| return COMMON_CHAT_CONTINUATION_NONE; |
| } |
|
|
| bool common_chat_verify_template(const std::string & tmpl, bool use_jinja) { |
| if (use_jinja) { |
| try { |
| common_chat_msg msg; |
| msg.role = "user"; |
| msg.content = "test"; |
|
|
| auto tmpls = common_chat_templates_init( nullptr, tmpl); |
|
|
| common_chat_templates_inputs inputs; |
| inputs.messages = { msg }; |
|
|
| common_chat_templates_apply(tmpls.get(), inputs); |
| return true; |
| } catch (const std::exception & e) { |
| LOG_ERR("%s: failed to apply template: %s\n", __func__, e.what()); |
| return false; |
| } |
| } |
| llama_chat_message chat[] = { |
| { "user", "test" } |
| }; |
| const int res = llama_chat_apply_template(tmpl.c_str(), chat, 1, true, nullptr, 0); |
| return res >= 0; |
| } |
|
|
| std::string common_chat_format_single(const struct common_chat_templates * tmpls, |
| const std::vector<common_chat_msg> & past_msg, |
| const common_chat_msg & new_msg, |
| bool add_ass, |
| bool use_jinja) { |
| common_chat_templates_inputs inputs; |
| inputs.use_jinja = use_jinja; |
| inputs.add_bos = tmpls->add_bos; |
| inputs.add_eos = tmpls->add_eos; |
|
|
| std::string fmt_past_msg; |
| if (!past_msg.empty()) { |
| inputs.messages = past_msg; |
| inputs.add_generation_prompt = false; |
| fmt_past_msg = common_chat_templates_apply(tmpls, inputs).prompt; |
| } |
| std::ostringstream ss; |
| |
| if (add_ass && !fmt_past_msg.empty() && fmt_past_msg.back() == '\n') { |
| ss << "\n"; |
| }; |
| |
| inputs.messages.push_back(new_msg); |
| inputs.add_generation_prompt = add_ass; |
| auto fmt_new_msg = common_chat_templates_apply(tmpls, inputs).prompt; |
| |
| ss << fmt_new_msg.substr(fmt_past_msg.size(), fmt_new_msg.size() - fmt_past_msg.size()); |
| return ss.str(); |
| } |
|
|
| std::string common_chat_format_example(const struct common_chat_templates * tmpls, |
| bool use_jinja, |
| const std::map<std::string, std::string> & chat_template_kwargs) { |
| common_chat_templates_inputs inputs; |
| inputs.use_jinja = use_jinja; |
| inputs.add_bos = tmpls->add_bos; |
| inputs.add_eos = tmpls->add_eos; |
| inputs.chat_template_kwargs = chat_template_kwargs; |
| auto add_simple_msg = [&](auto role, auto content) { |
| common_chat_msg msg; |
| msg.role = role; |
| msg.content = content; |
| inputs.messages.push_back(msg); |
| }; |
| add_simple_msg("system", "You are a helpful assistant"); |
| add_simple_msg("user", "Hello"); |
| add_simple_msg("assistant", "Hi there"); |
| add_simple_msg("user", "How are you?"); |
| return common_chat_templates_apply(tmpls, inputs).prompt; |
| } |
|
|
| #define CHATML_TEMPLATE_SRC \ |
| "{%- for message in messages -%}\n" \ |
| " {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>\n' -}}\n" \ |
| "{%- endfor -%}\n" \ |
| "{%- if add_generation_prompt -%}\n" \ |
| " {{- '<|im_start|>assistant\n' -}}\n" \ |
| "{%- endif -%}" |
|
|
| void common_chat_templates_free(struct common_chat_templates * tmpls) { |
| delete tmpls; |
| } |
|
|
| bool common_chat_templates_was_explicit(const struct common_chat_templates * tmpls) { |
| return tmpls->has_explicit_template; |
| } |
|
|
| |
| |
| static bool is_lfm2_template(const std::string & src) { |
| return src.find("<|tool_list_start|>") != std::string::npos && |
| src.find("<|tool_list_end|>") != std::string::npos; |
| } |
|
|
| common_chat_prompt_preset common_chat_get_asr_prompt(const common_chat_templates * chat_templates) { |
| common_chat_prompt_preset asr_preset; |
| asr_preset.system = ""; |
| asr_preset.user = "Transcribe audio to text"; |
|
|
| if (chat_templates && chat_templates->template_default && is_lfm2_template(chat_templates->template_default->source())) { |
| asr_preset.system = "Perform ASR."; |
| asr_preset.user = ""; |
| } |
|
|
| return asr_preset; |
| } |
|
|
| std::string common_chat_templates_source(const struct common_chat_templates * tmpls, const std::string & variant) { |
| if (!variant.empty()) { |
| if (variant == "tool_use") { |
| if (tmpls->template_tool_use) { |
| return tmpls->template_tool_use->source(); |
| } |
| return ""; |
| } |
| LOG_DBG("%s: unknown template variant: %s\n", __func__, variant.c_str()); |
| } |
| return tmpls->template_default->source(); |
| } |
|
|
| common_chat_templates_ptr common_chat_templates_init(const struct llama_model * model, |
| const std::string & chat_template_override, |
| const std::string & bos_token_override, |
| const std::string & eos_token_override) { |
| std::string default_template_src; |
| std::string template_tool_use_src; |
|
|
| bool has_explicit_template = !chat_template_override.empty(); |
| if (chat_template_override.empty()) { |
| GGML_ASSERT(model != nullptr); |
| const auto * str = llama_model_chat_template(model, nullptr); |
| if (str) { |
| default_template_src = str; |
| has_explicit_template = true; |
| } |
| str = llama_model_chat_template(model, "tool_use"); |
| if (str) { |
| template_tool_use_src = str; |
| has_explicit_template = true; |
| } |
| } else { |
| default_template_src = chat_template_override; |
| } |
| if (default_template_src.empty() || default_template_src == "chatml") { |
| if (!template_tool_use_src.empty()) { |
| default_template_src = template_tool_use_src; |
| } else { |
| default_template_src = CHATML_TEMPLATE_SRC; |
| } |
| } |
|
|
| |
| |
| if (default_template_src.find("<|channel|>") != std::string::npos |
| |
| && default_template_src.find("in message.content or") != std::string::npos) { |
| string_replace_all(default_template_src, |
| "{%- if \"<|channel|>analysis<|message|>\" in message.content or " |
| "\"<|channel|>final<|message|>\" in message.content %}", |
| "{%- if false %}"); |
| } |
|
|
| |
| |
| if (default_template_src.find("[TOOL_CALLS]") != std::string::npos |
| |
| && default_template_src.find("if (message['content'] is none or") != std::string::npos) { |
| string_replace_all(default_template_src, |
| "{%- if (message['content'] is none or message['content'] == '' or " |
| "message['content']|length == 0) and (message['tool_calls'] is not defined or " |
| "message['tool_calls'] is none or message['tool_calls']|length == 0) %}", |
| "{%- if false %}"); |
| } |
|
|
| std::string token_bos = bos_token_override; |
| std::string token_eos = eos_token_override; |
| bool add_bos = false; |
| bool add_eos = false; |
| if (model) { |
| const auto * vocab = llama_model_get_vocab(model); |
| const auto get_token = [&](llama_token token, const char * name, const char * jinja_variable_name) { |
| if (token == LLAMA_TOKEN_NULL) { |
| if (default_template_src.find(jinja_variable_name) != std::string::npos || |
| template_tool_use_src.find(jinja_variable_name) != std::string::npos) { |
| LOG_WRN( |
| "common_chat_templates_init: warning: vocab does not have a %s token, jinja template won't " |
| "work as intended.\n", |
| name); |
| } |
| return std::string(); |
| } |
| return common_token_to_piece(vocab, token, true); |
| }; |
| token_bos = get_token(llama_vocab_bos(vocab), "BOS", "bos_token"); |
| token_eos = get_token(llama_vocab_eos(vocab), "EOS", "eos_token"); |
| add_bos = llama_vocab_get_add_bos(vocab); |
| add_eos = llama_vocab_get_add_eos(vocab); |
| } |
| common_chat_templates_ptr tmpls(new common_chat_templates()); |
| tmpls->has_explicit_template = has_explicit_template; |
| tmpls->add_bos = add_bos; |
| tmpls->add_eos = add_eos; |
| try { |
| tmpls->template_default = std::make_unique<common_chat_template>(default_template_src, token_bos, token_eos); |
| } catch (const std::exception & e) { |
| LOG_ERR("%s: error: %s\n", __func__, e.what()); |
| LOG_ERR("%s: failed to initialize chat template\n", __func__); |
| LOG_ERR("%s: please consider disabling jinja via --no-jinja, or using another chat template\n", __func__); |
| throw e; |
| } |
| if (!template_tool_use_src.empty()) { |
| try { |
| tmpls->template_tool_use = std::make_unique<common_chat_template>(template_tool_use_src, token_bos, token_eos); |
| } catch (const std::exception & e) { |
| LOG_ERR("%s: failed to parse tool use chat template (ignoring it): %s\n", __func__, e.what()); |
| } |
| } |
| return tmpls; |
| } |
|
|
| const char * common_chat_format_name(common_chat_format format) { |
| switch (format) { |
| case COMMON_CHAT_FORMAT_CONTENT_ONLY: |
| return "Content-only"; |
| case COMMON_CHAT_FORMAT_PEG_SIMPLE: |
| return "peg-simple"; |
| case COMMON_CHAT_FORMAT_PEG_NATIVE: |
| return "peg-native"; |
| case COMMON_CHAT_FORMAT_PEG_GEMMA4: |
| return "peg-gemma4"; |
| case COMMON_CHAT_FORMAT_PEG_MINIMAX_M3: |
| return "peg-minimax-m3"; |
| default: |
| throw std::runtime_error("Unknown chat format"); |
| } |
| } |
|
|
| const char * common_reasoning_format_name(common_reasoning_format format) { |
| switch (format) { |
| case COMMON_REASONING_FORMAT_NONE: |
| return "none"; |
| case COMMON_REASONING_FORMAT_AUTO: |
| return "auto"; |
| case COMMON_REASONING_FORMAT_DEEPSEEK: |
| return "deepseek"; |
| case COMMON_REASONING_FORMAT_DEEPSEEK_LEGACY: |
| return "deepseek-legacy"; |
| default: |
| throw std::runtime_error("Unknown reasoning format"); |
| } |
| } |
|
|
| common_reasoning_format common_reasoning_format_from_name(const std::string & format) { |
| if (format == "none") { |
| return COMMON_REASONING_FORMAT_NONE; |
| } |
| if (format == "auto") { |
| return COMMON_REASONING_FORMAT_AUTO; |
| } |
| if (format == "deepseek") { |
| return COMMON_REASONING_FORMAT_DEEPSEEK; |
| } |
| if (format == "deepseek-legacy") { |
| return COMMON_REASONING_FORMAT_DEEPSEEK_LEGACY; |
| } |
| throw std::runtime_error("Unknown reasoning format: " + format); |
| } |
|
|
| static void foreach_function(const json & tools, const std::function<void(const json &)> & fn) { |
| for (const auto & tool : tools) { |
| if (!tool.contains("type") || tool.at("type") != "function" || !tool.contains("function")) { |
| LOG_INF("Skipping tool without function: %s", tool.dump(2).c_str()); |
| continue; |
| } |
| fn(tool); |
| } |
| } |
|
|
| static void foreach_parameter(const json & function, |
| const std::function<void(const std::string &, const json &, bool)> & fn) { |
| if (!function.contains("parameters") || !function.at("parameters").is_object()) { |
| return; |
| } |
| const auto & params = function.at("parameters"); |
| if (!params.contains("properties") || !params.at("properties").is_object()) { |
| return; |
| } |
| const auto & props = params.at("properties"); |
| std::set<std::string> required; |
| if (params.contains("required") && params.at("required").is_array()) { |
| params.at("required").get_to(required); |
| } |
| for (const auto & [name, prop] : props.items()) { |
| bool is_required = (required.find(name) != required.end()); |
| fn(name, prop, is_required); |
| } |
| } |
|
|
| static std::string common_chat_template_direct_apply_impl( |
| const common_chat_template & tmpl, |
| const autoparser::generation_params & inputs, |
| const std::optional<json> & messages_override = std::nullopt, |
| const std::optional<json> & tools_override = std::nullopt, |
| const std::optional<json> & additional_context = std::nullopt) { |
| jinja::context ctx(tmpl.source()); |
|
|
| nlohmann::ordered_json inp = nlohmann::ordered_json{ |
| {"messages", messages_override.has_value() ? *messages_override : inputs.messages}, |
| {"bos_token", tmpl.bos_token()}, |
| {"eos_token", tmpl.eos_token()}, |
| {"enable_thinking", inputs.enable_thinking}, |
| }; |
| if (tools_override.has_value() || !inputs.tools.empty()) { |
| inp["tools"] = tools_override.has_value() ? *tools_override : inputs.tools; |
| } |
| if (inputs.extra_context.is_object()) { |
| |
| for (const auto & [k, v] : inputs.extra_context.items()) { |
| inp[k] = v; |
| } |
| } |
| if (additional_context.has_value()) { |
| |
| for (const auto & [k, v] : additional_context->items()) { |
| inp[k] = v; |
| } |
| } |
| if (inputs.add_generation_prompt) { |
| inp["add_generation_prompt"] = true; |
| } |
| if (inp.contains("preserve_reasoning") && inp["preserve_reasoning"].is_boolean()) { |
| bool enabled = inp["preserve_reasoning"].get<bool>(); |
| jinja::caps_apply_preserve_reasoning(ctx, enabled); |
| } |
|
|
| jinja::global_from_json(ctx, inp, inputs.mark_input); |
|
|
| |
| jinja::runtime runtime(ctx); |
| const jinja::value results = runtime.execute(tmpl.prog); |
| auto parts = jinja::runtime::gather_string_parts(results); |
|
|
| std::string result = parts->as_string().str(); |
|
|
| |
| if (inputs.add_bos && string_starts_with(result, tmpl.bos_token())) { |
| result = result.substr(tmpl.bos_token().size()); |
| } |
| if (inputs.add_eos && string_ends_with(result, tmpl.eos_token())) { |
| result = result.substr(0, result.size() - tmpl.eos_token().size()); |
| } |
| return result; |
| } |
|
|
| std::string common_chat_template_direct_apply( |
| const common_chat_template & tmpl, |
| const autoparser::generation_params & inputs) { |
| return common_chat_template_direct_apply_impl(tmpl, inputs, std::nullopt, std::nullopt, std::nullopt); |
| } |
|
|
| static std::string common_chat_template_generation_prompt_impl( |
| const common_chat_template & tmpl, |
| const autoparser::generation_params & inputs, |
| const std::optional<json> & messages_override = std::nullopt, |
| const std::optional<json> & tools_override = std::nullopt, |
| const std::optional<json> & additional_context = std::nullopt) { |
|
|
| auto adjusted_messages = messages_override ? *messages_override : inputs.messages; |
|
|
| autoparser::generation_params params = inputs; |
| params.add_generation_prompt = false; |
| params.continue_final_message = COMMON_CHAT_CONTINUATION_NONE; |
| std::string no_gen_prompt = common_chat_template_direct_apply_impl(tmpl, params, adjusted_messages, tools_override, additional_context); |
| params.add_generation_prompt = true; |
| std::string gen_prompt = common_chat_template_direct_apply_impl(tmpl, params, adjusted_messages, tools_override, additional_context); |
|
|
| size_t prefix_len = 0; |
| size_t min_size = std::min(no_gen_prompt.size(), gen_prompt.size()); |
| while (prefix_len < min_size && no_gen_prompt[prefix_len] == gen_prompt[prefix_len]) { |
| prefix_len++; |
| } |
| return gen_prompt.substr(prefix_len); |
| } |
|
|
| std::string common_chat_template_generation_prompt( |
| const common_chat_template & tmpl, |
| const autoparser::generation_params & inputs) { |
| return common_chat_template_generation_prompt_impl(tmpl, inputs, std::nullopt, std::nullopt, std::nullopt); |
| } |
|
|
| static common_chat_params common_chat_params_init_ministral_3(const common_chat_template & tmpl, |
| const autoparser::generation_params & inputs) { |
| common_chat_params data; |
|
|
| |
| auto adjusted_messages = json::array(); |
| for (const auto & msg : inputs.messages) { |
| auto role = msg.value("role", ""); |
| if (role != "system" && role != "assistant") { |
| |
| adjusted_messages.push_back(msg); |
| continue; |
| } |
|
|
| auto content = json::array(); |
|
|
| |
| if (msg.contains("reasoning_content") && msg.at("reasoning_content").is_string()) { |
| content.push_back({ |
| { "type", "thinking" }, |
| { "thinking", msg.at("reasoning_content").get<std::string>() }, |
| }); |
| } |
|
|
| |
| if (msg.contains("content")) { |
| if (msg.at("content").is_string()) { |
| content.push_back({ |
| { "type", "text" }, |
| { "text", msg.at("content").get<std::string>() }, |
| }); |
| } else if (msg.at("content").is_array()) { |
| auto blocks = msg.at("content"); |
| content.insert(content.end(), blocks.begin(), blocks.end()); |
| } |
| } |
|
|
| auto adjusted = msg; |
| adjusted["content"] = content; |
| adjusted.erase("reasoning_content"); |
| adjusted_messages.push_back(adjusted); |
| } |
|
|
| auto has_tools = inputs.tools.is_array() && !inputs.tools.empty(); |
| auto has_response_format = inputs.json_schema.is_object() && !inputs.json_schema.empty(); |
| auto extract_reasoning = inputs.reasoning_format != COMMON_REASONING_FORMAT_NONE; |
| auto include_grammar = true; |
|
|
| data.supports_thinking = true; |
| data.thinking_start_tag = "[THINK]"; |
| data.thinking_end_tags = {"[/THINK]"}; |
| data.prompt = common_chat_template_direct_apply_impl(tmpl, inputs, adjusted_messages); |
| data.generation_prompt = common_chat_template_generation_prompt_impl(tmpl, inputs, adjusted_messages); |
| data.format = COMMON_CHAT_FORMAT_PEG_NATIVE; |
| data.preserved_tokens = { |
| "[THINK]", |
| "[/THINK]", |
| "[TOOL_CALLS]", |
| "[ARGS]", |
| }; |
|
|
| if (inputs.has_continuation()) { |
| const auto & msg = inputs.continue_msg; |
|
|
| data.generation_prompt = "[THINK]" + msg.reasoning_content; |
| if (inputs.continue_final_message == COMMON_CHAT_CONTINUATION_CONTENT) { |
| data.generation_prompt += "[/THINK]" + msg.render_content(); |
| } |
|
|
| data.prompt += data.generation_prompt; |
| } |
|
|
| auto parser = build_chat_peg_parser([&](common_chat_peg_builder & p) { |
| auto generation_prompt = p.eps(); |
| auto reasoning = |
| extract_reasoning ? p.optional("[THINK]" + p.reasoning(p.until("[/THINK]")) + "[/THINK]") : p.eps(); |
|
|
| |
| if (has_response_format) { |
| |
| return generation_prompt + (reasoning << "```json" << p.content(p.schema(p.json(), "response-format", inputs.json_schema)) << "```"); |
| } |
|
|
| |
| if (has_tools && inputs.tool_choice != COMMON_CHAT_TOOL_CHOICE_NONE) { |
| auto tool_choice = p.choice(); |
| foreach_function(inputs.tools, [&](const json & tool) { |
| const auto & function = tool.at("function"); |
| std::string name = function.at("name"); |
| const auto & schema = function.at("parameters"); |
|
|
| tool_choice |= |
| p.rule("tool-" + name, p.tool_open(p.tool_name(p.literal(name)) + "[ARGS]") + |
| p.tool_args(p.schema(p.json(), "tool-" + name + "-schema", schema))); |
| }); |
|
|
| auto min_calls = inputs.tool_choice == COMMON_CHAT_TOOL_CHOICE_REQUIRED ? 1 : 0; |
| auto max_calls = inputs.parallel_tool_calls ? -1 : 1; |
| auto tool_calls = p.trigger_rule("tool-call", p.repeat("[TOOL_CALLS]" + tool_choice, min_calls, max_calls)); |
|
|
| return generation_prompt + (reasoning << p.content(p.until("[TOOL_CALLS]")) << tool_calls); |
| } |
|
|
| |
| include_grammar = false; |
| return generation_prompt + (reasoning << p.content(p.rest())); |
| }); |
|
|
| data.parser = parser.save(); |
|
|
| if (include_grammar) { |
| data.grammar_lazy = has_tools && inputs.tool_choice == COMMON_CHAT_TOOL_CHOICE_AUTO; |
|
|
| 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.at("parameters"); |
| 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, "[TOOL_CALLS]" } |
| }; |
| } |
|
|
| return data; |
| } |
|
|
| static common_chat_params common_chat_params_init_qwen3_coder(const common_chat_template & tmpl, |
| const autoparser::generation_params & inputs) { |
| common_chat_params data; |
|
|
| const std::string GEN_PREFIX = "<|im_start|>assistant\n"; |
|
|
| 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; |
|
|
| auto supports_reasoning = tmpl.source().find("<think>") != std::string::npos; |
|
|
| data.supports_thinking = supports_reasoning; |
| data.preserved_tokens = { |
| "<tool_call>", |
| "</tool_call>", |
| }; |
|
|
| if (supports_reasoning) { |
| data.thinking_start_tag = "<think>"; |
| |
| |
| data.thinking_end_tags = { "</think>", "<tool_call>" }; |
| data.preserved_tokens.insert(data.preserved_tokens.end(), { "<think>", "</think>" }); |
| } |
|
|
| data.message_delimiters = { |
| { COMMON_CHAT_ROLE_ASSISTANT, "<|im_start|>assistant" }, |
| { COMMON_CHAT_ROLE_TOOL, "<|im_start|>user\n<tool_response>" }, |
| { COMMON_CHAT_ROLE_TOOL, "<|im_start|>tool_response" }, |
| { COMMON_CHAT_ROLE_USER, "<|im_start|>user" }, |
| { COMMON_CHAT_ROLE_SYSTEM, "<|im_start|>system" }, |
| }; |
|
|
| auto has_tools = inputs.tools.is_array() && !inputs.tools.empty(); |
| auto has_response_format = inputs.json_schema.is_object() && !inputs.json_schema.empty(); |
| 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); |
|
|
| if (inputs.has_continuation()) { |
| const auto & msg = inputs.continue_msg; |
|
|
| data.generation_prompt = GEN_PREFIX; |
| if (supports_reasoning) { |
| data.generation_prompt += "<think>\n" + msg.reasoning_content; |
| if (inputs.continue_final_message == COMMON_CHAT_CONTINUATION_CONTENT) { |
| data.generation_prompt += "\n</think>\n\n"; |
| } |
| } |
| if (inputs.continue_final_message == COMMON_CHAT_CONTINUATION_CONTENT) { |
| data.generation_prompt += 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_PREFIX); |
|
|
| auto reasoning = p.eps(); |
| if (supports_reasoning && extract_reasoning) { |
| reasoning = p.optional("<think>" + p.space() + |
| p.reasoning(p.until_one_of({ "</think>", "<tool_call>" })) + |
| (p.literal("</think>") | p.peek(p.literal("<tool_call>")))); |
| } |
|
|
| |
| if (has_response_format) { |
| return generation_prompt + (reasoning << p.content(p.schema(p.json(), "response-format", inputs.json_schema))); |
| } |
|
|
| |
| if (has_tools && inputs.tool_choice != COMMON_CHAT_TOOL_CHOICE_NONE) { |
| auto arg_close = p.tool_arg_close(p.literal("\n</parameter>\n")); |
| auto arg_string = p.rule("xml-arg-string", |
| p.ac(p.tool_arg_string_value(p.until("\n</parameter>\n")) + arg_close, "\n</parameter>\n")); |
|
|
| 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 parameters = function.contains("parameters") ? function.at("parameters") : json::object(); |
|
|
| auto schema_info = common_schema_info(); |
| schema_info.resolve_refs(parameters); |
|
|
| std::vector<common_peg_parser> required_args; |
| std::vector<common_peg_parser> optional_args; |
|
|
| foreach_parameter(function, [&](const std::string & param_name, const json & param_schema, bool is_required) { |
| auto rule_name = "tool-" + name + "-arg-" + param_name; |
|
|
| auto arg_open = p.tool_arg_open("<parameter=" + p.tool_arg_name(p.literal(param_name)) + ">\n"); |
|
|
| auto arg_value = schema_info.resolves_to_string(param_schema) ? |
| arg_string : |
| p.tool_arg_json_value(p.schema(p.json(), rule_name + "-schema", param_schema)) + arg_close; |
|
|
| auto arg_rule = p.rule(rule_name, p.tool_arg(arg_open + arg_value)); |
|
|
| (is_required ? required_args : optional_args).push_back(arg_rule); |
| }); |
|
|
| |
| |
| auto args = p.permute("tool-" + name + "-args", required_args); |
| if (!optional_args.empty()) { |
| args = args + p.zero_or_more(p.choice(optional_args)); |
| } |
|
|
| auto func = p.tool(p.tool_open("<function=" + p.tool_name(p.literal(name)) + ">\n") + |
| p.tool_args(args) + |
| p.tool_close(p.literal("</function>\n"))); |
|
|
| tool_choice |= p.rule("tool-" + name, func); |
| }); |
|
|
| auto min_calls = inputs.tool_choice == COMMON_CHAT_TOOL_CHOICE_REQUIRED ? 1 : 0; |
|
|
| |
| auto tool_call_body = tool_choice + "</tool_call>" + p.space(); |
| auto tool_call_first = p.rule("tool-call-first", p.optional(p.literal("<tool_call>\n")) + tool_call_body); |
| auto tool_call = p.rule("tool-call", "<tool_call>\n" + tool_call_body); |
|
|
| auto calls = inputs.parallel_tool_calls ? tool_call_first + p.zero_or_more(tool_call) : tool_call_first; |
| auto tool_calls = p.trigger_rule("tool-call-root", p.repeat(calls, min_calls, 1)); |
|
|
| return generation_prompt + |
| (reasoning << p.content(p.until_one_of({ "<tool_call>", "<function=" })) << tool_calls); |
| } |
|
|
| |
| return generation_prompt + (reasoning << p.content(p.rest())); |
| }); |
|
|
| data.parser = parser.save(); |
|
|
| if (include_grammar) { |
| data.grammar_lazy = has_tools && inputs.tool_choice == COMMON_CHAT_TOOL_CHOICE_AUTO; |
|
|
| 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); |
| }); |
|
|
| if (data.grammar_lazy) { |
| data.grammar_triggers = { |
| { COMMON_GRAMMAR_TRIGGER_TYPE_WORD, "<tool_call>" }, |
| |
| |
| { COMMON_GRAMMAR_TRIGGER_TYPE_WORD, "<function" }, |
| }; |
| } |
| } |
|
|
| return data; |
| } |
|
|
| static common_chat_params common_chat_params_init_gpt_oss(const common_chat_template & tmpl, |
| const autoparser::generation_params & inputs) { |
| common_chat_params data; |
|
|
| |
| auto adjusted_messages = json::array(); |
| for (auto msg : inputs.messages) { |
| if (msg.contains("reasoning_content") && msg.at("reasoning_content").is_string()) { |
| msg["thinking"] = msg.at("reasoning_content"); |
| if (msg.contains("tool_calls") && msg.at("tool_calls").is_array() && !msg.at("tool_calls").empty()) { |
| msg.erase("content"); |
| } |
| } |
| adjusted_messages.push_back(msg); |
| } |
|
|
| auto prompt = common_chat_template_direct_apply_impl(tmpl, inputs, adjusted_messages); |
|
|
| |
| |
| |
| if (inputs.is_inference && !inputs.add_generation_prompt) { |
| static constexpr std::string_view return_token = "<|return|>"; |
| static constexpr std::string_view end_token = "<|end|>"; |
| if (size_t pos = prompt.rfind(return_token); pos != std::string::npos) { |
| prompt.replace(pos, return_token.length(), end_token); |
| } |
| } |
|
|
| data.prompt = prompt; |
| data.generation_prompt = common_chat_template_generation_prompt_impl(tmpl, inputs, adjusted_messages); |
| data.message_delimiters = { |
| { COMMON_CHAT_ROLE_ASSISTANT, "<|start|>assistant" }, |
| { COMMON_CHAT_ROLE_USER, "<|start|>user" }, |
| { COMMON_CHAT_ROLE_SYSTEM, "<|start|>developer" }, |
| { COMMON_CHAT_ROLE_SYSTEM, "<|start|>system" }, |
| { COMMON_CHAT_ROLE_TOOL, "<|start|>functions" }, |
| }; |
|
|
| data.format = COMMON_CHAT_FORMAT_PEG_NATIVE; |
| data.supports_thinking = true; |
|
|
| data.thinking_start_tag = "<|channel|>analysis<|message|>"; |
| data.thinking_end_tags = {"<|end|>"}; |
|
|
| |
| |
| data.preserved_tokens = { |
| "<|channel|>", "<|constrain|>", "<|message|>", "<|start|>", "<|end|>", |
| }; |
|
|
| |
| if (inputs.has_continuation()) { |
| const auto & msg = inputs.continue_msg; |
|
|
| data.generation_prompt = "<|start|>assistant<|channel|>analysis<|message|>" + msg.reasoning_content; |
| if (inputs.continue_final_message == COMMON_CHAT_CONTINUATION_CONTENT) { |
| data.generation_prompt += "<|end|><|start|>assistant<|channel|>final<|message|>" + msg.render_content(); |
| } |
|
|
| data.prompt += data.generation_prompt; |
| } |
|
|
| 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 include_grammar = has_response_format || (has_tools && inputs.tool_choice != COMMON_CHAT_TOOL_CHOICE_NONE); |
| auto extract_reasoning = inputs.reasoning_format != COMMON_REASONING_FORMAT_NONE; |
|
|
| auto parser = build_chat_peg_parser([&](common_chat_peg_builder & p) { |
| auto start = p.rule("start", p.literal("<|start|>assistant")); |
| auto end = p.rule("end", p.literal("<|end|>")); |
| auto content = p.rule("message-content", p.until("<|end|>")); |
| auto channel = p.literal("<|channel|>") + (p.literal("commentary") | p.literal("analysis")); |
| auto constrain_type = p.chars("[A-Za-z0-9_-]", 1, -1); |
|
|
| |
| auto stray_commentary = p.optional(p.literal("<|channel|>commentary") + p.optional(p.literal(" to=assistant"))); |
| auto start_analysis = stray_commentary + p.literal("<|channel|>analysis<|message|>"); |
|
|
| if (extract_reasoning) { |
| p.rule("analysis", start_analysis + p.reasoning(content) + end); |
| } else { |
| p.rule("analysis", p.content(start_analysis + content + end)); |
| } |
|
|
| auto analysis = p.ref("analysis"); |
| auto preamble = p.rule("preamble", p.literal("<|channel|>commentary<|message|>") + p.content(content) + end); |
| auto final_msg = p.rule("final", stray_commentary + p.literal("<|channel|>final<|message|>") + p.content(content)); |
|
|
| |
| auto unsolicited = p.rule("unsolicited", p.atomic(p.optional(channel) + p.literal(" to=") + content + end)); |
|
|
| auto any = p.rule("any", preamble | analysis); |
|
|
| if (has_response_format) { |
| auto constraint = p.optional(p.space() + p.optional(p.literal("<|constrain|>")) + constrain_type); |
| auto response_format = p.rule("response-format", |
| p.literal("<|channel|>final") + constraint + p.literal("<|message|>") + |
| p.content(p.schema(p.json(), "response-format-schema", inputs.json_schema))); |
|
|
| return p.zero_or_more(start + analysis) + start + response_format; |
| } |
|
|
| if (has_tools && inputs.tool_choice != COMMON_CHAT_TOOL_CHOICE_NONE) { |
| auto tool_choice = p.choice(); |
|
|
| foreach_function(inputs.tools, [&](const json & tool) { |
| const auto & function = tool.at("function"); |
| std::string name = function.at("name"); |
| const auto & params = function.at("parameters"); |
|
|
| auto func_name = p.literal(" to=functions.") + p.tool_name(p.literal(name)); |
| auto constraint = p.optional(p.space() + p.optional(p.literal("<|constrain|>")) + constrain_type); |
| auto args = p.tool_args(p.schema(p.json(), "tool-" + name + "-schema", params)); |
|
|
| |
| |
| auto tool_in_role = p.tool(p.tool_open(func_name + channel + constraint + p.literal("<|message|>")) + args); |
|
|
| |
| |
| auto tool_in_channel = p.tool(p.tool_open(channel + func_name + constraint + p.literal("<|message|>")) + args); |
|
|
| tool_choice |= p.rule("tool-" + name, tool_in_role | tool_in_channel); |
| }); |
|
|
| auto tool_call = p.trigger_rule("tool-call", tool_choice); |
|
|
| if (inputs.tool_choice == COMMON_CHAT_TOOL_CHOICE_REQUIRED) { |
| return p.zero_or_more(start + any) + start + tool_call; |
| } |
|
|
| return p.zero_or_more(start + any) + start + (tool_call | final_msg); |
| } |
|
|
| return p.zero_or_more(start + any) + start + (final_msg | unsolicited); |
| }); |
|
|
| 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.at("parameters"); |
| 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_PATTERN, "^\\s+to$" }, |
| { COMMON_GRAMMAR_TRIGGER_TYPE_PATTERN, "^<\\|channel\\|>(?:commentary|analysis)\\s+to=functions$" }, |
| { COMMON_GRAMMAR_TRIGGER_TYPE_PATTERN, "<\\|start\\|>assistant(\\s+to)" }, |
| { COMMON_GRAMMAR_TRIGGER_TYPE_PATTERN, "<\\|start\\|>assistant(<\\|channel\\|>(?:commentary|analysis)\\s+to)" } |
| }; |
| } |
|
|
| return data; |
| } |
|
|
| static common_chat_params common_chat_params_init_gemma4(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); |
|
|
| if (inputs.add_generation_prompt && string_ends_with(data.prompt, "<turn|>\n")) { |
| |
| |
| |
| data.generation_prompt = "<|turn>model\n"; |
| data.prompt += data.generation_prompt; |
| } |
|
|
| data.message_delimiters = { |
| { COMMON_CHAT_ROLE_USER, "<|turn>user" }, |
| { COMMON_CHAT_ROLE_ASSISTANT, "<|turn>model" }, |
| }; |
|
|
| data.format = COMMON_CHAT_FORMAT_PEG_GEMMA4; |
| data.supports_thinking = true; |
| data.thinking_start_tag = "<|channel>thought"; |
| data.thinking_end_tags = {"<channel|>"}; |
|
|
| data.preserved_tokens = { |
| "<|channel>", |
| "<channel|>", |
| "<|tool_call>", |
| "<tool_call|>", |
| "<|turn>", |
| }; |
|
|
| if (inputs.has_continuation()) { |
| const auto & msg = inputs.continue_msg; |
|
|
| data.generation_prompt = string_ends_with(data.prompt, "<turn|>\n") ? "<|turn>model\n" : ""; |
| data.generation_prompt += "<|channel>thought\n" + msg.reasoning_content; |
| if (inputs.continue_final_message == COMMON_CHAT_CONTINUATION_CONTENT) { |
| data.generation_prompt += "<channel|>" + msg.render_content(); |
| } |
|
|
| data.prompt += data.generation_prompt; |
| } |
|
|
| 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 include_grammar = has_response_format || (has_tools && inputs.tool_choice != COMMON_CHAT_TOOL_CHOICE_NONE); |
| auto extract_reasoning = inputs.reasoning_format != COMMON_REASONING_FORMAT_NONE; |
|
|
| auto parser = build_chat_peg_parser([&](common_chat_peg_builder & p) { |
| auto start = p.rule("start", p.optional(p.literal("<|turn>model\n"))); |
|
|
| if (extract_reasoning) { |
| p.rule("thought", p.literal("<|channel>thought") + p.space() + p.reasoning(p.until("<channel|>")) + p.literal("<channel|>")); |
| } else { |
| p.rule("thought", p.content(p.literal("<|channel>thought") + p.space() + p.until("<channel|>") + p.literal("<channel|>"))); |
| } |
|
|
| auto consume_empty_channels = p.gbnf(p.zero_or_more(p.literal("<|channel>") + p.negate(p.literal("thought"))), ""); |
| auto thought = (p.peek(p.literal("<|channel>")) + consume_empty_channels + p.ref("thought")) | p.negate(p.literal("<|channel>")); |
|
|
| if (has_response_format) { |
| auto response_format = p.literal("```json") << |
| p.content(p.schema(p.json(), "response-format-schema", inputs.json_schema)) << |
| p.literal("```"); |
| return start + p.optional(thought) + response_format; |
| } |
|
|
| if (has_tools && inputs.tool_choice != COMMON_CHAT_TOOL_CHOICE_NONE) { |
| |
| |
| p.rule("gemma4-string-content", p.until("<|\"|>")); |
| p.rule("gemma4-string", p.literal("<|\"|>") + p.ref("gemma4-string-content") + p.literal("<|\"|>")); |
| p.rule("gemma4-bool", p.json_bool()); |
| p.rule("gemma4-null", p.json_null()); |
| p.rule("gemma4-number", p.json_number()); |
| p.rule("gemma4-dict-key", p.rule("gemma4-dict-key-name", p.chars("[^:}]", 1, -1)) + p.literal(":")); |
| p.rule("gemma4-dict-kv", p.ref("gemma4-dict-key") + p.space() + p.ref("gemma4-value")); |
| p.rule("gemma4-dict", [&]() { |
| auto ws = p.space(); |
| auto member = p.ref("gemma4-dict-kv"); |
| auto members = p.sequence({member, p.zero_or_more(p.sequence({p.literal(","), ws, member}))}); |
| return p.sequence({ |
| p.literal("{"), ws, |
| p.choice({p.literal("}"), p.sequence({members, ws, p.literal("}")})}) |
| }); |
| }); |
| p.rule("gemma4-array", [&]() { |
| auto ws = p.space(); |
| auto value = p.ref("gemma4-value"); |
| auto elements = p.sequence({value, p.zero_or_more(p.sequence({p.literal(","), ws, value}))}); |
| return p.sequence({ |
| p.literal("["), ws, |
| p.choice({p.literal("]"), p.sequence({elements, ws, p.literal("]")})}) |
| }); |
| }); |
| p.rule("gemma4-value", [&]() { |
| return p.choice({ |
| p.ref("gemma4-string"), p.ref("gemma4-dict"), p.ref("gemma4-array"), |
| p.ref("gemma4-number"), p.ref("gemma4-bool"), p.ref("gemma4-null") |
| }); |
| }); |
|
|
| auto tool_choice = p.choice(); |
|
|
| foreach_function(inputs.tools, [&](const json & tool) { |
| const auto & function = tool.at("function"); |
| std::string name = function.at("name"); |
| |
| |
|
|
| tool_choice |= p.rule("tool-" + name, p.tool(p.sequence({ |
| p.tool_open(p.tool_name(p.literal(name)) + p.peek(p.literal("{"))), |
| p.tool_args(p.ref("gemma4-dict")), |
| }))); |
| }); |
|
|
| auto tool_call = p.trigger_rule("tool-call", p.repeat( |
| "<|tool_call>call:" + tool_choice + "<tool_call|>", |
| inputs.tool_choice == COMMON_CHAT_TOOL_CHOICE_REQUIRED ? 1 : 0, |
| inputs.parallel_tool_calls ? -1 : 1 |
| )); |
|
|
| auto scan_to_toolcall = p.rule("scan-to-toolcall", p.until("<|tool_call>")); |
| auto content = p.rule("content", p.content(p.until_one_of({"<|channel>", "<channel|>", "<|tool_call>"}))); |
| auto message = p.rule("message", thought + content); |
| return start + p.zero_or_more(message) + scan_to_toolcall + tool_call; |
| } |
|
|
| |
| |
| |
| auto content = p.rule("content", p.content(p.until_one_of({"<|channel>", "<channel|>"}))); |
| auto message = p.rule("message", thought + content); |
| return start + p.one_or_more(message); |
| }); |
|
|
| 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.at("parameters"); |
| 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, "<|tool_call>" }, |
| }; |
| } |
|
|
| return data; |
| } |
|
|
| |
| static common_chat_params common_chat_params_init_functionary_v3_2(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.preserved_tokens = { |
| ">>>all", |
| }; |
|
|
| auto has_tools = inputs.tools.is_array() && !inputs.tools.empty(); |
| auto include_grammar = has_tools && inputs.tool_choice != COMMON_CHAT_TOOL_CHOICE_NONE; |
|
|
| if (inputs.has_continuation()) { |
| const auto & msg = inputs.continue_msg; |
| data.generation_prompt = "<|start_header_id|>assistant<|end_header_id|>\n\n>>>all\n" + msg.render_content(); |
| data.prompt += data.generation_prompt; |
| } |
|
|
| auto parser = build_chat_peg_parser([&](common_chat_peg_builder & p) { |
| |
| |
| |
| |
|
|
| |
| |
| |
| auto content_until_tool = p.literal("all\n") + p.content(p.until(">>>")); |
| auto content_until_end = p.literal("all\n") + p.content(p.rest()); |
| auto generation_prompt = p.literal("<|start_header_id|>assistant<|end_header_id|>\n\n>>>"); |
|
|
| |
| if (!has_tools || inputs.tool_choice == COMMON_CHAT_TOOL_CHOICE_NONE) { |
| |
| return generation_prompt + content_until_end + p.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"); |
| const auto & schema = function.at("parameters"); |
|
|
| |
| auto tool_parser = p.tool( |
| p.tool_open(p.tool_name(p.literal(name)) + p.literal("\n")) + |
| p.tool_args(p.schema(p.json(), "tool-" + name + "-schema", schema)) |
| ); |
|
|
| tool_choice |= p.rule("tool-" + name, tool_parser); |
| }); |
|
|
| auto content_only = content_until_end; |
| auto tools_only = p.trigger_rule("tools", p.one_or_more(tool_choice)); |
| auto content_and_tools = content_until_tool + tools_only; |
|
|
| auto ret = p.eps(); |
| if (inputs.tool_choice == COMMON_CHAT_TOOL_CHOICE_REQUIRED) { |
| if (inputs.parallel_tool_calls) { |
| ret = p.choice({ content_and_tools, tools_only }) + p.end(); |
| } else { |
| ret = p.choice({ content_until_tool + tool_choice, tools_only }) + p.end(); |
| } |
| } else if (inputs.parallel_tool_calls) { |
| ret = p.choice({ content_and_tools, content_only, tools_only }) + p.end(); |
| } else { |
| auto content_and_tool = content_until_tool + tool_choice; |
| ret = p.choice({ content_and_tool, content_only, tool_choice }) + p.end(); |
| } |
| return generation_prompt + ret; |
| }); |
|
|
| data.parser = parser.save(); |
|
|
| if (include_grammar) { |
| data.grammar_lazy = inputs.tool_choice == COMMON_CHAT_TOOL_CHOICE_AUTO; |
|
|
| 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.at("parameters"); |
| builder.resolve_refs(schema); |
| }); |
| parser.build_grammar(builder, data.grammar_lazy); |
| }); |
|
|
| |
| |
| data.grammar_triggers = { |
| { COMMON_GRAMMAR_TRIGGER_TYPE_PATTERN, ">>>(?!all)" } |
| }; |
| } |
|
|
| return data; |
| } |
|
|
| |
| |
| static common_chat_params common_chat_params_init_kimi_k2(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.preserved_tokens = { |
| "<|tool_calls_section_begin|>", |
| "<|tool_calls_section_end|>", |
| "<|tool_call_begin|>", |
| "<|tool_call_argument_begin|>", |
| "<|tool_call_end|>", |
| "<think>", |
| "</think>", |
| }; |
|
|
| auto has_tools = inputs.tools.is_array() && !inputs.tools.empty(); |
| auto extract_reasoning = inputs.reasoning_format != COMMON_REASONING_FORMAT_NONE; |
| auto include_grammar = has_tools && inputs.tool_choice != COMMON_CHAT_TOOL_CHOICE_NONE; |
|
|
| const std::string SECTION_BEGIN = "<|tool_calls_section_begin|>"; |
| const std::string SECTION_END = "<|tool_calls_section_end|>"; |
| const std::string CALL_BEGIN = "<|tool_call_begin|>"; |
| const std::string ARGS_BEGIN = "<|tool_call_argument_begin|>"; |
| const std::string CALL_END = "<|tool_call_end|>"; |
|
|
| const std::string THINK_START = "<think>"; |
| const std::string THINK_END = "</think>"; |
| const std::string GEN_PROMPT = "<|im_assistant|>assistant<|im_middle|>"; |
|
|
| data.thinking_start_tag = THINK_START; |
| data.thinking_end_tags = {THINK_END}; |
|
|
| 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 end = p.end(); |
|
|
| |
| |
| auto reasoning = extract_reasoning ? p.optional(THINK_START + p.reasoning( |
| p.until_one_of({ THINK_END, "<|tool_calls_section_begin|>", "<|tool_call_begin|>" })) + |
| p.optional(p.literal(THINK_END))) : p.eps(); |
| auto generation_prompt = p.literal(GEN_PROMPT); |
|
|
|
|
| |
| 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"); |
| const auto & schema = function.at("parameters"); |
|
|
| |
| |
| auto tool_id = p.tool_id(p.literal("functions.") + p.tool_name(p.literal(name)) + p.literal(":") + p.chars("[0-9]", 1, -1)); |
| auto tool_parser = p.tool( |
| p.tool_open(tool_id + p.literal(ARGS_BEGIN)) + |
| p.tool_args(p.schema(p.json(), "tool-" + name + "-schema", schema)) + |
| p.tool_close(p.optional((p.literal(CALL_END)))) |
| ); |
|
|
| tool_choice |= p.rule("tool-" + name, tool_parser); |
| }); |
|
|
| |
| auto min_calls = inputs.tool_choice == COMMON_CHAT_TOOL_CHOICE_REQUIRED ? 1 : 0; |
| auto max_calls = inputs.parallel_tool_calls ? -1 : 1; |
| |
| auto tool_calls = p.rule("tool-calls", |
| p.optional(p.literal(SECTION_BEGIN)) + |
| p.trigger_rule("tool-call", p.repeat(CALL_BEGIN + tool_choice, min_calls, max_calls) + |
| p.optional(p.literal(SECTION_END))) |
| ); |
|
|
| auto content_before_tools = p.content(p.until_one_of({ SECTION_BEGIN, CALL_BEGIN })); |
|
|
| return generation_prompt + reasoning + content_before_tools + tool_calls + end; |
| }); |
|
|
| data.parser = parser.save(); |
|
|
| if (include_grammar) { |
| data.grammar_lazy = inputs.tool_choice == COMMON_CHAT_TOOL_CHOICE_AUTO; |
| 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.at("parameters"); |
| builder.resolve_refs(schema); |
| }); |
| parser.build_grammar(builder, data.grammar_lazy); |
| }); |
|
|
| data.grammar_triggers = { |
| { COMMON_GRAMMAR_TRIGGER_TYPE_WORD, "<|tool_call_begin|>" } |
| }; |
| } |
|
|
| return data; |
| } |
|
|
| |
| |
| |
| |
| static common_chat_params common_chat_params_init_lfm2(const common_chat_template & tmpl, |
| const autoparser::generation_params & inputs, |
| bool tool_list_tokens) { |
| common_chat_params data; |
|
|
| const std::string TOOL_CALL_START = "<|tool_call_start|>"; |
| const std::string TOOL_CALL_END = "<|tool_call_end|>"; |
| const std::string TOOL_LIST_START = "<|tool_list_start|>"; |
| const std::string TOOL_LIST_END = "<|tool_list_end|>"; |
| const std::string THINK_START = "<think>"; |
| const std::string THINK_END = "</think>"; |
| const std::string GEN_PROMPT = "<|im_start|>assistant\n"; |
|
|
| |
| auto adjusted_messages = json::array(); |
| for (auto msg : inputs.messages) { |
| if (msg.contains("reasoning_content") && msg.at("reasoning_content").is_string()) { |
| msg["thinking"] = msg.at("reasoning_content"); |
| } |
| adjusted_messages.push_back(msg); |
| } |
|
|
| data.prompt = common_chat_template_direct_apply_impl(tmpl, inputs, adjusted_messages); |
| data.generation_prompt = common_chat_template_generation_prompt_impl(tmpl, inputs, adjusted_messages); |
| data.format = COMMON_CHAT_FORMAT_PEG_NATIVE; |
| data.supports_thinking = true; |
| data.preserved_tokens = { TOOL_CALL_START, TOOL_CALL_END, THINK_START, THINK_END }; |
| if (tool_list_tokens) { |
| data.preserved_tokens.push_back(TOOL_LIST_START); |
| data.preserved_tokens.push_back(TOOL_LIST_END); |
| } |
|
|
| data.thinking_start_tag = THINK_START; |
| data.thinking_end_tags = {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 && |
| tmpl.source().find(THINK_START) != std::string::npos; |
| auto include_grammar = has_response_format || (has_tools && inputs.tool_choice != COMMON_CHAT_TOOL_CHOICE_NONE); |
|
|
| 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(); |
| if (extract_reasoning) { |
| reasoning = p.optional(THINK_START + p.reasoning(p.until(THINK_END)) + THINK_END); |
| } |
|
|
| if (!has_tools || inputs.tool_choice == COMMON_CHAT_TOOL_CHOICE_NONE) { |
| if (has_response_format) { |
| auto response_format = p.content(p.schema(p.json(), "response-format-schema", inputs.json_schema)); |
| return generation_prompt + reasoning + response_format + end; |
| } |
| return generation_prompt + reasoning + p.content(p.rest()) + end; |
| } |
| auto tool_calls = p.rule("tool-calls", |
| p.trigger_rule("tool-call", |
| p.literal(TOOL_CALL_START) + |
| p.python_style_tool_calls(inputs.tools, inputs.parallel_tool_calls, true) + |
| p.literal(TOOL_CALL_END) |
| ) |
| ); |
|
|
| auto content = p.content(p.until(TOOL_CALL_START)); |
|
|
| return generation_prompt + reasoning + content + 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.at("parameters"); |
| 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, TOOL_CALL_START } |
| }; |
| } |
|
|
| return data; |
| } |
|
|
| static common_chat_params common_chat_params_init_gigachat_v3( |
| 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 = false; |
| data.preserved_tokens = { |
| "<|message_sep|>\n\n", |
| "<|role_sep|>\n", |
| }; |
|
|
| if (inputs.has_continuation()) { |
| const auto & msg = inputs.continue_msg; |
| data.generation_prompt = "assistant<|role_sep|>\n" + msg.render_content(); |
| data.prompt += data.generation_prompt; |
| } |
|
|
| auto has_tools = inputs.tools.is_array() && !inputs.tools.empty(); |
| auto include_grammar = has_tools && inputs.tool_choice != COMMON_CHAT_TOOL_CHOICE_NONE; |
| const auto *tool_call_start_prefix = "<|message_sep|>\n\nfunction call<|role_sep|>\n"; |
|
|
| auto parser = build_chat_peg_parser([&](common_chat_peg_builder & p) { |
| auto ret = p.eps(); |
| if (has_tools && inputs.tool_choice != COMMON_CHAT_TOOL_CHOICE_NONE) { |
| |
| auto tool_choice = p.choice(); |
| for (const auto & tool : inputs.tools) { |
| const auto & function = tool.at("function"); |
| std::string name = function.at("name"); |
| const auto & schema = function.at("parameters"); |
|
|
| auto tool_name = p.json_member("name", "\"" + p.tool_name(p.literal(name)) + "\""); |
| auto tool_args = p.json_member("arguments", p.tool_args(p.schema(p.json(), "tool-" + name + "-schema", schema))); |
|
|
| auto tool_open = p.tool_open(p.literal("{") << tool_name); |
|
|
| tool_choice |= p.rule("tool-" + name, tool_open << "," << tool_args << "}"); |
| } |
|
|
| |
| auto min_calls = inputs.tool_choice == COMMON_CHAT_TOOL_CHOICE_REQUIRED ? 1 : 0; |
| auto max_calls = 1; |
| auto tool_call = p.rule("tool-call", p.literal(tool_call_start_prefix) + tool_choice); |
| auto tool_calls = p.trigger_rule("tool-call-root", p.repeat(tool_call, min_calls, max_calls)); |
|
|
| ret = p.content(p.until("<|message_sep|>\n\n")) << tool_calls; |
| } else { |
| |
| include_grammar = false; |
| ret = p.content(p.rest()); |
| } |
|
|
| return p.literal("assistant<|role_sep|>\n") + ret; |
| }); |
|
|
| data.parser = parser.save(); |
|
|
| if (include_grammar) { |
| data.grammar_lazy = has_tools && inputs.tool_choice == COMMON_CHAT_TOOL_CHOICE_AUTO; |
|
|
| 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.at("parameters"); |
| builder.resolve_refs(schema); |
| }); |
| parser.build_grammar(builder, data.grammar_lazy); |
| }); |
|
|
| data.grammar_triggers = { |
| {COMMON_GRAMMAR_TRIGGER_TYPE_WORD, tool_call_start_prefix} |
| }; |
| } |
| return data; |
| } |
|
|
| |
| |
| |
| static json deepseek_v4_sort_tool_results(const json & messages) { |
| json adjusted = messages; |
| std::map<std::string, size_t> call_order; |
|
|
| for (size_t i = 0; i < adjusted.size();) { |
| const auto & msg = adjusted[i]; |
| const auto role = msg.value("role", ""); |
|
|
| if (role == "assistant" && msg.contains("tool_calls") && |
| msg.at("tool_calls").is_array() && !msg.at("tool_calls").empty()) { |
| call_order.clear(); |
| const auto & tool_calls = msg.at("tool_calls"); |
| for (size_t idx = 0; idx < tool_calls.size(); idx++) { |
| auto id = tool_calls[idx].value("id", ""); |
| if (!id.empty()) { |
| call_order[id] = idx; |
| } |
| } |
| i++; |
| continue; |
| } |
|
|
| if (role != "user" && role != "tool") { |
| i++; |
| continue; |
| } |
|
|
| |
| std::vector<size_t> tool_positions; |
| size_t run_end = i; |
| for (; run_end < adjusted.size(); run_end++) { |
| const auto r = adjusted[run_end].value("role", ""); |
| if (r == "tool") { |
| tool_positions.push_back(run_end); |
| } else if (r != "user") { |
| break; |
| } |
| } |
|
|
| if (tool_positions.size() > 1 && !call_order.empty()) { |
| std::vector<json> results; |
| results.reserve(tool_positions.size()); |
| for (auto pos : tool_positions) { |
| results.push_back(adjusted[pos]); |
| } |
| std::stable_sort(results.begin(), results.end(), [&](const json & a, const json & b) { |
| const auto order = [&](const json & m) { |
| auto it = call_order.find(m.value("tool_call_id", "")); |
| return it == call_order.end() ? (size_t) 0 : it->second; |
| }; |
| return order(a) < order(b); |
| }); |
| for (size_t k = 0; k < tool_positions.size(); k++) { |
| adjusted[tool_positions[k]] = std::move(results[k]); |
| } |
| } |
|
|
| i = run_end; |
| } |
|
|
| return adjusted; |
| } |
|
|
| static common_chat_params common_chat_params_init_deepseek_v3_2(const common_chat_template & tmpl, |
| const autoparser::generation_params & inputs) { |
| common_chat_params data; |
|
|
| |
| |
| |
| |
| const bool is_v4 = tmpl.source().find("function_calls") == std::string::npos; |
|
|
| std::optional<json> adjusted_messages; |
| if (is_v4) { |
| adjusted_messages = deepseek_v4_sort_tool_results(inputs.messages); |
| } |
|
|
| 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); |
|
|
| std::optional<json> additional_context; |
| if (is_v4 && has_response_format) { |
| additional_context = json{ { "response_format", inputs.json_schema } }; |
| } |
|
|
| const std::string DSML = "|DSML|"; |
| const std::string THINK_START = "<think>"; |
| const std::string THINK_END = "</think>"; |
| const std::string TC_BLOCK = is_v4 ? "tool_calls" : "function_calls"; |
| const std::string FC_START = "<" + DSML + TC_BLOCK + ">"; |
| const std::string FC_END = "</" + DSML + TC_BLOCK + ">"; |
| const std::string INVOKE_START = "<" + DSML + "invoke"; |
| const std::string INVOKE_END = "</" + DSML + "invoke>"; |
| const std::string PARAM_START = "<" + DSML + "parameter"; |
| const std::string PARAM_END = "</" + DSML + "parameter>"; |
| const std::string GEN_PROMPT = "<|Assistant|>"; |
| const std::string TC_SEPARATOR = "\n\n"; |
|
|
| data.prompt = common_chat_template_direct_apply_impl( |
| tmpl, inputs, adjusted_messages, std::nullopt, additional_context); |
| data.generation_prompt = common_chat_template_generation_prompt_impl( |
| tmpl, inputs, adjusted_messages, std::nullopt, additional_context); |
| data.format = COMMON_CHAT_FORMAT_PEG_NATIVE; |
| data.supports_thinking = true; |
| data.thinking_start_tag = THINK_START; |
| data.thinking_end_tags = {THINK_END, FC_START}; |
| data.preserved_tokens = { |
| DSML, |
| THINK_START, |
| THINK_END, |
| }; |
|
|
| if (inputs.has_continuation()) { |
| const auto & msg = inputs.continue_msg; |
|
|
| if (is_v4 && msg.reasoning_content.empty()) { |
| data.generation_prompt = GEN_PROMPT + THINK_END; |
| if (inputs.continue_final_message == COMMON_CHAT_CONTINUATION_CONTENT) { |
| data.generation_prompt += msg.render_content(); |
| } |
| } else { |
| 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; |
| } |
|
|
| bool require_tools = inputs.tool_choice == COMMON_CHAT_TOOL_CHOICE_REQUIRED; |
| bool has_tool_calls = has_tools && inputs.tool_choice != COMMON_CHAT_TOOL_CHOICE_NONE; |
|
|
| auto parser = build_chat_peg_parser([&](common_chat_peg_builder & p) { |
| auto generation_prompt = p.literal(GEN_PROMPT); |
| auto end = p.end(); |
|
|
| |
| auto tool_choice = p.choice(); |
| if (has_tool_calls) { |
| 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); |
|
|
| auto arg = p.tool_arg( |
| p.tool_arg_open(p.literal(PARAM_START + " name=\"") + p.tool_arg_name(p.literal(param_name)) + |
| p.literal("\" string=\"" + std::string(is_string ? "true" : "false") + "\">")) + |
| (is_string ? |
| p.tool_arg_string_value(p.until(PARAM_END)) : |
| p.tool_arg_json_value(p.schema(p.json(), "tool-" + name + "-arg-" + param_name + "-schema", |
| param_schema, false))) + |
| p.tool_arg_close(p.literal(PARAM_END))); |
|
|
| 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(INVOKE_START + " name=\"") + |
| p.tool_name(p.literal(name)) + p.literal("\">\n")) + |
| invoke_body + p.space() + p.tool_close(p.literal(INVOKE_END))); |
|
|
| tool_choice |= p.rule("tool-" + name, func_parser); |
| }); |
| } |
|
|
| 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)); |
| } |
|
|
| auto reasoning = p.eps(); |
| auto reasoning_with_tc = p.eps(); |
| auto obligatory_tool_calls = tool_calls; |
| bool allow_reasoning_with_tc = false; |
|
|
| if (!require_tools) { |
| tool_calls = p.optional(tool_calls); |
| } |
|
|
| if (extract_reasoning && inputs.enable_thinking) { |
| reasoning = p.optional(THINK_START + p.reasoning(p.until(THINK_END)) + THINK_END); |
| reasoning_with_tc = THINK_START + |
| p.reasoning(p.until_one_of({ TC_SEPARATOR + FC_START, FC_START, THINK_END })) + |
| p.space() + obligatory_tool_calls; |
| allow_reasoning_with_tc = true; |
| } else if (extract_reasoning) { |
| |
| |
| |
| reasoning = is_v4 |
| ? p.optional(p.literal(THINK_END)) |
| : 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_tool_calls) { |
| return generation_prompt + reasoning + p.content(p.rest()) + end; |
| } |
|
|
| auto content_before_tools = p.negate(p.literal(THINK_START)) + |
| p.content(p.until_one_of({ TC_SEPARATOR + FC_START, FC_START })) + |
| p.space(); |
| return allow_reasoning_with_tc ? generation_prompt + (reasoning_with_tc | (reasoning + content_before_tools + tool_calls)) + end : |
| generation_prompt + reasoning + content_before_tools + tool_calls + end; |
| }); |
|
|
| data.parser = parser.save(); |
|
|
| if (include_grammar) { |
| data.grammar_lazy = has_tools && !require_tools; |
| 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; |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| static common_chat_params common_chat_params_init_cohere2moe(const common_chat_template & tmpl, |
| const autoparser::generation_params & inputs) { |
| common_chat_params data; |
|
|
| const std::string TURN_START = "<|START_OF_TURN_TOKEN|>"; |
| const std::string TURN_END = "<|END_OF_TURN_TOKEN|>"; |
| const std::string CHATBOT = "<|CHATBOT_TOKEN|>"; |
| const std::string USER = "<|USER_TOKEN|>"; |
| const std::string SYSTEM = "<|SYSTEM_TOKEN|>"; |
| const std::string THINK_START = "<|START_THINKING|>"; |
| const std::string THINK_END = "<|END_THINKING|>"; |
| const std::string TEXT_START = "<|START_TEXT|>"; |
| const std::string TEXT_END = "<|END_TEXT|>"; |
| const std::string ACTION_START = "<|START_ACTION|>"; |
| const std::string ACTION_END = "<|END_ACTION|>"; |
| const std::string RESULT_START = "<|START_TOOL_RESULT|>"; |
| const std::string RESULT_END = "<|END_TOOL_RESULT|>"; |
|
|
| |
| const std::string GEN_PREFIX = TURN_START + CHATBOT; |
|
|
| 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 = THINK_START; |
| data.thinking_end_tags = {THINK_END}; |
| data.preserved_tokens = { |
| TURN_START, TURN_END, CHATBOT, USER, SYSTEM, |
| THINK_START, THINK_END, |
| TEXT_START, TEXT_END, |
| ACTION_START, ACTION_END, |
| RESULT_START, RESULT_END, |
| }; |
|
|
| |
| |
| |
| data.message_delimiters = { |
| { COMMON_CHAT_ROLE_ASSISTANT, GEN_PREFIX }, |
| { COMMON_CHAT_ROLE_USER, TURN_START + USER }, |
| { COMMON_CHAT_ROLE_TOOL, TURN_START + SYSTEM + RESULT_START }, |
| { COMMON_CHAT_ROLE_SYSTEM, TURN_START + SYSTEM }, |
| }; |
|
|
| auto has_tools = inputs.tools.is_array() && !inputs.tools.empty(); |
| auto has_response_format = inputs.json_schema.is_object() && !inputs.json_schema.empty(); |
| 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); |
|
|
| if (inputs.has_continuation()) { |
| const auto & msg = inputs.continue_msg; |
|
|
| data.generation_prompt = GEN_PREFIX + THINK_START + msg.reasoning_content; |
| if (inputs.continue_final_message == COMMON_CHAT_CONTINUATION_CONTENT) { |
| data.generation_prompt += THINK_END + TEXT_START + 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_PREFIX); |
| auto end = p.end(); |
|
|
| |
| |
| |
| common_peg_parser reasoning = p.eps(); |
| if (extract_reasoning) { |
| reasoning = p.optional(p.literal(THINK_START) + |
| p.reasoning(p.until_one_of({ THINK_END, TEXT_START, ACTION_START })) + |
| p.optional(p.literal(THINK_END))); |
| } else { |
| reasoning = p.optional(p.content(p.literal(THINK_START) + |
| p.until_one_of({ THINK_END, TEXT_START, ACTION_START }) + |
| p.optional(p.literal(THINK_END)))); |
| } |
|
|
| auto text_content = has_response_format |
| ? p.literal(TEXT_START) + |
| p.content(p.schema(p.json(), "response-format-schema", inputs.json_schema)) + |
| p.optional(p.literal(TEXT_END)) |
| : p.literal(TEXT_START) + p.content(p.until(TEXT_END)) + p.optional(p.literal(TEXT_END)); |
|
|
| if (!has_tools || inputs.tool_choice == COMMON_CHAT_TOOL_CHOICE_NONE) { |
| return generation_prompt + reasoning + text_content + p.optional(p.literal(TURN_END)) + end; |
| } |
|
|
| auto require_tools = inputs.tool_choice == COMMON_CHAT_TOOL_CHOICE_REQUIRED; |
|
|
| |
| auto tool_calls = p.standard_json_tools(ACTION_START, ACTION_END, inputs.tools, inputs.parallel_tool_calls, |
| true, |
| "tool_name", |
| "parameters", |
| true, |
| false, |
| "", |
| "tool_call_id", |
| { "tool_call_id", "tool_name", "parameters" }); |
|
|
| |
| common_peg_parser body = require_tools ? tool_calls : p.choice({ tool_calls, text_content }); |
|
|
| return generation_prompt + reasoning + body + p.optional(p.literal(TURN_END)) + end; |
| }); |
|
|
| data.parser = parser.save(); |
|
|
| if (include_grammar) { |
| data.grammar_lazy = !has_response_format && inputs.tool_choice == COMMON_CHAT_TOOL_CHOICE_AUTO; |
| 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.at("parameters"); |
| 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, ACTION_START } |
| }; |
| } |
|
|
| 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_MINIMAX_M3; |
| data.supports_thinking = true; |
| data.thinking_start_tag = "<mm:think>"; |
| data.thinking_end_tags = {"</mm:think>"}; |
|
|
| |
| |
| 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, |
| }; |
|
|
| data.message_delimiters = { |
| { COMMON_CHAT_ROLE_ASSISTANT, "]~b]ai" }, |
| { COMMON_CHAT_ROLE_USER, "]~b]user" }, |
| { COMMON_CHAT_ROLE_TOOL, "]~b]tool" }, |
| { COMMON_CHAT_ROLE_SYSTEM, "]~b]developer" }, |
| { COMMON_CHAT_ROLE_SYSTEM, "]~b]system" }, |
| }; |
|
|
| 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; |
|
|
| using mm3 = common_chat_peg_minimax_m3_mapper; |
|
|
| 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.prefix(GEN_PROMPT, THINK_START); |
| auto end = p.end(); |
|
|
| auto reasoning = p.eps(); |
| if (extract_reasoning) { |
| auto block = inputs.enable_thinking |
| ? p.literal(THINK_START) + p.space() + |
| p.ac(p.reasoning(p.until(THINK_END)) + p.literal(THINK_END), THINK_END) |
| : p.literal(THINK_START) + p.ac(p.until(THINK_END) + p.literal(THINK_END), THINK_END); |
|
|
| |
| |
| reasoning = p.optional(p.choice({ block, 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 alternatives_of = [](const json & schema) -> std::optional<json> { |
| for (const auto * keyword : { "oneOf", "anyOf" }) { |
| if (schema.contains(keyword) && schema.at(keyword).is_array() && !schema.at(keyword).empty()) { |
| return schema.at(keyword); |
| } |
| } |
| return std::nullopt; |
| }; |
|
|
| 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(); |
|
|
| auto schema_info = common_schema_info(); |
| schema_info.resolve_refs(params); |
|
|
| |
| std::function<common_peg_parser(const json &, const std::string &, const std::string &)> value_of; |
| std::function<common_peg_parser(const json &, const std::string &)> members_of; |
|
|
| auto element_of = [&](const std::string & tag, const json & schema, const std::string & rule_name) { |
| const std::string close = NS + "</" + tag + ">"; |
| return p.rule(rule_name, |
| p.tool_arg( |
| p.tool_arg_open( |
| p.literal(NS + "<") + |
| p.tool_arg_name(p.literal(tag)) + |
| p.literal(">")) + |
| value_of(schema, rule_name, close))); |
| }; |
|
|
| value_of = [&](const json & schema, |
| const std::string & rule_name, |
| const std::string & close) -> common_peg_parser { |
| auto close_tag = p.tool_arg_close(p.literal(close)); |
|
|
| |
| if (schema_info.resolves_to_string(schema)) { |
| return p.ac(p.tool_arg_string_value(p.until(close)) + close_tag, close); |
| } |
|
|
| if (auto alternatives = alternatives_of(schema)) { |
| std::vector<common_peg_parser> choices; |
|
|
| size_t index = 0; |
| for (const auto & alternative : *alternatives) { |
| const std::string alt_name = rule_name + "-" + std::to_string(index++); |
|
|
| |
| |
| choices.push_back(value_of(alternative, alt_name, close)); |
| } |
|
|
| return p.choice(choices); |
| } |
|
|
| const std::string type = schema.contains("type") && schema.at("type").is_string() |
| ? schema.at("type").get<std::string>() |
| : ""; |
|
|
| if (type == "object" && schema.contains("properties")) { |
| return p.tag(mm3::TOOL_ARG_OBJECT, members_of(schema, rule_name)) + p.space() + close_tag; |
| } |
|
|
| if (type == "array" && schema.contains("items")) { |
| const std::string item_close = NS + "</item>"; |
| auto item = p.rule(rule_name + "-item", |
| p.tag(mm3::TOOL_ARG_ITEM, |
| p.literal(NS + "<item>") + |
| value_of(schema.at("items"), rule_name + "-item", item_close))); |
| return p.tag(mm3::TOOL_ARG_ARRAY, p.repeat(p.space() + item, 0, -1)) + p.space() + close_tag; |
| } |
|
|
| return p.tool_arg_json_value(p.schema(p.json(), rule_name + "-schema", schema, false)) + close_tag; |
| }; |
|
|
| |
| members_of = [&](const json & schema, const std::string & rule_prefix) -> common_peg_parser { |
| const auto & props = schema.at("properties"); |
|
|
| std::set<std::string> required; |
| if (schema.contains("required")) { |
| schema.at("required").get_to(required); |
| } |
|
|
| std::vector<common_peg_parser> required_elements; |
| std::vector<common_peg_parser> optional_elements; |
| for (const auto & [key, key_schema] : props.items()) { |
| auto element = element_of(key, key_schema, rule_prefix + "-" + key); |
| if (required.find(key) != required.end()) { |
| required_elements.push_back(element); |
| } else { |
| optional_elements.push_back(element); |
| } |
| } |
|
|
| common_peg_parser members = p.eps(); |
| for (size_t i = 0; i < required_elements.size(); i++) { |
| if (i > 0) { |
| members = members + p.space(); |
| } |
| members = members + required_elements[i]; |
| } |
|
|
| if (!optional_elements.empty()) { |
| common_peg_parser any_optional = p.choice(); |
| for (const auto & element : optional_elements) { |
| any_optional |= element; |
| } |
| members = members + p.repeat(p.space() + any_optional, 0, -1); |
| } |
|
|
| return members; |
| }; |
|
|
| common_peg_parser invoke_body = |
| params.contains("properties") ? members_of(params, "tool-" + name + "-arg") : p.eps(); |
|
|
| 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; |
| } |
|
|
| namespace workaround { |
|
|
| static void map_developer_role_to_system(json & messages) { |
| for (auto & message : messages) { |
| if (message.contains("role")) { |
| if (message["role"] == "developer") { |
| message["role"] = "system"; |
| } |
| } |
| } |
| } |
|
|
|
|
| |
| static void system_message_not_supported(json & messages) { |
| if (!messages.empty() && messages.front().at("role") == "system") { |
| if (messages.size() > 1) { |
| LOG_DBG("Merging system prompt into next message\n"); |
| auto & first_msg = messages.front(); |
| auto & second_msg = messages[1]; |
| second_msg["content"] = first_msg.at("content").get<std::string>() |
| + "\n" + second_msg.at("content").get<std::string>(); |
| messages.erase(messages.begin()); |
| } else { |
| LOG_WRN("Removing system prompt due to template not supporting system role\n"); |
| messages.erase(messages.begin()); |
| } |
| } |
| } |
|
|
| static void requires_non_null_content(json & messages) { |
| GGML_ASSERT(messages.is_array()); |
| for (auto & message : messages) { |
| if (message.contains("tool_calls") && !message.contains("content")) { |
| message["content"] = ""; |
| } |
| } |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| struct gemma4_model_turn_builder { |
| json & messages; |
| size_t pos; |
| json tool_calls = json::array(); |
| json tool_responses = json::array(); |
| json content; |
| json reasoning_content; |
|
|
| gemma4_model_turn_builder(json & msgs, size_t pos) : messages(msgs), pos(pos) {} |
|
|
| void collect() { |
| |
| auto & msg = messages[pos]; |
| if (msg.contains("reasoning_content") && msg.at("reasoning_content").is_string()) { |
| |
| |
| reasoning_content = msg.at("reasoning_content"); |
| } |
| for (auto & tc : msg.at("tool_calls")) { |
| tool_calls.push_back(tc); |
| } |
| pos++; |
|
|
| |
| while (pos < messages.size() && messages[pos].value("role", "") == "tool") { |
| collect_result(messages[pos]); |
| pos++; |
| } |
|
|
| |
| if (pos < messages.size() && messages[pos].value("role", "") == "assistant") { |
| auto & next = messages[pos]; |
| if (!has_tool_calls(next) && has_content(next)) { |
| content = next.at("content"); |
| pos++; |
| } |
| } |
| } |
|
|
| void collect_result(const json & curr) { |
| json response; |
| if (curr.contains("content")) { |
| const auto & content = curr.at("content"); |
| if (content.is_string()) { |
| |
| try { |
| response = json::parse(content.get<std::string>()); |
| } catch (...) { |
| response = content; |
| } |
| } else { |
| response = content; |
| } |
| } |
|
|
| std::string name; |
|
|
| |
| size_t idx = tool_responses.size(); |
| if (idx < tool_calls.size()) { |
| auto & tc = tool_calls[idx]; |
| if (tc.contains("function")) { |
| name = tc.at("function").value("name", ""); |
| } |
| } |
|
|
| |
| if (name.empty()) { |
| name = curr.value("tool_call_id", ""); |
| } |
|
|
| tool_responses.push_back({{"name", name}, {"response", response}}); |
| } |
|
|
| json build() { |
| collect(); |
|
|
| json msg = { |
| {"role", "assistant"}, |
| {"tool_calls", tool_calls}, |
| }; |
| if (!tool_responses.empty()) { |
| msg["tool_responses"] = tool_responses; |
| } |
| if (!content.is_null()) { |
| msg["content"] = content; |
| } |
| if (!reasoning_content.is_null()) { |
| msg["reasoning_content"] = reasoning_content; |
| } |
| return msg; |
| } |
|
|
| static bool has_content(const json & msg) { |
| if (!msg.contains("content") || msg.at("content").is_null()) { |
| return false; |
| } |
| const auto & content = msg.at("content"); |
| if (content.is_string() && !content.get<std::string>().empty()) { |
| return true; |
| } |
| if (content.is_array() && !content.empty()) { |
| return true; |
| } |
| return false; |
| } |
|
|
| static bool has_tool_calls(const json & msg) { |
| return msg.contains("tool_calls") && msg.at("tool_calls").is_array() && !msg.at("tool_calls").empty(); |
| } |
| }; |
|
|
| static void convert_tool_responses_gemma4(json & messages) { |
| json result = json::array(); |
| size_t i = 0; |
|
|
| while (i < messages.size()) { |
| auto & msg = messages[i]; |
|
|
| if (msg.value("role", "") != "assistant" || !msg.contains("tool_calls") || |
| !msg.at("tool_calls").is_array() || msg.at("tool_calls").empty()) { |
| result.push_back(msg); |
| i++; |
| continue; |
| } |
|
|
| gemma4_model_turn_builder builder(messages, i); |
| result.push_back(builder.build()); |
| i = builder.pos; |
| } |
|
|
| messages = result; |
| } |
|
|
| static void func_args_not_string(json & messages) { |
| GGML_ASSERT(messages.is_array()); |
| for (auto & message : messages) { |
| if (message.contains("tool_calls")) { |
| for (auto & tool_call : message["tool_calls"]) { |
| if (tool_call.contains("function") && tool_call["function"].contains("arguments")) { |
| auto & args = tool_call["function"]["arguments"]; |
| if (args.is_string()) { |
| try { |
| args = json::parse(args.get<std::string>()); |
| } catch (const std::exception & e) { |
| throw std::runtime_error("Failed to parse tool call arguments as JSON: " + std::string(e.what())); |
| } |
| } |
| } |
| } |
| } |
| } |
| } |
|
|
| |
| |
| |
| |
| |
| static void trim_all_content(std::vector<common_chat_msg> & messages) { |
| for (auto & message : messages) { |
| message.content = trim_whitespace(message.content); |
| message.reasoning_content = trim_whitespace(message.reasoning_content); |
| for (auto & part : message.content_parts) { |
| if (part.type == "text") { |
| part.text = trim_whitespace(part.text); |
| } |
| } |
| } |
| } |
|
|
| } |
|
|
| |
| |
| |
| static common_chat_params common_chat_params_init_minicpm5(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.preserved_tokens = { |
| "<function", |
| "<param", |
| "</function>", |
| "</param>", |
| "<think>", |
| "</think>", |
| }; |
|
|
| data.thinking_start_tag = "<think>"; |
| data.thinking_end_tags = {"</think>"}; |
|
|
| data.message_delimiters = { |
| { COMMON_CHAT_ROLE_ASSISTANT, "<|im_start|>assistant" }, |
| { COMMON_CHAT_ROLE_TOOL, "<|im_start|>user\n<tool_response>" }, |
| { COMMON_CHAT_ROLE_USER, "<|im_start|>user" }, |
| { COMMON_CHAT_ROLE_SYSTEM, "<|im_start|>system" }, |
| }; |
|
|
| auto has_tools = inputs.tools.is_array() && !inputs.tools.empty(); |
| auto has_response_format = inputs.json_schema.is_object() && !inputs.json_schema.empty(); |
| 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); |
|
|
| if (inputs.has_continuation()) { |
| const auto & msg = inputs.continue_msg; |
|
|
| data.generation_prompt = "<|im_start|>assistant\n<think>\n" + msg.reasoning_content; |
| if (inputs.continue_final_message == COMMON_CHAT_CONTINUATION_CONTENT) { |
| data.generation_prompt += "\n</think>\n\n" + msg.render_content(); |
| } |
|
|
| data.prompt += data.generation_prompt; |
| } |
|
|
| auto parser = build_chat_peg_parser([&](common_chat_peg_builder & p) { |
| auto generation_prompt = p.literal("<|im_start|>assistant\n"); |
|
|
| auto reasoning = p.eps(); |
| if (extract_reasoning) { |
| reasoning = ("<think>" << p.reasoning(p.until("</think>")) << "</think>") + p.space(); |
| } |
|
|
| |
| if (has_response_format) { |
| return generation_prompt + reasoning + p.content(p.schema(p.json(), "response-format", inputs.json_schema)); |
| } |
|
|
| if (has_tools && inputs.tool_choice != COMMON_CHAT_TOOL_CHOICE_NONE) { |
| |
| |
| auto string_value = p.choice({ |
| p.literal("<![CDATA[") + p.ac(p.tool_arg_string_value(p.until("]]>")) + p.literal("]]>"), "]]>") + p.tool_arg_close(p.literal("</param>")), |
| p.negate(p.literal("< { |
| const auto & function = tool.at("function"); |
| const std::string name = function.at("name"); |
| auto params = function.contains("parameters") ? function.at("parameters") : json::object(); |
|
|
| auto args = p.eps(); |
| if (params.contains("properties") && params.at("properties").is_object() && !params.at("properties").empty()) { |
| auto schema_info = common_schema_info(); |
| schema_info.resolve_refs(params); |
|
|
| auto arg_choice = p.choice(); |
| for (const auto & [prop_name, prop_schema] : params.at("properties").items()) { |
| auto value_parser = p.eps(); |
| if (schema_info.resolves_to_string(prop_schema)) { |
| value_parser = string_value; |
| } else { |
| value_parser = p.tool_arg_json_value( |
| p.schema(p.json(), "tool-" + name + "-arg-" + prop_name + "-schema", prop_schema, false) |
| ) + p.tool_arg_close(p.literal("</param>")); |
| } |
|
|
| auto arg_rule = p.tool_arg( |
| p.tool_arg_open(p.literal("<param name=\"") + p.tool_arg_name(p.literal(prop_name)) + p.literal("\">")) + |
| value_parser |
| ); |
|
|
| arg_choice |= arg_rule; |
| } |
| args = p.zero_or_more(arg_choice + p.space()); |
| } |
|
|
| auto tool_parser = p.tool( |
| p.tool_open(p.literal("<function name=\"") + p.tool_name(p.literal(name)) + p.literal("\">")) |
| << p.tool_args(args) |
| << p.tool_close(p.literal("</function>"))); |
|
|
| tool_choice |= p.rule("tool-" + name, tool_parser); |
| }); |
|
|
| auto max_calls = inputs.parallel_tool_calls ? -1 : 1; |
| auto tool_calls = p.trigger_rule("tool-call", p.repeat(tool_choice + p.space(), 1, max_calls)); |
|
|
| auto content = p.content(p.until("<function")); |
|
|
| return generation_prompt + reasoning + content + tool_calls + p.end(); |
| } |
|
|
| return generation_prompt + reasoning + p.content(p.rest()) + p.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, "<function" }, |
| }; |
| } |
|
|
| return data; |
| } |
|
|
| |
| |
| |
| |
| |
| |
| |
| static common_chat_params common_chat_params_init_muse_glimmer(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 = "<|start|>assistant"; |
| data.format = COMMON_CHAT_FORMAT_PEG_NATIVE; |
| data.supports_thinking = true; |
|
|
| data.preserved_tokens = { |
| "<|start|>", "<|message|>", "<|eom|>", "<|eot|>", |
| |
| "<atem:function_calls>", "<atem:invoke", "<atem:parameter", "</atem:parameter>", |
| "</atem:invoke>", "</atem:function_calls>", |
| }; |
|
|
| data.message_delimiters = { |
| { COMMON_CHAT_ROLE_ASSISTANT, "<|start|>assistant" }, |
| { COMMON_CHAT_ROLE_USER, "<|start|>user" }, |
| { COMMON_CHAT_ROLE_SYSTEM, "<|start|>system" }, |
| { COMMON_CHAT_ROLE_TOOL, "<|start|>tool" }, |
| }; |
|
|
| if (inputs.has_continuation()) { |
| const auto & msg = inputs.continue_msg; |
|
|
| data.generation_prompt = "<|start|>assistant to=self<|message|>" + msg.reasoning_content; |
| if (inputs.continue_final_message == COMMON_CHAT_CONTINUATION_CONTENT) { |
| data.generation_prompt += "<|eom|><|start|>assistant to=user<|message|>" + msg.render_content(); |
| } |
|
|
| data.prompt += data.generation_prompt; |
| } |
|
|
| auto extract_reasoning = inputs.reasoning_format != COMMON_REASONING_FORMAT_NONE; |
|
|
| auto has_tools = inputs.tools.is_array() && !inputs.tools.empty(); |
| |
| auto include_grammar = has_tools && inputs.tool_choice != COMMON_CHAT_TOOL_CHOICE_NONE; |
|
|
| auto parser = build_chat_peg_parser([&](common_chat_peg_builder & p) { |
| auto start = p.rule("start", p.literal("<|start|>assistant")); |
|
|
| if (!extract_reasoning && !include_grammar) { |
| return start + p.content(p.rest()); |
| } |
|
|
| if (extract_reasoning) { |
| p.rule("analysis", p.literal(" to=self<|message|>") + p.reasoning(p.until("<|eom|>")) + p.literal("<|eom|>")); |
| } else { |
| p.rule("analysis", p.literal(" to=self<|message|>") + p.content(p.until("<|eom|>")) + p.literal("<|eom|>")); |
| } |
| auto analysis = p.ref("analysis"); |
|
|
| auto recipient = p.optional(p.literal(" to=user")); |
| auto final_msg = p.rule("final", recipient + p.literal("<|message|>") + p.content(p.until("<|eot|>"))); |
|
|
| if (has_tools && inputs.tool_choice != COMMON_CHAT_TOOL_CHOICE_NONE) { |
| auto string_value = p.ac( |
| p.tool_arg_string_value(p.until("</atem:parameter>")) + p.tool_arg_close(p.literal("</atem:parameter>")), |
| "</atem:parameter>"); |
|
|
| auto tool_choice = p.choice(); |
| foreach_function(inputs.tools, [&](const json & tool) { |
| const auto & function = tool.at("function"); |
| const std::string name = function.at("name"); |
| auto params = function.contains("parameters") ? function.at("parameters") : json::object(); |
|
|
| auto args = p.eps(); |
| if (params.contains("properties") && params.at("properties").is_object() && !params.at("properties").empty()) { |
| auto schema_info = common_schema_info(); |
| schema_info.resolve_refs(params); |
|
|
| auto arg_choice = p.choice(); |
| for (const auto & [prop_name, prop_schema] : params.at("properties").items()) { |
| auto value_parser = p.eps(); |
| if (schema_info.resolves_to_string(prop_schema)) { |
| value_parser = string_value; |
| } else { |
| value_parser = p.tool_arg_json_value( |
| p.schema(p.json(), "tool-" + name + "-arg-" + prop_name + "-schema", prop_schema, false)) |
| + p.tool_arg_close(p.literal("</atem:parameter>")); |
| } |
|
|
| auto arg_rule = p.tool_arg( |
| p.tool_arg_open(p.literal("<atem:parameter name=\"") + p.tool_arg_name(p.literal(prop_name)) + p.literal("\">")) + |
| value_parser); |
|
|
| arg_choice |= arg_rule; |
| } |
| args = p.zero_or_more(arg_choice + p.space()); |
| } |
|
|
| auto tool_parser = p.tool( |
| p.tool_open(p.literal(" to=") + p.until("<|message|>") + |
| p.literal("<|message|><atem:function_calls>") + p.space() + |
| p.literal("<atem:invoke name=\"") + p.tool_name(p.literal(name)) + p.literal("\">") + p.space()) |
| << p.tool_args(args) |
| << p.tool_close(p.literal("</atem:invoke>") + p.space() + p.literal("</atem:function_calls>"))); |
|
|
| tool_choice |= p.rule("tool-" + name, tool_parser); |
| }); |
|
|
| auto tool_calls = inputs.parallel_tool_calls |
| ? p.trigger_rule("tool-call", tool_choice + p.zero_or_more(p.literal("<|eom|>") + start + tool_choice)) |
| : p.trigger_rule("tool-call", tool_choice); |
|
|
|
|
| if (inputs.tool_choice == COMMON_CHAT_TOOL_CHOICE_REQUIRED) { |
| return p.zero_or_more(start + analysis) + start + tool_calls; |
| } |
| return p.zero_or_more(start + analysis) + start + (tool_calls | final_msg); |
| } |
|
|
| return p.zero_or_more(start + analysis) + start + final_msg; |
| }); |
|
|
| data.parser = parser.save(); |
|
|
| if (include_grammar) { |
| data.grammar_lazy = 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); |
| }); |
| parser.build_grammar(builder, data.grammar_lazy); |
| }); |
| data.grammar_triggers = { |
| { COMMON_GRAMMAR_TRIGGER_TYPE_PATTERN, |
| "<\\|start\\|>assistant( to=(?!self<\\|message\\|>)(?!user<\\|message\\|>)[^<]*?<\\|message\\|>)" }, |
| }; |
| } |
|
|
| return data; |
| } |
|
|
| static json common_chat_extra_context() { |
| json ctx = json::object(); |
| std::chrono::system_clock::time_point now = std::chrono::system_clock::now(); |
| std::string datetime_str = format_time(now, "%b %d %Y"); |
| std::string date_str = format_time(now, "%d %b %Y"); |
| ctx["datetime"] = datetime_str; |
| ctx["date_string"] = date_str; |
| return ctx; |
| } |
|
|
| std::optional<common_chat_params> common_chat_try_specialized_template( |
| const common_chat_template & tmpl, |
| const std::string & src, |
| autoparser::generation_params & params) { |
| |
| |
| if (src.find("[SYSTEM_PROMPT]") != std::string::npos && src.find("[TOOL_CALLS]") != std::string::npos && |
| src.find("[ARGS]") != std::string::npos && src.find("[CALL_ID]") == std::string::npos) { |
| LOG_DBG("Using specialized template: Ministral/Magistral Large 3\n"); |
| return common_chat_params_init_ministral_3(tmpl, params); |
| } |
|
|
| |
| if (src.find("<|channel|>") != std::string::npos) { |
| LOG_DBG("Using specialized template: GPT-OSS\n"); |
| return common_chat_params_init_gpt_oss(tmpl, params); |
| } |
|
|
| |
| if (src.find("<atem:function_calls>") != std::string::npos && src.find("<|eom|>") != std::string::npos) { |
| LOG_DBG("Using specialized template: Muse Glimmer\n"); |
| return common_chat_params_init_muse_glimmer(tmpl, params); |
| } |
|
|
| |
| |
| if (src.find(">>>all") != std::string::npos && src.find(">>>${recipient}") != std::string::npos) { |
| LOG_DBG("Using specialized template: Functionary v3.2\n"); |
| return common_chat_params_init_functionary_v3_2(tmpl, params); |
| } |
|
|
| |
| |
| if (src.find("<|tool_calls_section_begin|>") != std::string::npos && |
| src.find("<|tool_call_begin|>") != std::string::npos) { |
| LOG_DBG("Using specialized template: Kimi K2 Thinking\n"); |
| return common_chat_params_init_kimi_k2(tmpl, params); |
| } |
|
|
| |
| |
| |
| if (src.find("<|START_TEXT|>") != std::string::npos && |
| src.find("<|START_ACTION|>") != std::string::npos) { |
| LOG_DBG("Using specialized template: Cohere2 MoE\n"); |
| return common_chat_params_init_cohere2moe(tmpl, params); |
| } |
|
|
| if (is_lfm2_template(src)) { |
| LOG_DBG("Using specialized template: LFM2\n"); |
| return common_chat_params_init_lfm2(tmpl, params, true); |
| } |
|
|
| |
| if (src.find("List of tools: [") != std::string::npos && |
| src.find("<|tool_list_start|>") == std::string::npos) { |
| LOG_DBG("Using specialized template: LFM2.5\n"); |
| return common_chat_params_init_lfm2(tmpl, params, false); |
| } |
|
|
| |
| if (src.find("<|role_sep|>") != std::string::npos && |
| src.find("<|message_sep|>") != std::string::npos && |
| src.find("<|function_call|>") == std::string::npos) { |
| LOG_DBG("Using specialized template: GigaChatV3\n"); |
| return common_chat_params_init_gigachat_v3(tmpl, params); |
| } |
|
|
| |
| |
| 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); |
| } |
|
|
| |
| |
| |
| if (src.find("dsml_token") != std::string::npos && |
| src.find("DSML") != std::string::npos && |
| (src.find("function_calls") != std::string::npos || |
| src.find("tool_calls") != std::string::npos)) { |
| LOG_DBG("Using specialized template: DeepSeek V3.2/V4\n"); |
| return common_chat_params_init_deepseek_v3_2(tmpl, params); |
| } |
|
|
| |
| if (src.find("'<|tool_call>call:'") != std::string::npos) { |
| if (src.find("{#- OpenAI Chat Completions:") == std::string::npos) { |
| |
| LOG_WRN("%s: detected an outdated gemma4 chat template, applying compatibility workarounds. " |
| "Consider updating to the official template.\n", __func__); |
| workaround::convert_tool_responses_gemma4(params.messages); |
| } |
| return common_chat_params_init_gemma4(tmpl, params); |
| } |
|
|
| |
| if (src.find("Tool usage guidelines:") != std::string::npos && |
| src.find("<function name=\"") != std::string::npos && |
| src.find("<param name=\"") != std::string::npos) { |
| LOG_DBG("Using specialized template: MiniCPM5\n"); |
| return common_chat_params_init_minicpm5(tmpl, params); |
| } |
|
|
| |
| if (src.find("<tool_call>") != std::string::npos && |
| src.find("<function=") != std::string::npos && |
| src.find("<parameter=") != std::string::npos) { |
| LOG_DBG("Using specialized template: Qwen3-Coder\n"); |
| return common_chat_params_init_qwen3_coder(tmpl, params); |
| } |
|
|
| return std::nullopt; |
| } |
|
|
| static common_chat_params common_chat_templates_apply_jinja(const struct common_chat_templates * tmpls, |
| const struct common_chat_templates_inputs & inputs) { |
| autoparser::generation_params params; |
| params.tools = common_chat_tools_to_json_oaicompat(inputs.tools); |
| const auto & tmpl = |
| params.tools.is_array() && tmpls->template_tool_use ? *tmpls->template_tool_use : *tmpls->template_default; |
| const auto & src = tmpl.source(); |
| const auto & caps = tmpl.original_caps(); |
| std::vector<common_chat_msg> trimmed_messages; |
| const std::vector<common_chat_msg> * messages_to_render = &inputs.messages; |
| if (src.find("You have access to the following functions in JSONSchema format") != std::string::npos) { |
| |
| |
| trimmed_messages = inputs.messages; |
| workaround::trim_all_content(trimmed_messages); |
| messages_to_render = &trimmed_messages; |
| } |
| params.messages = render_message_to_json(*messages_to_render, tmpl.original_caps()); |
| params.tool_choice = inputs.tool_choice; |
| params.reasoning_format = inputs.reasoning_format; |
| params.enable_thinking = inputs.enable_thinking; |
| params.grammar = inputs.grammar; |
| params.now = inputs.now; |
| params.add_generation_prompt = inputs.add_generation_prompt; |
| params.add_bos = tmpls->add_bos; |
| params.add_eos = tmpls->add_eos; |
|
|
| params.continue_final_message = inputs.continue_final_message; |
| if (params.continue_final_message != COMMON_CHAT_CONTINUATION_NONE) { |
| params.add_generation_prompt = false; |
|
|
| if (!inputs.messages.empty()) { |
| |
| params.continue_msg = inputs.messages.back(); |
| params.messages.erase(params.messages.size() - 1); |
| } |
|
|
| if (params.continue_final_message == COMMON_CHAT_CONTINUATION_AUTO && !inputs.messages.empty()) { |
| |
| params.continue_final_message = COMMON_CHAT_CONTINUATION_CONTENT; |
| if (!params.continue_msg.reasoning_content.empty() && |
| params.continue_msg.content.empty() && |
| params.continue_msg.content_parts.empty()) { |
| params.continue_final_message = COMMON_CHAT_CONTINUATION_REASONING; |
| } |
| } |
| } |
|
|
| if (src.find("<|channel|>") == std::string::npos) { |
| |
| workaround::map_developer_role_to_system(params.messages); |
| } |
|
|
| if (!tmpl.original_caps().supports_system_role) { |
| workaround::system_message_not_supported(params.messages); |
| } |
|
|
| if (tmpl.original_caps().supports_tool_calls) { |
| |
| |
| |
| workaround::requires_non_null_content(params.messages); |
| } |
|
|
| if (tmpl.original_caps().supports_object_arguments) { |
| workaround::func_args_not_string(params.messages); |
| } |
|
|
| params.extra_context = common_chat_extra_context(); |
| for (auto el : inputs.chat_template_kwargs) { |
| params.extra_context[el.first] = json::parse(el.second); |
| } |
|
|
| if (!inputs.json_schema.empty()) { |
| params.json_schema = json::parse(inputs.json_schema); |
| } |
|
|
| params.parallel_tool_calls = inputs.parallel_tool_calls; |
|
|
| if (params.tools.is_array()) { |
| if (params.tool_choice != COMMON_CHAT_TOOL_CHOICE_NONE && !params.grammar.empty()) { |
| throw std::runtime_error("Cannot specify grammar with tools"); |
| } |
| if (caps.supports_tool_calls && !caps.supports_tools) { |
| LOG_WRN( |
| "Template supports tool calls but does not natively describe tools. The fallback behaviour used may " |
| "produce bad results, inspect prompt w/ --verbose & consider overriding the template.\n"); |
| } |
| } |
|
|
| if (inputs.force_pure_content) { |
| LOG_WRN("Forcing pure content template, will not render reasoning or tools separately."); |
| |
| common_chat_params data; |
| auto params_copy = params; |
| params_copy.reasoning_format = COMMON_REASONING_FORMAT_NONE; |
| data.prompt = common_chat_template_direct_apply_impl(tmpl, params_copy); |
| data.generation_prompt = common_chat_template_generation_prompt_impl(tmpl, params); |
| data.format = COMMON_CHAT_FORMAT_PEG_NATIVE; |
| auto parser = build_chat_peg_parser([&data](common_chat_peg_builder &p) { |
| return p.literal(data.generation_prompt) << p.content(p.rest()); |
| }); |
| data.parser = parser.save(); |
| return data; |
| } |
|
|
| if (auto result = common_chat_try_specialized_template(tmpl, src, params)) { |
| return *result; |
| } |
|
|
| try { |
| LOG_DBG("%s: using differential autoparser\n", __func__); |
| struct autoparser::autoparser autoparser; |
| autoparser.analyze_template(tmpl); |
| auto auto_params = autoparser::peg_generator::generate_parser(tmpl, params, autoparser); |
|
|
| common_chat_msg_delimiters delimiters; |
| if (!autoparser.assistant_start.empty()) { |
| delimiters.add(COMMON_CHAT_ROLE_ASSISTANT, autoparser.assistant_start); |
| } |
| if (!autoparser.user_start.empty()) { |
| delimiters.add(COMMON_CHAT_ROLE_USER, autoparser.user_start); |
| } |
|
|
| auto_params.message_delimiters = std::move(delimiters); |
|
|
| auto_params.supports_thinking = autoparser.reasoning.mode != autoparser::reasoning_mode::NONE; |
| if (auto_params.supports_thinking) { |
| auto_params.thinking_start_tag = trim_whitespace(autoparser.reasoning.start); |
| auto end_tag = trim_whitespace(autoparser.reasoning.end); |
| if (!end_tag.empty()) { |
| auto_params.thinking_end_tags = {std::move(end_tag)}; |
| } |
| } |
| common_peg_arena arena; |
| arena.load(auto_params.parser); |
| LOG_DBG("%s: generated parser:\n%s\n\nparser generation prompt: %s\n", __func__, arena.dump(arena.root()).c_str(), auto_params.generation_prompt.c_str()); |
| return auto_params; |
| } catch (const std::exception & e) { |
| throw std::invalid_argument(std::string("Unable to generate parser for this template. Automatic parser generation failed: ") + e.what()); |
| } |
| } |
|
|
| |
| static common_chat_params common_chat_templates_apply_legacy(const struct common_chat_templates * tmpls, |
| const struct common_chat_templates_inputs & inputs) { |
| size_t alloc_size = 0; |
| std::vector<llama_chat_message> chat; |
| std::vector<std::string> contents; |
|
|
| for (const auto & msg : inputs.messages) { |
| auto content = msg.content; |
| for (const auto & part : msg.content_parts) { |
| if (part.type != "text" && part.type != "media_marker") { |
| LOG_WRN("Ignoring non-text content part: %s\n", part.type.c_str()); |
| continue; |
| } |
| if (!content.empty()) { |
| content += "\n"; |
| ; |
| } |
| content += part.text; |
| } |
| contents.emplace_back(std::move(content)); |
| } |
| for (size_t i = 0; i < contents.size(); ++i) { |
| const auto & msg = inputs.messages[i]; |
| const auto & content = contents[i]; |
| chat.push_back({ msg.role.c_str(), content.c_str() }); |
| size_t msg_size = msg.role.size() + content.size(); |
| alloc_size += msg_size + (msg_size / 4); |
| } |
|
|
| std::vector<char> buf(alloc_size); |
|
|
| |
| const auto & src = tmpls->template_default->source(); |
| int32_t res = llama_chat_apply_template(src.c_str(), chat.data(), chat.size(), inputs.add_generation_prompt, |
| buf.data(), buf.size()); |
|
|
| |
| if (res < 0) { |
| |
| |
| throw std::runtime_error("this custom template is not supported, try using --jinja"); |
| } |
|
|
| |
| if ((size_t) res > buf.size()) { |
| buf.resize(res); |
| res = llama_chat_apply_template(src.c_str(), chat.data(), chat.size(), inputs.add_generation_prompt, buf.data(), |
| buf.size()); |
| } |
|
|
| |
| if (res < 0 || (size_t) res > buf.size()) { |
| throw std::runtime_error("failed to apply chat template, try using --jinja"); |
| } |
|
|
| common_chat_params params; |
| params.prompt = std::string(buf.data(), res); |
| if (!inputs.json_schema.empty()) { |
| params.grammar = json_schema_to_grammar(json::parse(inputs.json_schema)); |
| } else { |
| params.grammar = inputs.grammar; |
| } |
| return params; |
| } |
|
|
| common_chat_params common_chat_templates_apply(const struct common_chat_templates * tmpls, |
| const struct common_chat_templates_inputs & inputs) { |
| GGML_ASSERT(tmpls != nullptr); |
| return inputs.use_jinja ? common_chat_templates_apply_jinja(tmpls, inputs) : |
| common_chat_templates_apply_legacy(tmpls, inputs); |
| } |
|
|
| common_chat_msg common_chat_parse(const std::string & input, |
| bool is_partial, |
| const common_chat_parser_params & params) { |
| return common_chat_peg_parse(params.parser, input, is_partial, params); |
| } |
|
|
| common_chat_msg common_chat_peg_parse(const common_peg_arena & src_parser, |
| const std::string & input, |
| bool is_partial, |
| const common_chat_parser_params & params) { |
| const common_peg_arena & parser = src_parser.empty() ? |
| build_chat_peg_parser([](common_chat_peg_builder & p) { return p.content(p.rest()) + p.end(); }) : |
| src_parser; |
|
|
| if (src_parser.empty()) { |
| LOG_DBG("No parser definition detected, assuming pure content parser."); |
| } |
|
|
| const std::string effective_input = params.generation_prompt.empty() |
| ? input |
| : params.generation_prompt + input; |
|
|
| |
|
|
| common_peg_parse_flags flags = COMMON_PEG_PARSE_FLAG_LENIENT; |
| if (params.debug) { |
| flags |= COMMON_PEG_PARSE_FLAG_DEBUG; |
| } |
|
|
| common_peg_parse_context ctx(effective_input, flags); |
| auto result = parser.parse(ctx); |
|
|
| if (result.fail()) { |
| |
| |
| if (is_partial && result.end > 0) { |
| |
| common_chat_msg msg; |
| msg.role = "assistant"; |
| std::unique_ptr<common_chat_peg_mapper> mapper; |
| if (params.format == COMMON_CHAT_FORMAT_PEG_GEMMA4) { |
| mapper = std::make_unique<common_chat_peg_gemma4_mapper>(msg); |
| } else if (params.format == COMMON_CHAT_FORMAT_PEG_MINIMAX_M3) { |
| mapper = std::make_unique<common_chat_peg_minimax_m3_mapper>(msg); |
| } else { |
| mapper = std::make_unique<common_chat_peg_mapper>(msg); |
| } |
| mapper->from_ast(ctx.ast, result); |
|
|
| if (ctx.is_debug()) { |
| fprintf(stderr, "\nAST for partial parse (fail):\n%s\n", ctx.ast.dump().c_str()); |
| fflush(stderr); |
| } |
| return msg; |
| } |
| LOG_WRN("%s: unparsed %s output: %s\n", __func__, common_chat_format_name(params.format), effective_input.substr(result.end).c_str()); |
| LOG_DBG("%s: full %s output triggering error:\n=== BEGIN ===\n%s\n=== END ===\n", __func__, common_chat_format_name(params.format), effective_input.c_str()); |
| throw std::runtime_error(std::string("The model produced output that does not match the expected ") + common_chat_format_name(params.format) + " format"); |
| } |
|
|
| common_chat_msg msg; |
| msg.role = "assistant"; |
|
|
| std::unique_ptr<common_chat_peg_mapper> mapper; |
| if (params.format == COMMON_CHAT_FORMAT_PEG_GEMMA4) { |
| mapper = std::make_unique<common_chat_peg_gemma4_mapper>(msg); |
| } else if (params.format == COMMON_CHAT_FORMAT_PEG_MINIMAX_M3) { |
| mapper = std::make_unique<common_chat_peg_minimax_m3_mapper>(msg); |
| } else { |
| mapper = std::make_unique<common_chat_peg_mapper>(msg); |
| } |
| mapper->from_ast(ctx.ast, result); |
|
|
| if (ctx.is_debug()) { |
| fprintf(stderr, "\nAST for %s parse:\n%s\n", is_partial ? "partial" : "full", ctx.ast.dump().c_str()); |
| fflush(stderr); |
| } |
|
|
| if (!is_partial) { |
| LOG_DBG("Parsed message: %s\n", common_chat_msgs_to_json_oaicompat({ msg }).at(0).dump().c_str()); |
| } |
| return msg; |
| } |
|
|
| std::map<std::string, bool> common_chat_templates_get_caps(const common_chat_templates * chat_templates) { |
| GGML_ASSERT(chat_templates != nullptr); |
| GGML_ASSERT(chat_templates->template_default != nullptr); |
| if (chat_templates->template_tool_use != nullptr) { |
| |
| return chat_templates->template_tool_use->caps.to_map(); |
| } |
| return chat_templates->template_default->caps.to_map(); |
| } |
|
|