server : fix typo in model name (#4876)

This commit is contained in:
Isaac McFadyen 2024-01-11 09:33:26 -05:00 committed by GitHub
parent 2a7c94db5f
commit 2f043328e3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2515,7 +2515,7 @@ json oaicompat_completion_params_parse(
//
// https://platform.openai.com/docs/api-reference/chat/create
llama_sampling_params default_sparams;
llama_params["model"] = json_value(body, "model", std::string("uknown"));
llama_params["model"] = json_value(body, "model", std::string("unknown"));
llama_params["prompt"] = format_chatml(body["messages"]); // OpenAI 'messages' to llama.cpp 'prompt'
llama_params["cache_prompt"] = json_value(body, "cache_prompt", false);
llama_params["temperature"] = json_value(body, "temperature", 0.0);