server : fix grammar being ignored (#4494)

Fix bug in identifying the grammar.
This commit is contained in:
AdithyanI 2023-12-17 15:57:56 +01:00 committed by GitHub
parent eb16dae7e7
commit 8edd2b40fd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2414,7 +2414,7 @@ json oaicompat_completion_params_parse(
llama_params["ignore_eos"] = json_value(body, "ignore_eos", false);
llama_params["tfs_z"] = json_value(body, "tfs_z", 0.0);
if (llama_params.count("grammar") != 0) {
if (body.count("grammar") != 0) {
llama_params["grammar"] = json_value(body, "grammar", json::object());
}