diff --git a/examples/server/server.cpp b/examples/server/server.cpp index f8586628a..6cc07a955 100644 --- a/examples/server/server.cpp +++ b/examples/server/server.cpp @@ -549,7 +549,7 @@ bool parse_options_completion(json body, llama_server_context& llama, Response & } if (!body["repeat_last_n"].is_null()) { - llama.params.repeat_last_n = body["repeat_last_n"].get(); + llama.params.repeat_last_n = body["repeat_last_n"].get(); } if (!body["temperature"].is_null()) { @@ -569,7 +569,7 @@ bool parse_options_completion(json body, llama_server_context& llama, Response & } if (!body["mirostat"].is_null()) { - llama.params.mirostat = body["mirostat"].get(); + llama.params.mirostat = body["mirostat"].get(); } if (!body["mirostat_tau"].is_null()) { @@ -581,7 +581,7 @@ bool parse_options_completion(json body, llama_server_context& llama, Response & } if (!body["penalize_nl"].is_null()) { - llama.params.penalize_nl = body["penalize_nl"].get(); + llama.params.penalize_nl = body["penalize_nl"].get(); } if (!body["batch_size"].is_null()) {