| 909 | return data; |
| 910 | } |
| 911 | static void common_chat_parse_mistral_nemo(common_chat_msg_parser & builder) { |
| 912 | if (!builder.syntax().parse_tool_calls) { |
| 913 | builder.add_content(builder.consume_rest()); |
| 914 | return; |
| 915 | } |
| 916 | |
| 917 | static const common_regex prefix(regex_escape("[TOOL_CALLS]")); |
| 918 | parse_prefixed_json_tool_call_array(builder, prefix); |
| 919 | } |
| 920 | |
| 921 | static common_chat_params common_chat_params_init_command_r7b(const common_chat_template & tmpl, const struct templates_params & inputs) { |
| 922 | common_chat_params data; |
no test coverage detected