We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d28291e commit 5344b11Copy full SHA for 5344b11
controllers/llamaCPP.cc
@@ -219,8 +219,13 @@ void llamaCPP::modelStatus(
219
const HttpRequestPtr &req,
220
std::function<void(const HttpResponsePtr &)> &&callback) {
221
Json::Value jsonResp;
222
- jsonResp["model_loaded"] = this->model_loaded.load();
223
- jsonResp["model_data"] = llama.get_model_props().dump();
+ bool is_model_loaded = this->model_loaded;
+ if (is_model_loaded) {
224
+ jsonResp["model_loaded"] = is_model_loaded;
225
+ jsonResp["model_data"] = llama.get_model_props().dump();
226
+ } else {
227
228
+ }
229
230
auto resp = nitro_utils::nitroHttpJsonResponse(jsonResp);
231
callback(resp);
0 commit comments