server : add newline after chat example (#9616)

This commit is contained in:
StrangeBytesDev 2024-09-23 23:04:39 -07:00 committed by GitHub
parent b0f27361f3
commit 0aa15011e3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3179,7 +3179,7 @@ int main(int argc, char ** argv) {
}
// print sample chat example to make it clear which template is used
LOG_INF("%s: chat template, built_in: %d, chat_example: '%s\n'", __func__, params.chat_template.empty(), llama_chat_format_example(ctx_server.model, params.chat_template).c_str());
LOG_INF("%s: chat template, built_in: %d, chat_example: '%s'\n", __func__, params.chat_template.empty(), llama_chat_format_example(ctx_server.model, params.chat_template).c_str());
ctx_server.queue_tasks.on_new_task(std::bind(
&server_context::process_single_task, &ctx_server, std::placeholders::_1));