File tree 2 files changed +17
-0
lines changed
2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change 6
6
#include < drogon/HttpResponse.h>
7
7
#include < drogon/HttpTypes.h>
8
8
#include < regex>
9
+ #include < string>
9
10
#include < thread>
10
11
#include < trantor/utils/Logger.h>
11
12
@@ -214,6 +215,17 @@ void llamaCPP::unloadModel(
214
215
callback (resp);
215
216
return ;
216
217
}
218
+ 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 ();
224
+
225
+ auto resp = nitro_utils::nitroHttpJsonResponse (jsonResp);
226
+ callback (resp);
227
+ return ;
228
+ }
217
229
218
230
void llamaCPP::loadModel (
219
231
const HttpRequestPtr &req,
Original file line number Diff line number Diff line change @@ -2125,6 +2125,7 @@ class llamaCPP : public drogon::HttpController<llamaCPP> {
2125
2125
METHOD_ADD (llamaCPP::embedding, " embedding" , Post);
2126
2126
METHOD_ADD (llamaCPP::loadModel, " loadmodel" , Post);
2127
2127
METHOD_ADD (llamaCPP::unloadModel, " unloadmodel" , Get);
2128
+ METHOD_ADD (llamaCPP::modelStatus, " modelstatus" , Get);
2128
2129
2129
2130
// PATH_ADD("/llama/chat_completion", Post);
2130
2131
METHOD_LIST_END
@@ -2136,6 +2137,10 @@ class llamaCPP : public drogon::HttpController<llamaCPP> {
2136
2137
std::function<void (const HttpResponsePtr &)> &&callback);
2137
2138
void unloadModel (const HttpRequestPtr &req,
2138
2139
std::function<void (const HttpResponsePtr &)> &&callback);
2140
+
2141
+ void modelStatus (const HttpRequestPtr &req,
2142
+ std::function<void (const HttpResponsePtr &)> &&callback);
2143
+
2139
2144
void warmupModel ();
2140
2145
2141
2146
void backgroundTask ();
You can’t perform that action at this time.
0 commit comments