server : include total "num_slots" in props endpoint (#5349)

This commit is contained in:
Justin Parker 2024-02-06 04:20:59 -05:00 committed by GitHub
parent 31e7903221
commit 8a79c591de
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -432,6 +432,7 @@ struct llama_server_context
} }
default_generation_settings_for_props = get_formated_generation(slots.front()); default_generation_settings_for_props = get_formated_generation(slots.front());
default_generation_settings_for_props["num_slots"] = params.n_parallel;
default_generation_settings_for_props["seed"] = -1; default_generation_settings_for_props["seed"] = -1;
batch = llama_batch_init(n_ctx, 0, params.n_parallel); batch = llama_batch_init(n_ctx, 0, params.n_parallel);