Skip to content

Commit bfaad89

Browse files
AdithyanIhodlen
authored andcommitted
server : fix grammar being ignored (ggml-org#4494)
Fix bug in identifying the grammar.
1 parent ece5134 commit bfaad89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/server/server.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -2414,7 +2414,7 @@ json oaicompat_completion_params_parse(
24142414
llama_params["ignore_eos"] = json_value(body, "ignore_eos", false);
24152415
llama_params["tfs_z"] = json_value(body, "tfs_z", 0.0);
24162416

2417-
if (llama_params.count("grammar") != 0) {
2417+
if (body.count("grammar") != 0) {
24182418
llama_params["grammar"] = json_value(body, "grammar", json::object());
24192419
}
24202420

0 commit comments

Comments
 (0)