Skip to content

Commit 5344b11

Browse files
committed
hotfix: model_loaded status
1 parent d28291e commit 5344b11

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

controllers/llamaCPP.cc

+7-2
Original file line numberDiff line numberDiff line change
@@ -219,8 +219,13 @@ void llamaCPP::modelStatus(
219219
const HttpRequestPtr &req,
220220
std::function<void(const HttpResponsePtr &)> &&callback) {
221221
Json::Value jsonResp;
222-
jsonResp["model_loaded"] = this->model_loaded.load();
223-
jsonResp["model_data"] = llama.get_model_props().dump();
222+
bool is_model_loaded = this->model_loaded;
223+
if (is_model_loaded) {
224+
jsonResp["model_loaded"] = is_model_loaded;
225+
jsonResp["model_data"] = llama.get_model_props().dump();
226+
} else {
227+
jsonResp["model_loaded"] = is_model_loaded;
228+
}
224229

225230
auto resp = nitro_utils::nitroHttpJsonResponse(jsonResp);
226231
callback(resp);

0 commit comments

Comments
 (0)