mirror of
https://github.com/ggerganov/llama.cpp.git
synced 2024-11-13 14:29:52 +00:00
server : fix smart slot selection (#8020)
This commit is contained in:
parent
a7854743c5
commit
ba58993152
@ -1594,7 +1594,7 @@ struct server_context {
|
|||||||
} else {
|
} else {
|
||||||
std::string prompt;
|
std::string prompt;
|
||||||
if (task.data.contains("prompt") && task.data.at("prompt").is_string()) {
|
if (task.data.contains("prompt") && task.data.at("prompt").is_string()) {
|
||||||
json_value(task.data, "prompt", std::string());
|
prompt = json_value(task.data, "prompt", std::string());
|
||||||
}
|
}
|
||||||
|
|
||||||
slot = get_available_slot(prompt);
|
slot = get_available_slot(prompt);
|
||||||
|
Loading…
Reference in New Issue
Block a user