Coverage Report

Created: 2026-06-22 06:47

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/src/llama.cpp/src/llama-chat.cpp
Line
Count
Source
1
#include "llama-chat.h"
2
3
#include "llama.h"
4
5
#include <map>
6
#include <sstream>
7
#include <algorithm>
8
9
#if __cplusplus >= 202000L
10
    #define LU8(x) (const char*)(u8##x)
11
#else
12
0
    #define LU8(x) u8##x
13
#endif
14
15
// trim whitespace from the beginning and end of a string
16
0
static std::string trim(const std::string & str) {
17
0
    size_t start = 0;
18
0
    size_t end = str.size();
19
0
    while (start < end && isspace(static_cast<unsigned char>(str[start]))) {
20
0
        start += 1;
21
0
    }
22
0
    while (end > start && isspace(static_cast<unsigned char>(str[end - 1]))) {
23
0
        end -= 1;
24
0
    }
25
0
    return str.substr(start, end - start);
26
0
}
27
28
static const std::map<std::string, llm_chat_template> LLM_CHAT_TEMPLATES = {
29
    { "chatml",            LLM_CHAT_TEMPLATE_CHATML            },
30
    { "llama2",            LLM_CHAT_TEMPLATE_LLAMA_2           },
31
    { "llama2-sys",        LLM_CHAT_TEMPLATE_LLAMA_2_SYS       },
32
    { "llama2-sys-bos",    LLM_CHAT_TEMPLATE_LLAMA_2_SYS_BOS   },
33
    { "llama2-sys-strip",  LLM_CHAT_TEMPLATE_LLAMA_2_SYS_STRIP },
34
    { "mistral-v1",        LLM_CHAT_TEMPLATE_MISTRAL_V1        },
35
    { "mistral-v3",        LLM_CHAT_TEMPLATE_MISTRAL_V3        },
36
    { "mistral-v3-tekken", LLM_CHAT_TEMPLATE_MISTRAL_V3_TEKKEN },
37
    { "mistral-v7",        LLM_CHAT_TEMPLATE_MISTRAL_V7        },
38
    { "mistral-v7-tekken", LLM_CHAT_TEMPLATE_MISTRAL_V7_TEKKEN },
39
    { "phi3",              LLM_CHAT_TEMPLATE_PHI_3             },
40
    { "phi4",              LLM_CHAT_TEMPLATE_PHI_4             },
41
    { "falcon3",           LLM_CHAT_TEMPLATE_FALCON_3          },
42
    { "zephyr",            LLM_CHAT_TEMPLATE_ZEPHYR            },
43
    { "monarch",           LLM_CHAT_TEMPLATE_MONARCH           },
44
    { "gemma",             LLM_CHAT_TEMPLATE_GEMMA             },
45
    { "orion",             LLM_CHAT_TEMPLATE_ORION             },
46
    { "openchat",          LLM_CHAT_TEMPLATE_OPENCHAT          },
47
    { "vicuna",            LLM_CHAT_TEMPLATE_VICUNA            },
48
    { "vicuna-orca",       LLM_CHAT_TEMPLATE_VICUNA_ORCA       },
49
    { "deepseek",          LLM_CHAT_TEMPLATE_DEEPSEEK          },
50
    { "deepseek2",         LLM_CHAT_TEMPLATE_DEEPSEEK_2        },
51
    { "deepseek3",         LLM_CHAT_TEMPLATE_DEEPSEEK_3        },
52
    { "deepseek-ocr",      LLM_CHAT_TEMPLATE_DEEPSEEK_OCR      },
53
    { "command-r",         LLM_CHAT_TEMPLATE_COMMAND_R         },
54
    { "llama3",            LLM_CHAT_TEMPLATE_LLAMA_3           },
55
    { "chatglm3",          LLM_CHAT_TEMPLATE_CHATGLM_3         },
56
    { "chatglm4",          LLM_CHAT_TEMPLATE_CHATGLM_4         },
57
    { "glmedge",           LLM_CHAT_TEMPLATE_GLMEDGE           },
58
    { "minicpm",           LLM_CHAT_TEMPLATE_MINICPM           },
59
    { "exaone3",           LLM_CHAT_TEMPLATE_EXAONE_3          },
60
    { "exaone4",           LLM_CHAT_TEMPLATE_EXAONE_4          },
61
    { "exaone-moe",        LLM_CHAT_TEMPLATE_EXAONE_MOE        },
62
    { "rwkv-world",        LLM_CHAT_TEMPLATE_RWKV_WORLD        },
63
    { "granite",           LLM_CHAT_TEMPLATE_GRANITE_3_X       },
64
    { "granite-4.0",       LLM_CHAT_TEMPLATE_GRANITE_4_0       },
65
    { "granite-4.1",       LLM_CHAT_TEMPLATE_GRANITE_4_1       },
66
    { "gigachat",          LLM_CHAT_TEMPLATE_GIGACHAT          },
67
    { "megrez",            LLM_CHAT_TEMPLATE_MEGREZ            },
68
    { "yandex",            LLM_CHAT_TEMPLATE_YANDEX            },
69
    { "bailing",           LLM_CHAT_TEMPLATE_BAILING           },
70
    { "bailing-think",     LLM_CHAT_TEMPLATE_BAILING_THINK     },
71
    { "bailing2",          LLM_CHAT_TEMPLATE_BAILING2          },
72
    { "llama4",            LLM_CHAT_TEMPLATE_LLAMA4            },
73
    { "smolvlm",           LLM_CHAT_TEMPLATE_SMOLVLM           },
74
    { "hunyuan-moe",       LLM_CHAT_TEMPLATE_HUNYUAN_MOE       },
75
    { "gpt-oss",           LLM_CHAT_TEMPLATE_OPENAI_MOE        },
76
    { "hunyuan-dense",     LLM_CHAT_TEMPLATE_HUNYUAN_DENSE     },
77
    { "hunyuan-vl",        LLM_CHAT_TEMPLATE_HUNYUAN_VL        },
78
    { "kimi-k2",           LLM_CHAT_TEMPLATE_KIMI_K2           },
79
    { "seed_oss",          LLM_CHAT_TEMPLATE_SEED_OSS          },
80
    { "grok-2",            LLM_CHAT_TEMPLATE_GROK_2            },
81
    { "pangu-embedded",    LLM_CHAT_TEMPLATE_PANGU_EMBED       },
82
    { "solar-open",        LLM_CHAT_TEMPLATE_SOLAR_OPEN        },
83
};
84
85
0
llm_chat_template llm_chat_template_from_str(const std::string & name) {
86
0
    return LLM_CHAT_TEMPLATES.at(name);
87
0
}
88
89
0
llm_chat_template llm_chat_detect_template(const std::string & tmpl) {
90
0
    try {
91
0
        return llm_chat_template_from_str(tmpl);
92
0
    } catch (const std::out_of_range &) {
93
        // ignore
94
0
    }
95
96
0
    auto tmpl_contains = [&tmpl](const char * haystack) -> bool {
97
0
        return tmpl.find(haystack) != std::string::npos;
98
0
    };
99
0
    if (tmpl_contains("<|im_start|>")) {
100
0
        return tmpl_contains("<|im_sep|>")
101
0
            ? LLM_CHAT_TEMPLATE_PHI_4
102
0
            : tmpl_contains("<end_of_utterance>")
103
0
                ? LLM_CHAT_TEMPLATE_SMOLVLM // SmolVLM uses <|im_start|> as BOS, but it is NOT chatml
104
0
                : LLM_CHAT_TEMPLATE_CHATML;
105
0
    } else if (tmpl.find("mistral") == 0 || tmpl_contains("[INST]")) {
106
0
        if (tmpl_contains("[SYSTEM_PROMPT]")) {
107
0
            return LLM_CHAT_TEMPLATE_MISTRAL_V7;
108
0
        } else if (
109
            // catches official 'v1' template
110
0
            tmpl_contains("' [INST] ' + system_message")
111
            // catches official 'v3' and 'v3-tekken' templates
112
0
            || tmpl_contains("[AVAILABLE_TOOLS]")
113
0
        ) {
114
            // Official mistral 'v1', 'v3' and 'v3-tekken' templates
115
            // See: https://github.com/mistralai/cookbook/blob/main/concept-deep-dive/tokenization/chat_templates.md
116
            // See: https://github.com/mistralai/cookbook/blob/main/concept-deep-dive/tokenization/templates.md
117
0
            if (tmpl_contains(" [INST]")) {
118
0
                return LLM_CHAT_TEMPLATE_MISTRAL_V1;
119
0
            } else if (tmpl_contains("\"[INST]\"")) {
120
0
                return LLM_CHAT_TEMPLATE_MISTRAL_V3_TEKKEN;
121
0
            }
122
0
            return LLM_CHAT_TEMPLATE_MISTRAL_V3;
123
0
        } else {
124
            // llama2 template and its variants
125
            // [variant] support system message
126
            // See: https://huggingface.co/blog/llama2#how-to-prompt-llama-2
127
0
            bool support_system_message = tmpl_contains("<<SYS>>");
128
0
            bool add_bos_inside_history = tmpl_contains("bos_token + '[INST]");
129
0
            bool strip_message = tmpl_contains("content.strip()");
130
0
            if (strip_message) {
131
0
                return LLM_CHAT_TEMPLATE_LLAMA_2_SYS_STRIP;
132
0
            } else if (add_bos_inside_history) {
133
0
                return LLM_CHAT_TEMPLATE_LLAMA_2_SYS_BOS;
134
0
            } else if (support_system_message) {
135
0
                return LLM_CHAT_TEMPLATE_LLAMA_2_SYS;
136
0
            } else {
137
0
                return LLM_CHAT_TEMPLATE_LLAMA_2;
138
0
            }
139
0
        }
140
0
    } else if (tmpl_contains("<|assistant|>") && tmpl_contains("<|end|>")) {
141
0
        return LLM_CHAT_TEMPLATE_PHI_3;
142
0
    } else if (tmpl_contains("[gMASK]<sop>")) {
143
0
        return LLM_CHAT_TEMPLATE_CHATGLM_4;
144
0
    } else if (tmpl_contains("<|assistant|>") && tmpl_contains("<|user|>")) {
145
0
        if (tmpl_contains("<|tool_declare|>")) {
146
0
            return LLM_CHAT_TEMPLATE_EXAONE_MOE;
147
0
        }
148
0
        return tmpl_contains("</s>") ? LLM_CHAT_TEMPLATE_FALCON_3 : LLM_CHAT_TEMPLATE_GLMEDGE;
149
0
    } else if (tmpl_contains("<|{{ item['role'] }}|>") && tmpl_contains("<|begin_of_image|>")) {
150
0
        return LLM_CHAT_TEMPLATE_GLMEDGE;
151
0
    } else if (tmpl_contains("<|user|>") && tmpl_contains("<|endoftext|>")) {
152
0
        return LLM_CHAT_TEMPLATE_ZEPHYR;
153
0
    } else if (tmpl_contains("bos_token + message['role']")) {
154
0
        return LLM_CHAT_TEMPLATE_MONARCH;
155
0
    } else if (tmpl_contains("<start_of_turn>")) {
156
0
        return LLM_CHAT_TEMPLATE_GEMMA;
157
0
    } else if (tmpl_contains("'\\n\\nAssistant: ' + eos_token")) {
158
        // OrionStarAI/Orion-14B-Chat
159
0
        return LLM_CHAT_TEMPLATE_ORION;
160
0
    } else if (tmpl_contains("GPT4 Correct ")) {
161
        // openchat/openchat-3.5-0106
162
0
        return LLM_CHAT_TEMPLATE_OPENCHAT;
163
0
    } else if (tmpl_contains("USER: ") && tmpl_contains("ASSISTANT: ")) {
164
        // eachadea/vicuna-13b-1.1 (and Orca variant)
165
0
        if (tmpl_contains("SYSTEM: ")) {
166
0
            return LLM_CHAT_TEMPLATE_VICUNA_ORCA;
167
0
        }
168
0
        return LLM_CHAT_TEMPLATE_VICUNA;
169
0
    } else if (tmpl_contains("### Instruction:") && tmpl_contains("<|EOT|>")) {
170
        // deepseek-ai/deepseek-coder-33b-instruct
171
0
        return LLM_CHAT_TEMPLATE_DEEPSEEK;
172
0
    } else if (tmpl_contains("<|START_OF_TURN_TOKEN|>") && tmpl_contains("<|USER_TOKEN|>")) {
173
        // CohereForAI/c4ai-command-r-plus
174
0
        return LLM_CHAT_TEMPLATE_COMMAND_R;
175
0
    } else if (tmpl_contains("<|start_header_id|>") && tmpl_contains("<|end_header_id|>")) {
176
0
        return LLM_CHAT_TEMPLATE_LLAMA_3;
177
0
    } else if (tmpl_contains("[gMASK]sop")) {
178
        // chatglm3-6b
179
0
        return LLM_CHAT_TEMPLATE_CHATGLM_3;
180
0
    } else if (tmpl_contains(LU8("<用户>"))) {
181
        // MiniCPM-3B-OpenHermes-2.5-v2-GGUF
182
0
        return LLM_CHAT_TEMPLATE_MINICPM;
183
0
    } else if (tmpl_contains("'Assistant: ' + message['content'] + eos_token")) {
184
0
        return LLM_CHAT_TEMPLATE_DEEPSEEK_2;
185
0
    } else if (tmpl_contains(LU8("<|Assistant|>")) && tmpl_contains(LU8("<|User|>")) && tmpl_contains(LU8("<|end▁of▁sentence|>"))) {
186
0
        return LLM_CHAT_TEMPLATE_DEEPSEEK_3;
187
0
    } else if (tmpl_contains("[|system|]") && tmpl_contains("[|assistant|]") && tmpl_contains("[|endofturn|]")) {
188
0
        if (tmpl_contains("[|tool|]")) {
189
0
            return LLM_CHAT_TEMPLATE_EXAONE_4;
190
0
        }
191
        // ref: https://huggingface.co/LGAI-EXAONE/EXAONE-3.0-7.8B-Instruct/discussions/8#66bae61b1893d14ee8ed85bb
192
        // EXAONE-3.0-7.8B-Instruct
193
0
        return LLM_CHAT_TEMPLATE_EXAONE_3;
194
0
    } else if (tmpl_contains("rwkv-world") || tmpl_contains("{{- 'User: ' + message['content']|trim + '\\n\\n' -}}")) {
195
0
        return LLM_CHAT_TEMPLATE_RWKV_WORLD;
196
0
    } else if (tmpl_contains("<|start_of_role|>")) {
197
0
        if (tmpl_contains("<tool_call>") || tmpl_contains("<tools>")) {
198
0
            if (tmpl_contains("g4_default_system_message")) {
199
0
                return LLM_CHAT_TEMPLATE_GRANITE_4_0;
200
0
            }
201
0
            return LLM_CHAT_TEMPLATE_GRANITE_4_1;
202
0
        }
203
0
        return LLM_CHAT_TEMPLATE_GRANITE_3_X;
204
0
    } else if (tmpl_contains("message['role'] + additional_special_tokens[0] + message['content'] + additional_special_tokens[1]")) {
205
0
        return LLM_CHAT_TEMPLATE_GIGACHAT;
206
0
    } else if (tmpl_contains("<|role_start|>")) {
207
0
        return LLM_CHAT_TEMPLATE_MEGREZ;
208
0
    } else if (tmpl_contains(" Ассистент:")) {
209
0
        return LLM_CHAT_TEMPLATE_YANDEX;
210
0
    } else if (tmpl_contains("<role>ASSISTANT</role>") && tmpl_contains("'HUMAN'")) {
211
0
        return LLM_CHAT_TEMPLATE_BAILING;
212
0
    } else if (tmpl_contains("<role>ASSISTANT</role>") && tmpl_contains("\"HUMAN\"") && tmpl_contains("<think>")) {
213
0
        return LLM_CHAT_TEMPLATE_BAILING_THINK;
214
0
    } else if (tmpl_contains("<role>ASSISTANT</role>") && tmpl_contains("<role>HUMAN</role>") && tmpl_contains("<|role_end|>")) {
215
0
        return LLM_CHAT_TEMPLATE_BAILING2;
216
0
    } else if (tmpl_contains("<|header_start|>") && tmpl_contains("<|header_end|>")) {
217
0
        return LLM_CHAT_TEMPLATE_LLAMA4;
218
0
    } else if (tmpl_contains("<|endofuserprompt|>")) {
219
0
        return LLM_CHAT_TEMPLATE_DOTS1;
220
0
    } else if (tmpl_contains("<|extra_0|>") && tmpl_contains("<|extra_4|>")) {
221
0
        return LLM_CHAT_TEMPLATE_HUNYUAN_MOE;
222
0
    } else if (tmpl_contains("<|start|>") && tmpl_contains("<|channel|>")) {
223
0
        return LLM_CHAT_TEMPLATE_OPENAI_MOE;
224
0
    } else if (tmpl_contains("<|hy_Assistant|>") && tmpl_contains("<|hy_begin▁of▁sentence|>")) {
225
0
        return LLM_CHAT_TEMPLATE_HUNYUAN_VL;
226
0
    } else if (tmpl_contains("<|hy_Assistant|>") && tmpl_contains("<|hy_place▁holder▁no▁3|>")) {
227
0
        return LLM_CHAT_TEMPLATE_HUNYUAN_DENSE;
228
0
    } else if (tmpl_contains("<|im_assistant|>assistant<|im_middle|>")) {
229
0
        return LLM_CHAT_TEMPLATE_KIMI_K2;
230
0
    } else if (tmpl_contains("<seed:bos>")) {
231
0
        return LLM_CHAT_TEMPLATE_SEED_OSS;
232
0
    } else if (tmpl_contains("'Assistant: '  + message['content'] + '<|separator|>")) {
233
0
        return LLM_CHAT_TEMPLATE_GROK_2;
234
0
    } else if (tmpl_contains(LU8("[unused9]系统:[unused10]"))) {
235
0
        return LLM_CHAT_TEMPLATE_PANGU_EMBED;
236
0
    } else if (tmpl_contains("<|begin|>") && tmpl_contains("<|end|>") && tmpl_contains("<|content|>")) {
237
0
        return LLM_CHAT_TEMPLATE_SOLAR_OPEN;
238
0
    }
239
0
    return LLM_CHAT_TEMPLATE_UNKNOWN;
240
0
}
241
242
// Simple version of "llama_apply_chat_template" that only works with strings
243
// This function uses heuristic checks to determine commonly used template. It is not a jinja parser.
244
int32_t llm_chat_apply_template(
245
    llm_chat_template tmpl,
246
    const std::vector<const llama_chat_message *> & chat,
247
0
    std::string & dest, bool add_ass) {
248
    // Taken from the research: https://github.com/ggml-org/llama.cpp/issues/5527
249
0
    std::stringstream ss;
250
0
    if (tmpl == LLM_CHAT_TEMPLATE_CHATML) {
251
        // chatml template
252
0
        for (auto message : chat) {
253
0
            ss << "<|im_start|>" << message->role << "\n" << message->content << "<|im_end|>\n";
254
0
        }
255
0
        if (add_ass) {
256
0
            ss << "<|im_start|>assistant\n";
257
0
        }
258
0
    } else if (tmpl == LLM_CHAT_TEMPLATE_MISTRAL_V7 || tmpl == LLM_CHAT_TEMPLATE_MISTRAL_V7_TEKKEN) {
259
        // Official mistral 'v7' template
260
        // See: https://huggingface.co/mistralai/Mistral-Large-Instruct-2411#basic-instruct-template-v7
261
        //      https://huggingface.co/mistralai/Mistral-Small-3.1-24B-Instruct-2503#basic-instruct-template-v7-tekken
262
0
        const char * trailing_space = tmpl == LLM_CHAT_TEMPLATE_MISTRAL_V7 ? " " : "";
263
0
        for (auto message : chat) {
264
0
            std::string role(message->role);
265
0
            std::string content(message->content);
266
0
            if (role == "system") {
267
0
                ss << "[SYSTEM_PROMPT]" << trailing_space << content << "[/SYSTEM_PROMPT]";
268
0
            } else if (role == "user") {
269
0
                ss << "[INST]" << trailing_space << content << "[/INST]";
270
0
            } else {
271
0
                ss << trailing_space << content << "</s>";
272
0
            }
273
0
        }
274
0
    } else if (tmpl == LLM_CHAT_TEMPLATE_MISTRAL_V1
275
0
            || tmpl == LLM_CHAT_TEMPLATE_MISTRAL_V3
276
0
            || tmpl == LLM_CHAT_TEMPLATE_MISTRAL_V3_TEKKEN) {
277
        // See: https://github.com/mistralai/cookbook/blob/main/concept-deep-dive/tokenization/chat_templates.md
278
        // See: https://github.com/mistralai/cookbook/blob/main/concept-deep-dive/tokenization/templates.md
279
0
        std::string leading_space = tmpl == LLM_CHAT_TEMPLATE_MISTRAL_V1 ? " " : "";
280
0
        std::string trailing_space = tmpl == LLM_CHAT_TEMPLATE_MISTRAL_V3_TEKKEN ? "" : " ";
281
0
        bool trim_assistant_message = tmpl == LLM_CHAT_TEMPLATE_MISTRAL_V3;
282
0
        bool is_inside_turn = false;
283
0
        for (auto message : chat) {
284
0
            if (!is_inside_turn) {
285
0
                ss << leading_space << "[INST]" << trailing_space;
286
0
                is_inside_turn = true;
287
0
            }
288
0
            std::string role(message->role);
289
0
            std::string content(message->content);
290
0
            if (role == "system") {
291
0
                ss << content << "\n\n";
292
0
            } else if (role == "user") {
293
0
                ss << content << leading_space << "[/INST]";
294
0
            } else {
295
0
                ss << trailing_space << (trim_assistant_message ? trim(content) : content) << "</s>";
296
0
                is_inside_turn = false;
297
0
            }
298
0
        }
299
0
    } else if (
300
0
            tmpl == LLM_CHAT_TEMPLATE_LLAMA_2
301
0
            || tmpl == LLM_CHAT_TEMPLATE_LLAMA_2_SYS
302
0
            || tmpl == LLM_CHAT_TEMPLATE_LLAMA_2_SYS_BOS
303
0
            || tmpl == LLM_CHAT_TEMPLATE_LLAMA_2_SYS_STRIP) {
304
        // llama2 template and its variants
305
        // [variant] support system message
306
        // See: https://huggingface.co/blog/llama2#how-to-prompt-llama-2
307
0
        bool support_system_message = tmpl != LLM_CHAT_TEMPLATE_LLAMA_2;
308
        // [variant] add BOS inside history
309
0
        bool add_bos_inside_history = tmpl == LLM_CHAT_TEMPLATE_LLAMA_2_SYS_BOS;
310
        // [variant] trim spaces from the input message
311
0
        bool strip_message = tmpl == LLM_CHAT_TEMPLATE_LLAMA_2_SYS_STRIP;
312
        // construct the prompt
313
0
        bool is_inside_turn = true; // skip BOS at the beginning
314
0
        ss << "[INST] ";
315
0
        for (auto message : chat) {
316
0
            std::string content = strip_message ? trim(message->content) : message->content;
317
0
            std::string role(message->role);
318
0
            if (!is_inside_turn) {
319
0
                is_inside_turn = true;
320
0
                ss << (add_bos_inside_history ? "<s>[INST] " : "[INST] ");
321
0
            }
322
0
            if (role == "system") {
323
0
                if (support_system_message) {
324
0
                    ss << "<<SYS>>\n" << content << "\n<</SYS>>\n\n";
325
0
                } else {
326
                    // if the model does not support system message, we still include it in the first message, but without <<SYS>>
327
0
                    ss << content << "\n";
328
0
                }
329
0
            } else if (role == "user") {
330
0
                ss << content << " [/INST]";
331
0
            } else {
332
0
                ss << content << "</s>";
333
0
                is_inside_turn = false;
334
0
            }
335
0
        }
336
0
    } else if (tmpl == LLM_CHAT_TEMPLATE_PHI_3) {
337
        // Phi 3
338
0
        for (auto message : chat) {
339
0
            std::string role(message->role);
340
0
            ss << "<|" << role << "|>\n" << message->content << "<|end|>\n";
341
0
        }
342
0
        if (add_ass) {
343
0
            ss << "<|assistant|>\n";
344
0
        }
345
0
    } else if (tmpl == LLM_CHAT_TEMPLATE_PHI_4) {
346
        // chatml template
347
0
        for (auto message : chat) {
348
0
            ss << "<|im_start|>" << message->role << "<|im_sep|>" << message->content << "<|im_end|>";
349
0
        }
350
0
        if (add_ass) {
351
0
            ss << "<|im_start|>assistant<|im_sep|>";
352
0
        }
353
0
    } else if (tmpl == LLM_CHAT_TEMPLATE_FALCON_3) {
354
        // Falcon 3
355
0
        for (auto message : chat) {
356
0
            std::string role(message->role);
357
0
            ss << "<|" << role << "|>\n" << message->content << "\n";
358
0
        }
359
0
        if (add_ass) {
360
0
            ss << "<|assistant|>\n";
361
0
        }
362
0
    } else if (tmpl == LLM_CHAT_TEMPLATE_ZEPHYR) {
363
        // zephyr template
364
0
        for (auto message : chat) {
365
0
            ss << "<|" << message->role << "|>" << "\n" << message->content << "<|endoftext|>\n";
366
0
        }
367
0
        if (add_ass) {
368
0
            ss << "<|assistant|>\n";
369
0
        }
370
0
    } else if (tmpl == LLM_CHAT_TEMPLATE_MONARCH) {
371
        // mlabonne/AlphaMonarch-7B template (the <s> is included inside history)
372
0
        for (auto message : chat) {
373
0
            std::string bos = (message == chat.front()) ? "" : "<s>"; // skip BOS for first message
374
0
            ss << bos << message->role << "\n" << message->content << "</s>\n";
375
0
        }
376
0
        if (add_ass) {
377
0
            ss << "<s>assistant\n";
378
0
        }
379
0
    } else if (tmpl == LLM_CHAT_TEMPLATE_GEMMA) {
380
        // google/gemma-7b-it
381
0
        std::string system_prompt = "";
382
0
        for (auto message : chat) {
383
0
            std::string role(message->role);
384
0
            if (role == "system") {
385
                // there is no system message for gemma, but we will merge it with user prompt, so nothing is broken
386
0
                system_prompt += trim(message->content);
387
0
                continue;
388
0
            }
389
            // in gemma, "assistant" is "model"
390
0
            role = role == "assistant" ? "model" : message->role;
391
0
            ss << "<start_of_turn>" << role << "\n";
392
0
            if (!system_prompt.empty() && role != "model") {
393
0
                ss << system_prompt << "\n\n";
394
0
                system_prompt = "";
395
0
            }
396
0
            ss << trim(message->content) << "<end_of_turn>\n";
397
0
        }
398
0
        if (add_ass) {
399
0
            ss << "<start_of_turn>model\n";
400
0
        }
401
0
    } else if (tmpl == LLM_CHAT_TEMPLATE_ORION) {
402
        // OrionStarAI/Orion-14B-Chat
403
0
        std::string system_prompt = "";
404
0
        for (auto message : chat) {
405
0
            std::string role(message->role);
406
0
            if (role == "system") {
407
                // there is no system message support, we will merge it with user prompt
408
0
                system_prompt += message->content;
409
0
                continue;
410
0
            } else if (role == "user") {
411
0
                ss << "Human: ";
412
0
                if (!system_prompt.empty()) {
413
0
                    ss << system_prompt << "\n\n";
414
0
                    system_prompt = "";
415
0
                }
416
0
                ss << message->content << "\n\nAssistant: </s>";
417
0
            } else {
418
0
                ss << message->content << "</s>";
419
0
            }
420
0
        }
421
0
    } else if (tmpl == LLM_CHAT_TEMPLATE_OPENCHAT) {
422
        // openchat/openchat-3.5-0106,
423
0
        for (auto message : chat) {
424
0
            std::string role(message->role);
425
0
            if (role == "system") {
426
0
                ss << message->content << "<|end_of_turn|>";
427
0
            } else {
428
0
                role[0] = toupper(role[0]);
429
0
                ss << "GPT4 Correct " << role << ": " << message->content << "<|end_of_turn|>";
430
0
            }
431
0
        }
432
0
        if (add_ass) {
433
0
            ss << "GPT4 Correct Assistant:";
434
0
        }
435
0
    } else if (tmpl == LLM_CHAT_TEMPLATE_VICUNA || tmpl == LLM_CHAT_TEMPLATE_VICUNA_ORCA) {
436
        // eachadea/vicuna-13b-1.1 (and Orca variant)
437
0
        for (auto message : chat) {
438
0
            std::string role(message->role);
439
0
            if (role == "system") {
440
                // Orca-Vicuna variant uses a system prefix
441
0
                if (tmpl == LLM_CHAT_TEMPLATE_VICUNA_ORCA) {
442
0
                    ss << "SYSTEM: " << message->content << "\n";
443
0
                } else {
444
0
                    ss << message->content << "\n\n";
445
0
                }
446
0
            } else if (role == "user") {
447
0
                ss << "USER: " << message->content << "\n";
448
0
            } else if (role == "assistant") {
449
0
                ss << "ASSISTANT: " << message->content << "</s>\n";
450
0
            }
451
0
        }
452
0
        if (add_ass) {
453
0
            ss << "ASSISTANT:";
454
0
        }
455
0
    } else if (tmpl == LLM_CHAT_TEMPLATE_DEEPSEEK) {
456
        // deepseek-ai/deepseek-coder-33b-instruct
457
0
        for (auto message : chat) {
458
0
            std::string role(message->role);
459
0
            if (role == "system") {
460
0
                ss << message->content;
461
0
            } else if (role == "user") {
462
0
                ss << "### Instruction:\n" << message->content << "\n";
463
0
            } else if (role == "assistant") {
464
0
                ss << "### Response:\n" << message->content << "\n<|EOT|>\n";
465
0
            }
466
0
        }
467
0
        if (add_ass) {
468
0
            ss << "### Response:\n";
469
0
        }
470
0
    } else if (tmpl == LLM_CHAT_TEMPLATE_COMMAND_R) {
471
        // CohereForAI/c4ai-command-r-plus
472
0
        for (auto message : chat) {
473
0
            std::string role(message->role);
474
0
            if (role == "system") {
475
0
                ss << "<|START_OF_TURN_TOKEN|><|SYSTEM_TOKEN|>" << trim(message->content) << "<|END_OF_TURN_TOKEN|>";
476
0
            } else if (role == "user") {
477
0
                ss << "<|START_OF_TURN_TOKEN|><|USER_TOKEN|>" << trim(message->content) << "<|END_OF_TURN_TOKEN|>";
478
0
            } else if (role == "assistant") {
479
0
                ss << "<|START_OF_TURN_TOKEN|><|CHATBOT_TOKEN|>" << trim(message->content) << "<|END_OF_TURN_TOKEN|>";
480
0
            }
481
0
        }
482
0
        if (add_ass) {
483
0
            ss << "<|START_OF_TURN_TOKEN|><|CHATBOT_TOKEN|>";
484
0
        }
485
0
    } else if (tmpl == LLM_CHAT_TEMPLATE_LLAMA_3) {
486
        // Llama 3
487
0
        for (auto message : chat) {
488
0
            std::string role(message->role);
489
0
            ss << "<|start_header_id|>" << role << "<|end_header_id|>\n\n" << trim(message->content) << "<|eot_id|>";
490
0
        }
491
0
        if (add_ass) {
492
0
            ss << "<|start_header_id|>assistant<|end_header_id|>\n\n";
493
0
        }
494
0
    } else if (tmpl == LLM_CHAT_TEMPLATE_CHATGLM_3) {
495
        // chatglm3-6b
496
0
        ss << "[gMASK]" << "sop";
497
0
        for (auto message : chat) {
498
0
            std::string role(message->role);
499
0
            ss << "<|" << role << "|>" << "\n " << message->content;
500
0
        }
501
0
        if (add_ass) {
502
0
            ss << "<|assistant|>";
503
0
        }
504
0
    } else if (tmpl == LLM_CHAT_TEMPLATE_CHATGLM_4) {
505
0
        ss << "[gMASK]" << "<sop>";
506
0
        for (auto message : chat) {
507
0
            std::string role(message->role);
508
0
            ss << "<|" << role << "|>" << "\n" << message->content;
509
0
        }
510
0
        if (add_ass) {
511
0
            ss << "<|assistant|>\n";
512
0
        }
513
0
    } else if (tmpl == LLM_CHAT_TEMPLATE_GLMEDGE) {
514
0
        for (auto message : chat) {
515
0
            std::string role(message->role);
516
0
            ss << "<|" << role << "|>" << "\n" << message->content;
517
0
        }
518
0
        if (add_ass) {
519
0
            ss << "<|assistant|>";
520
0
        }
521
0
    } else if (tmpl == LLM_CHAT_TEMPLATE_MINICPM) {
522
        // MiniCPM-3B-OpenHermes-2.5-v2-GGUF
523
0
        for (auto message : chat) {
524
0
            std::string role(message->role);
525
0
            if (role == "user") {
526
0
                ss << LU8("<用户>");
527
0
                ss << trim(message->content);
528
0
                ss << "<AI>";
529
0
            } else {
530
0
                ss << trim(message->content);
531
0
            }
532
0
        }
533
0
    } else if (tmpl == LLM_CHAT_TEMPLATE_DEEPSEEK_2) {
534
        // DeepSeek-V2
535
0
        for (auto message : chat) {
536
0
            std::string role(message->role);
537
0
            if (role == "system") {
538
0
                ss << message->content << "\n\n";
539
0
            } else if (role == "user") {
540
0
                ss << "User: " << message->content << "\n\n";
541
0
            } else if (role == "assistant") {
542
0
                ss << "Assistant: " << message->content << LU8("<|end▁of▁sentence|>");
543
0
            }
544
0
        }
545
0
        if (add_ass) {
546
0
            ss << "Assistant:";
547
0
        }
548
0
    } else if (tmpl == LLM_CHAT_TEMPLATE_DEEPSEEK_3) {
549
        // DeepSeek-V3
550
0
        for (auto message : chat) {
551
0
            std::string role(message->role);
552
0
            if (role == "system") {
553
0
                ss << message->content << "\n\n";
554
0
            } else if (role == "user") {
555
0
                ss << LU8("<|User|>") << message->content;
556
0
            } else if (role == "assistant") {
557
0
                ss << LU8("<|Assistant|>") << message->content << LU8("<|end▁of▁sentence|>");
558
0
            }
559
0
        }
560
0
        if (add_ass) {
561
0
            ss << LU8("<|Assistant|>");
562
0
        }
563
0
    } else if (tmpl == LLM_CHAT_TEMPLATE_DEEPSEEK_OCR) {
564
0
        for (auto message : chat) {
565
            // no template
566
0
            ss << message->content;
567
0
        }
568
0
    } else if (tmpl == LLM_CHAT_TEMPLATE_EXAONE_3) {
569
        // ref: https://huggingface.co/LGAI-EXAONE/EXAONE-3.0-7.8B-Instruct/discussions/8#66bae61b1893d14ee8ed85bb
570
        // EXAONE-3.0-7.8B-Instruct
571
0
        for (auto message : chat) {
572
0
            std::string role(message->role);
573
0
            if (role == "system") {
574
0
                ss << "[|system|]" << trim(message->content) << "[|endofturn|]\n";
575
0
            } else if (role == "user") {
576
0
                ss << "[|user|]" << trim(message->content) << "\n";
577
0
            } else if (role == "assistant") {
578
0
                ss << "[|assistant|]" << trim(message->content) << "[|endofturn|]\n";
579
0
            }
580
0
        }
581
0
        if (add_ass) {
582
0
            ss << "[|assistant|]";
583
0
        }
584
0
    } else if (tmpl == LLM_CHAT_TEMPLATE_EXAONE_4) {
585
0
        for (auto message : chat) {
586
0
            std::string role(message->role);
587
0
            if (role == "system") {
588
0
                ss << "[|system|]" << trim(message->content) << "[|endofturn|]\n";
589
0
            } else if (role == "user") {
590
0
                ss << "[|user|]" << trim(message->content) << "\n";
591
0
            } else if (role == "assistant") {
592
0
                ss << "[|assistant|]" << trim(message->content) << "[|endofturn|]\n";
593
0
            } else if (role == "tool") {
594
0
                ss << "[|tool|]" << trim(message->content) << "[|endofturn|]\n";
595
0
            }
596
0
        }
597
0
        if (add_ass) {
598
0
            ss << "[|assistant|]";
599
0
        }
600
0
    } else if (tmpl == LLM_CHAT_TEMPLATE_EXAONE_MOE) {
601
0
        for (auto message : chat) {
602
0
            std::string role(message->role);
603
0
            if (role == "system") {
604
0
                ss << "<|system|>\n" << trim(message->content) << "<|endofturn|>\n";
605
0
            } else if (role == "user") {
606
0
                ss << "<|user|>\n" << trim(message->content) << "<|endofturn|>\n";
607
0
            } else if (role == "assistant") {
608
0
                ss << "<|assistant|>\n" << trim(message->content) << "<|endofturn|>\n";
609
0
            } else if (role == "tool") {
610
0
                ss << "<|tool|>\n" << trim(message->content) << "<|endofturn|>\n";
611
0
            }
612
0
        }
613
0
        if (add_ass) {
614
0
            ss << "<|assistant|>\n";
615
0
        }
616
0
    } else if (tmpl == LLM_CHAT_TEMPLATE_RWKV_WORLD) {
617
        // this template requires the model to have "\n\n" as EOT token
618
0
        for (size_t i = 0; i < chat.size(); i++) {
619
0
            std::string role(chat[i]->role);
620
0
            if (role == "system") {
621
0
                ss << "System: " << trim(chat[i]->content) << "\n\n";
622
0
            } else if (role == "user") {
623
0
                ss << "User: " << trim(chat[i]->content) << "\n\n";
624
0
                if (i == chat.size() - 1) {
625
0
                    ss << "Assistant:";
626
0
                }
627
0
            } else if (role == "assistant") {
628
0
                ss << "Assistant: " << trim(chat[i]->content) << "\n\n";
629
0
            }
630
0
        }
631
0
    } else if (tmpl == LLM_CHAT_TEMPLATE_GRANITE_3_X) {
632
        // IBM Granite 3.x template
633
0
        for (const auto & message : chat) {
634
0
            std::string role(message->role);
635
0
            ss << "<|start_of_role|>" << role << "<|end_of_role|>";
636
0
            if (role == "assistant_tool_call") {
637
0
                ss << "<|tool_call|>";
638
0
            }
639
0
            ss << message->content << "<|end_of_text|>\n";
640
0
        }
641
0
        if (add_ass) {
642
0
            ss << "<|start_of_role|>assistant<|end_of_role|>";
643
0
        }
644
0
    } else if (tmpl == LLM_CHAT_TEMPLATE_GRANITE_4_0) {
645
        // IBM Granite 4.0 template
646
0
        for (const auto & message : chat) {
647
0
            std::string role(message->role);
648
0
            if (role == "assistant_tool_call") {
649
0
                ss << "<|start_of_role|>assistant<|end_of_role|><|tool_call|>";
650
0
            } else {
651
0
                ss << "<|start_of_role|>" << role << "<|end_of_role|>";
652
0
            }
653
0
            ss << message->content << "<|end_of_text|>\n";
654
0
        }
655
0
        if (add_ass) {
656
0
            ss << "<|start_of_role|>assistant<|end_of_role|>";
657
0
        }
658
0
    } else if (tmpl == LLM_CHAT_TEMPLATE_GRANITE_4_1) {
659
        // IBM Granite 4.1 template
660
0
        for (const auto & message : chat) {
661
0
            std::string role(message->role);
662
0
            if (role == "assistant_tool_call") {
663
0
                ss << "<|start_of_role|>assistant<|end_of_role|><|tool_call|>";
664
0
            } else {
665
0
                ss << "<|start_of_role|>" << role << "<|end_of_role|>";
666
0
            }
667
0
            ss << message->content << "<|end_of_text|>\n";
668
0
        }
669
0
        if (add_ass) {
670
0
            ss << "<|start_of_role|>assistant<|end_of_role|>";
671
0
        }
672
0
    } else if (tmpl == LLM_CHAT_TEMPLATE_GIGACHAT) {
673
        // GigaChat template
674
0
        bool has_system = !chat.empty() && std::string(chat[0]->role) == "system";
675
676
        // Handle system message if present
677
0
        if (has_system) {
678
0
            ss << "<s>" << chat[0]->content << "<|message_sep|>";
679
0
        } else {
680
0
            ss << "<s>";
681
0
        }
682
683
        // Process remaining messages
684
0
        for (size_t i = has_system ? 1 : 0; i < chat.size(); i++) {
685
0
            std::string role(chat[i]->role);
686
0
            if (role == "user") {
687
0
                ss << "user<|role_sep|>" << chat[i]->content << "<|message_sep|>"
688
0
                << "available functions<|role_sep|>[]<|message_sep|>";
689
0
            } else if (role == "assistant") {
690
0
                ss << "assistant<|role_sep|>" << chat[i]->content << "<|message_sep|>";
691
0
            }
692
0
        }
693
694
        // Add generation prompt if needed
695
0
        if (add_ass) {
696
0
            ss << "assistant<|role_sep|>";
697
0
        }
698
0
    }  else if (tmpl == LLM_CHAT_TEMPLATE_MEGREZ) {
699
        // Megrez template
700
0
        for (auto message : chat) {
701
0
            std::string role(message->role);
702
0
            ss << "<|role_start|>" << role << "<|role_end|>" << message->content << "<|turn_end|>";
703
0
        }
704
705
0
        if (add_ass) {
706
0
            ss << "<|role_start|>assistant<|role_end|>";
707
0
        }
708
0
    } else if (tmpl == LLM_CHAT_TEMPLATE_YANDEX) {
709
        // Yandex template ("\n\n" is defined as EOT token)
710
711
0
        for (size_t i = 0; i < chat.size(); i++) {
712
0
            std::string role(chat[i]->role);
713
0
            if (role == "user") {
714
0
                ss << " Пользователь: " << chat[i]->content << "\n\n";
715
0
            } else if (role == "assistant") {
716
0
                ss << " Ассистент: " << chat[i]->content << "\n\n";
717
0
            }
718
0
        }
719
720
        // Add generation prompt if needed
721
0
        if (add_ass) {
722
0
            ss << " Ассистент:[SEP]";
723
0
        }
724
0
    } else if (tmpl == LLM_CHAT_TEMPLATE_BAILING || tmpl == LLM_CHAT_TEMPLATE_BAILING_THINK) {
725
        // Bailing (Ling/Ring) template
726
0
        for (auto message : chat) {
727
0
            std::string role(message->role);
728
729
0
            if (role == "user") {
730
0
                role = "HUMAN";
731
0
            } else {
732
0
                std::transform(role.begin(), role.end(), role.begin(), ::toupper);
733
0
            }
734
735
0
            ss << "<role>" << role << "</role>" << message->content;
736
0
        }
737
738
0
        if (add_ass) {
739
0
            ss << "<role>ASSISTANT</role>";
740
741
0
            if (tmpl == LLM_CHAT_TEMPLATE_BAILING_THINK) {
742
0
                ss << "<think>";
743
0
            }
744
0
        }
745
0
    } else if (tmpl == LLM_CHAT_TEMPLATE_BAILING2) {
746
        // Bailing2 (Ling 2.0) template
747
0
        bool has_system = !chat.empty() && std::string(chat[0]->role) == "system";
748
749
0
        if (!has_system) {
750
0
            ss << "<role>SYSTEM</role>detailed thinking off<|role_end|>";
751
0
        }
752
753
0
        for (auto message : chat) {
754
0
            std::string role(message->role);
755
756
0
            if (role == "user") {
757
0
                role = "HUMAN";
758
0
            } else {
759
0
                std::transform(role.begin(), role.end(), role.begin(), ::toupper);
760
0
            }
761
762
0
            ss << "<role>" << role << "</role>" << message->content << "<|role_end|>";
763
0
        }
764
765
0
        if (add_ass) {
766
0
            ss << "<role>ASSISTANT</role>";
767
0
        }
768
0
    } else if (tmpl == LLM_CHAT_TEMPLATE_LLAMA4) {
769
        // Llama 4
770
0
        for (auto message : chat) {
771
0
            std::string role(message->role);
772
0
            ss << "<|header_start|>" << role << "<|header_end|>\n\n" << trim(message->content) << "<|eot|>";
773
0
        }
774
0
        if (add_ass) {
775
0
            ss << "<|header_start|>assistant<|header_end|>\n\n";
776
0
        }
777
0
    } else if (tmpl == LLM_CHAT_TEMPLATE_SMOLVLM) {
778
        // SmolVLM
779
0
        ss << "<|im_start|>"; // uses <|im_start|> as BOS, but the actual content is NOT chatml
780
0
        for (auto message : chat) {
781
0
            std::string role(message->role);
782
0
            if (role == "system") {
783
0
                ss << message->content << "\n\n";
784
0
            } else if (role == "user") {
785
0
                ss << "User: " << message->content << "<end_of_utterance>\n";
786
0
            } else {
787
0
                ss << "Assistant: " << message->content << "<end_of_utterance>\n";
788
0
            }
789
0
        }
790
0
        if (add_ass) {
791
0
            ss << "Assistant:";
792
0
        }
793
0
    } else if (tmpl == LLM_CHAT_TEMPLATE_DOTS1) {
794
        // dots.llm1.inst (DOTS1)
795
0
        for (auto message : chat) {
796
0
            std::string role(message->role);
797
0
            if (role == "system") {
798
0
                ss << "<|system|>" << message->content << "<|endofsystem|>";
799
0
            } else if (role == "user") {
800
0
                ss << "<|userprompt|>" << message->content << "<|endofuserprompt|>";
801
0
            } else {
802
0
                ss << "<|response|>" << message->content << "<|endofresponse|>";
803
0
            }
804
0
        }
805
0
        if (add_ass) {
806
0
            ss << "<|response|>";
807
0
        }
808
0
    } else if (tmpl == LLM_CHAT_TEMPLATE_HUNYUAN_MOE) {
809
        // tencent/Hunyuan-A13B-Instruct
810
0
        for (auto message : chat) {
811
0
            std::string role(message->role);
812
0
            if (role == "system") {
813
0
                ss << "<|startoftext|>" << message->content << "<|extra_4|>";
814
0
            } else if (role == "assistant") {
815
0
                ss << message->content << "<|eos|>";
816
0
            } else {
817
0
                ss << "<|startoftext|>" << message->content << "<|extra_0|>";
818
0
            }
819
0
        }
820
0
    } else if (tmpl == LLM_CHAT_TEMPLATE_OPENAI_MOE) {
821
        // OpenAI MoE (based on Harmony chat template)
822
0
        for (auto message : chat) {
823
0
            std::string role(message->role);
824
0
            ss << "<|start|>" << role << "<|message|>" << message->content;
825
0
            ss << (role == "assistant" ? "<|return|>" : "<|end|>");
826
0
        }
827
0
        if (add_ass) {
828
0
            ss << "<|start|>assistant";
829
0
        }
830
0
    } else if (tmpl == LLM_CHAT_TEMPLATE_HUNYUAN_DENSE) {
831
        // tencent/Hunyuan-4B-Instruct
832
0
        for (size_t i = 0; i < chat.size(); i++) {
833
0
            std::string role(chat[i]->role);
834
0
            if (i == 0) {
835
0
                if (role == "system") {
836
0
                    ss << chat[i]->content << "<|hy_place▁holder▁no▁3|>";
837
0
                }
838
0
            }
839
840
0
            if (role == "assistant") {
841
0
                ss << "<|hy_Assistant|>" << chat[i]->content << "<|hy_place▁holder▁no▁2|>";
842
0
            } else if (role == "user") {
843
0
                ss << "<|hy_User|>" << chat[i]->content << "<|hy_Assistant|>";
844
0
            }
845
0
        }
846
0
    } else if (tmpl == LLM_CHAT_TEMPLATE_HUNYUAN_VL) {
847
        // tencent/HunyuanOCR & tencent/HunyuanVL
848
0
        ss << "<|hy_begin▁of▁sentence|>";
849
0
        for (size_t i = 0; i < chat.size(); i++) {
850
0
            std::string role(chat[i]->role);
851
0
            if (i == 0 && role == "system") {
852
0
                ss << chat[i]->content << "<|hy_place▁holder▁no▁3|>";
853
0
                continue;
854
0
            }
855
856
0
            if (role == "user") {
857
0
                ss << chat[i]->content << "<|hy_User|>";
858
0
            } else if (role == "assistant") {
859
0
                ss << chat[i]->content << "<|hy_Assistant|>";
860
0
            }
861
0
        }
862
0
    } else if (tmpl == LLM_CHAT_TEMPLATE_KIMI_K2) {
863
        // moonshotai/Kimi-K2-Instruct
864
0
        for (auto message : chat) {
865
0
            std::string role(message->role);
866
0
            if (role == "system") {
867
0
                ss << "<|im_system|>system<|im_middle|>";
868
0
            } else if (role == "user") {
869
0
                ss << "<|im_user|>user<|im_middle|>";
870
0
            } else if (role == "assistant") {
871
0
                ss << "<|im_assistant|>assistant<|im_middle|>";
872
0
            } else if (role == "tool") {
873
0
                ss << "<|im_system|>tool<|im_middle|>";
874
0
            }
875
876
0
            ss << message->content << "<|im_end|>";
877
0
        }
878
0
        if (add_ass) {
879
0
            ss << "<|im_assistant|>assistant<|im_middle|>";
880
0
        }
881
0
    } else if (tmpl == LLM_CHAT_TEMPLATE_SEED_OSS) {
882
0
        for (auto message: chat) {
883
0
            std::string role(message->role);
884
0
            ss << "<seed:bos>" << role << "\n" << (role == "assistant" ? trim(message->content) : message->content) << "<seed:eos>";
885
0
        }
886
0
        if (add_ass) {
887
0
            ss << "<seed:bos>assistant\n";
888
0
        }
889
0
    } else if (tmpl == LLM_CHAT_TEMPLATE_GROK_2) {
890
0
        for (auto message : chat) {
891
0
            std::string role(message->role);
892
0
            if (role == "system") {
893
0
                ss << "System: " << trim(message->content) << "<|separator|>\n\n";
894
0
            } else if (role == "user") {
895
0
                ss << "Human: " << trim(message->content) << "<|separator|>\n\n";
896
0
            } else if (role == "assistant") {
897
0
                ss << "Assistant: " << message->content << "<|separator|>\n\n";
898
0
            }
899
0
        }
900
0
        if (add_ass) {
901
0
            ss << "Assistant:";
902
0
        }
903
0
    }else if (tmpl == LLM_CHAT_TEMPLATE_PANGU_EMBED) {
904
        // [unused9]系统:xxx[unused10]
905
        // [unused9]用户:xxx[unused10]
906
        // [unused9]助手:xxx[unused10]
907
        // ...
908
0
        for (size_t i = 0; i < chat.size(); ++i) {
909
0
            const auto & msg = chat[i];
910
0
            const std::string & role = msg->role;
911
0
            const std::string & content = msg->content;
912
913
0
            if (i == 0 && role != "system") {
914
0
                ss << "[unused9]系统:[unused10]";
915
0
            }
916
917
0
            if (role == "system") {
918
0
                ss << "[unused9]系统:" << content << "[unused10]";
919
0
            } else if (role == "user") {
920
0
                ss << "[unused9]用户:" << content << "[unused10]";
921
0
            } else if (role == "assistant") {
922
0
                ss << "[unused9]助手:" << content << "[unused10]";
923
0
            } else if (role == "tool") {
924
0
                ss << "[unused9]工具:" << content << "[unused10]";
925
0
            } else if (role == "function") {
926
0
                ss << "[unused9]方法:" << content << "[unused10]";
927
0
            }
928
0
        }
929
0
        if (add_ass) {
930
0
            ss << "[unused9]助手:";
931
0
        }
932
0
    } else if (tmpl == LLM_CHAT_TEMPLATE_SOLAR_OPEN) {
933
0
        for (auto message : chat) {
934
0
            std::string role(message->role);
935
0
            ss << "<|begin|>" << role << "<|content|>" << message->content << "<|end|>";
936
0
        }
937
0
        if (add_ass) {
938
0
            ss << "<|begin|>assistant";
939
0
        }
940
0
    } else {
941
        // template not supported
942
0
        return -1;
943
0
    }
944
0
    dest = ss.str();
945
0
    return dest.size();
946
0
}
947
948
// public interface
949
950
0
int32_t llama_chat_builtin_templates(const char ** output, size_t len) {
951
0
    auto it = LLM_CHAT_TEMPLATES.begin();
952
0
    for (size_t i = 0; i < std::min(len, LLM_CHAT_TEMPLATES.size()); i++) {
953
0
        output[i] = it->first.c_str();
954
0
        std::advance(it, 1);
955
0
    }
956
0
    return (int32_t) LLM_CHAT_TEMPLATES.size();
957
0
}