We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d87b48f commit 1bd8678Copy full SHA for 1bd8678
examples/server/server.cpp
@@ -1089,12 +1089,6 @@ struct llama_server_context
1089
}
1090
1091
queue_results.send(res);
1092
-
1093
- // parent multitask, if any, needs to be updated
1094
- if (slot.multitask_id != -1)
1095
- {
1096
- queue_tasks.update_multitask(slot.multitask_id, slot.task_id, res);
1097
- }
1098
1099
1100
void send_embedding(llama_client_slot &slot)
@@ -1319,7 +1313,7 @@ struct llama_server_context
1319
1313
result_jsons.push_back(subres.result_json);
1320
1314
result.error = result.error && subres.error;
1321
1315
1322
- result.result_json = json{ "results", result_jsons };
1316
+ result.result_json = json{ { "results", result_jsons } };
1323
1317
queue_results.send(result);
1324
1318
1325
0 commit comments