From: StrangeBytesDev Date: Tue, 24 Sep 2024 06:04:39 +0000 (-0700) Subject: server : add newline after chat example (#9616) X-Git-Tag: upstream/0.0.4488~671 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=0aa15011e315659640504731d1d05663837130fa;p=pkg%2Fggml%2Fsources%2Fllama.cpp server : add newline after chat example (#9616) --- diff --git a/examples/server/server.cpp b/examples/server/server.cpp index 8655c097..e5275a51 100644 --- a/examples/server/server.cpp +++ b/examples/server/server.cpp @@ -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));