Update server.cpp

Fix bug in identifying the grammar.
This commit is contained in:
AdithyanI 2023-12-16 12:07:23 +01:00 committed by GitHub
parent 8a5be3bd58
commit ed7c2cb1f9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2413,7 +2413,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());
}