server : fix duplicated n_predict key in the generation_settings (#8994)

This commit is contained in:
Riceball LEE 2024-08-15 15:28:05 +08:00 committed by GitHub
parent 4af8420afb
commit 37501d9c79
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1321,7 +1321,7 @@ struct server_context {
return json {
{"n_ctx", slot.n_ctx},
{"n_predict", slot.n_predict},
{"n_predict", slot.n_predict}, // Server configured n_predict
{"model", params.model_alias},
{"seed", slot.sparams.seed},
{"temperature", slot.sparams.temp},
@ -1343,7 +1343,7 @@ struct server_context {
{"mirostat_eta", slot.sparams.mirostat_eta},
{"penalize_nl", slot.sparams.penalize_nl},
{"stop", slot.params.antiprompt},
{"n_predict", slot.params.n_predict}, // TODO: fix duplicate key n_predict
{"max_tokens", slot.params.n_predict}, // User configured n_predict
{"n_keep", slot.params.n_keep},
{"n_discard", slot.params.n_discard},
{"ignore_eos", ignore_eos},