Skip to content

Commit

Permalink
server : add newline after chat example (#9616)
Browse files Browse the repository at this point in the history
  • Loading branch information
StrangeBytesDev authored Sep 24, 2024
1 parent b0f2736 commit 0aa1501
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/server/server.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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));
Expand Down

0 comments on commit 0aa1501

Please sign in to comment.