server.cpp 117 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096
  1. #include "common.h"
  2. #include "llama.h"
  3. #include "grammar-parser.h"
  4. #include "utils.hpp"
  5. #include "oai.hpp"
  6. #include "../llava/clip.h"
  7. #include "stb_image.h"
  8. #ifndef NDEBUG
  9. // crash the server in debug mode, otherwise send an http 500 error
  10. #define CPPHTTPLIB_NO_EXCEPTIONS 1
  11. #endif
  12. // increase max payload length to allow use of larger context size
  13. #define CPPHTTPLIB_FORM_URL_ENCODED_PAYLOAD_MAX_LENGTH 1048576
  14. #include "httplib.h"
  15. #include "json.hpp"
  16. // auto generated files (update with ./deps.sh)
  17. #include "index.html.hpp"
  18. #include "index.js.hpp"
  19. #include "completion.js.hpp"
  20. #include "json-schema-to-grammar.mjs.hpp"
  21. #include <cstddef>
  22. #include <thread>
  23. #include <chrono>
  24. #include <condition_variable>
  25. #include <atomic>
  26. using json = nlohmann::json;
  27. struct server_params
  28. {
  29. std::string hostname = "127.0.0.1";
  30. std::vector<std::string> api_keys;
  31. std::string public_path = "examples/server/public";
  32. std::string chat_template = "chatml";
  33. int32_t port = 8080;
  34. int32_t read_timeout = 600;
  35. int32_t write_timeout = 600;
  36. };
  37. bool server_verbose = false;
  38. static size_t common_part(const std::vector<llama_token> &a, const std::vector<llama_token> &b)
  39. {
  40. size_t i;
  41. for (i = 0; i < a.size() && i < b.size() && a[i] == b[i]; i++)
  42. {
  43. }
  44. return i;
  45. }
  46. enum stop_type
  47. {
  48. STOP_FULL,
  49. STOP_PARTIAL,
  50. };
  51. static bool ends_with(const std::string &str, const std::string &suffix)
  52. {
  53. return str.size() >= suffix.size() &&
  54. 0 == str.compare(str.size() - suffix.size(), suffix.size(), suffix);
  55. }
  56. static size_t find_partial_stop_string(const std::string &stop,
  57. const std::string &text)
  58. {
  59. if (!text.empty() && !stop.empty())
  60. {
  61. const char text_last_char = text.back();
  62. for (int64_t char_index = stop.size() - 1; char_index >= 0; char_index--)
  63. {
  64. if (stop[char_index] == text_last_char)
  65. {
  66. const std::string current_partial = stop.substr(0, char_index + 1);
  67. if (ends_with(text, current_partial))
  68. {
  69. return text.size() - char_index - 1;
  70. }
  71. }
  72. }
  73. }
  74. return std::string::npos;
  75. }
  76. // TODO: reuse llama_detokenize
  77. template <class Iter>
  78. static std::string tokens_to_str(llama_context *ctx, Iter begin, Iter end)
  79. {
  80. std::string ret;
  81. for (; begin != end; ++begin)
  82. {
  83. ret += llama_token_to_piece(ctx, *begin);
  84. }
  85. return ret;
  86. }
  87. // format incomplete utf-8 multibyte character for output
  88. static std::string tokens_to_output_formatted_string(const llama_context *ctx, const llama_token token)
  89. {
  90. std::string out = token == -1 ? "" : llama_token_to_piece(ctx, token);
  91. // if the size is 1 and first bit is 1, meaning it's a partial character
  92. // (size > 1 meaning it's already a known token)
  93. if (out.size() == 1 && (out[0] & 0x80) == 0x80)
  94. {
  95. std::stringstream ss;
  96. ss << std::hex << (out[0] & 0xff);
  97. std::string res(ss.str());
  98. out = "byte: \\x" + res;
  99. }
  100. return out;
  101. }
  102. // convert a vector of completion_token_output to json
  103. static json probs_vector_to_json(const llama_context *ctx, const std::vector<completion_token_output> &probs)
  104. {
  105. json out = json::array();
  106. for (const auto &prob : probs)
  107. {
  108. json probs_for_token = json::array();
  109. for (const auto &p : prob.probs)
  110. {
  111. std::string tok_str = tokens_to_output_formatted_string(ctx, p.tok);
  112. probs_for_token.push_back(json
  113. {
  114. {"tok_str", tok_str},
  115. {"prob", p.prob},
  116. });
  117. }
  118. std::string tok_str = tokens_to_output_formatted_string(ctx, prob.tok);
  119. out.push_back(json{
  120. {"content", tok_str},
  121. {"probs", probs_for_token},
  122. });
  123. }
  124. return out;
  125. }
  126. struct llama_client_slot
  127. {
  128. int id;
  129. int task_id = -1;
  130. struct slot_params params;
  131. slot_state state = IDLE;
  132. slot_command command = NONE;
  133. // used to determine the slot that has been used the longest
  134. int64_t t_last_used = -1;
  135. // generation props
  136. int32_t n_ctx = 0; // context size per slot
  137. int32_t n_past = 0;
  138. int32_t n_decoded = 0;
  139. int32_t n_remaining = -1;
  140. int32_t i_batch = -1;
  141. int32_t num_prompt_tokens = 0;
  142. int32_t num_prompt_tokens_processed = 0;
  143. json prompt;
  144. std::string generated_text;
  145. llama_token sampled;
  146. std::vector<llama_token> cache_tokens;
  147. std::vector<completion_token_output> generated_token_probs;
  148. bool infill = false;
  149. bool embedding = false;
  150. bool has_next_token = true;
  151. bool truncated = false;
  152. bool stopped_eos = false;
  153. bool stopped_word = false;
  154. bool stopped_limit = false;
  155. bool oaicompat = false;
  156. std::string oaicompat_model;
  157. std::string stopping_word;
  158. // sampling
  159. struct llama_sampling_params sparams;
  160. llama_sampling_context *ctx_sampling = nullptr;
  161. int32_t ga_i = 0; // group-attention state
  162. int32_t ga_n = 1; // group-attention factor
  163. int32_t ga_w = 512; // group-attention width
  164. int32_t n_past_se = 0; // self-extend
  165. // multimodal
  166. std::vector<slot_image> images;
  167. // stats
  168. size_t sent_count = 0;
  169. size_t sent_token_probs_index = 0;
  170. int64_t t_start_process_prompt;
  171. int64_t t_start_genereration;
  172. double t_prompt_processing; // ms
  173. double t_token_generation; // ms
  174. // multitasks
  175. int multitask_id = -1;
  176. void reset() {
  177. num_prompt_tokens = 0;
  178. generated_text = "";
  179. truncated = false;
  180. stopped_eos = false;
  181. stopped_word = false;
  182. stopped_limit = false;
  183. stopping_word = "";
  184. n_past = 0;
  185. sent_count = 0;
  186. sent_token_probs_index = 0;
  187. infill = false;
  188. ga_i = 0;
  189. n_past_se = 0;
  190. generated_token_probs.clear();
  191. for (slot_image & img : images)
  192. {
  193. free(img.image_embedding);
  194. if (img.img_data) {
  195. clip_image_u8_free(img.img_data);
  196. }
  197. img.prefix_prompt = "";
  198. }
  199. images.clear();
  200. }
  201. bool has_budget(gpt_params &global_params) {
  202. if (params.n_predict == -1 && global_params.n_predict == -1)
  203. {
  204. return true; // limitless
  205. }
  206. n_remaining = -1;
  207. if (params.n_predict != -1)
  208. {
  209. n_remaining = params.n_predict - n_decoded;
  210. }
  211. else if (global_params.n_predict != -1)
  212. {
  213. n_remaining = global_params.n_predict - n_decoded;
  214. }
  215. return n_remaining > 0; // no budget
  216. }
  217. bool available() const {
  218. return state == IDLE && command == NONE;
  219. }
  220. bool is_processing() const {
  221. return (state == IDLE && command == LOAD_PROMPT) || state == PROCESSING;
  222. }
  223. void add_token_string(const completion_token_output &token) {
  224. if (command == RELEASE)
  225. {
  226. return;
  227. }
  228. cache_tokens.push_back(token.tok);
  229. generated_token_probs.push_back(token);
  230. }
  231. void release() {
  232. if (state == PROCESSING)
  233. {
  234. t_token_generation = (ggml_time_us() - t_start_genereration) / 1e3;
  235. command = RELEASE;
  236. }
  237. }
  238. json get_formated_timings() {
  239. return json
  240. {
  241. {"prompt_n", num_prompt_tokens_processed},
  242. {"prompt_ms", t_prompt_processing},
  243. {"prompt_per_token_ms", t_prompt_processing / num_prompt_tokens_processed},
  244. {"prompt_per_second", 1e3 / t_prompt_processing * num_prompt_tokens_processed},
  245. {"predicted_n", n_decoded},
  246. {"predicted_ms", t_token_generation},
  247. {"predicted_per_token_ms", t_token_generation / n_decoded},
  248. {"predicted_per_second", 1e3 / t_token_generation * n_decoded},
  249. };
  250. }
  251. void print_timings() const {
  252. LOG_TEE("\n");
  253. LOG_TEE("%s: prompt eval time = %10.2f ms / %5d tokens (%8.2f ms per token, %8.2f tokens per second)\n",
  254. __func__, t_prompt_processing, num_prompt_tokens_processed, t_prompt_processing / num_prompt_tokens_processed, 1e3 / t_prompt_processing * num_prompt_tokens_processed);
  255. LOG_TEE("%s: eval time = %10.2f ms / %5d runs (%8.2f ms per token, %8.2f tokens per second)\n",
  256. __func__, t_token_generation, n_decoded,t_token_generation / n_decoded, 1e3 / t_token_generation * n_decoded);
  257. LOG_TEE("%s: total time = %10.2f ms\n", __func__, t_prompt_processing + t_token_generation);
  258. }
  259. };
  260. struct llama_server_context
  261. {
  262. llama_model *model = nullptr;
  263. llama_context *ctx = nullptr;
  264. clip_ctx *clp_ctx = nullptr;
  265. gpt_params params;
  266. llama_batch batch;
  267. bool multimodal = false;
  268. bool clean_kv_cache = true;
  269. bool all_slots_are_idle = false;
  270. bool add_bos_token = true;
  271. int32_t n_ctx; // total context for all clients / slots
  272. // system prompt
  273. bool system_need_update = false;
  274. std::string system_prompt;
  275. std::vector<llama_token> system_tokens;
  276. std::string name_user; // this should be the antiprompt
  277. std::string name_assistant;
  278. // slots / clients
  279. std::vector<llama_client_slot> slots;
  280. json default_generation_settings_for_props;
  281. llama_server_queue queue_tasks;
  282. llama_server_response queue_results;
  283. ~llama_server_context()
  284. {
  285. if (ctx)
  286. {
  287. llama_free(ctx);
  288. ctx = nullptr;
  289. }
  290. if (model)
  291. {
  292. llama_free_model(model);
  293. model = nullptr;
  294. }
  295. }
  296. bool load_model(const gpt_params &params_)
  297. {
  298. params = params_;
  299. if (!params.mmproj.empty()) {
  300. multimodal = true;
  301. LOG_TEE("Multi Modal Mode Enabled");
  302. clp_ctx = clip_model_load(params.mmproj.c_str(), /*verbosity=*/ 1);
  303. if(clp_ctx == nullptr) {
  304. LOG_ERROR("unable to load clip model", {{"model", params.mmproj}});
  305. return false;
  306. }
  307. if (params.n_ctx < 2048) { // request larger context for the image embedding
  308. params.n_ctx = 2048;
  309. }
  310. }
  311. std::tie(model, ctx) = llama_init_from_gpt_params(params);
  312. if (model == nullptr)
  313. {
  314. LOG_ERROR("unable to load model", {{"model", params.model}});
  315. return false;
  316. }
  317. if (multimodal) {
  318. const int n_embd_clip = clip_n_mmproj_embd(clp_ctx);
  319. const int n_embd_llm = llama_n_embd(model);
  320. if (n_embd_clip != n_embd_llm) {
  321. LOG_TEE("%s: embedding dim of the multimodal projector (%d) is not equal to that of LLaMA (%d). Make sure that you use the correct mmproj file.\n", __func__, n_embd_clip, n_embd_llm);
  322. llama_free(ctx);
  323. llama_free_model(model);
  324. return false;
  325. }
  326. }
  327. n_ctx = llama_n_ctx(ctx);
  328. add_bos_token = llama_should_add_bos_token(model);
  329. return true;
  330. }
  331. void initialize() {
  332. // create slots
  333. all_slots_are_idle = true;
  334. const int32_t n_ctx_slot = n_ctx / params.n_parallel;
  335. LOG_TEE("Available slots:\n");
  336. for (int i = 0; i < params.n_parallel; i++)
  337. {
  338. llama_client_slot slot;
  339. slot.id = i;
  340. slot.n_ctx = n_ctx_slot;
  341. LOG_TEE(" -> Slot %i - max context: %i\n", slot.id, n_ctx_slot);
  342. const int ga_n = params.grp_attn_n;
  343. const int ga_w = params.grp_attn_w;
  344. if (ga_n != 1) {
  345. GGML_ASSERT(ga_n > 0 && "ga_n must be positive"); // NOLINT
  346. GGML_ASSERT(ga_w % ga_n == 0 && "ga_w must be a multiple of ga_n"); // NOLINT
  347. //GGML_ASSERT(n_ctx_train % ga_w == 0 && "n_ctx_train must be a multiple of ga_w"); // NOLINT
  348. //GGML_ASSERT(n_ctx >= n_ctx_train * ga_n && "n_ctx must be at least n_ctx_train * ga_n"); // NOLINT
  349. LOG_TEE(" -> Slot %i - self-extend: ga_n = %d, ga_w = %d\n", slot.id, ga_n, ga_w);
  350. }
  351. slot.ga_i = 0;
  352. slot.ga_n = ga_n;
  353. slot.ga_w = ga_w;
  354. slot.reset();
  355. slots.push_back(slot);
  356. }
  357. default_generation_settings_for_props = get_formated_generation(slots.front());
  358. default_generation_settings_for_props["seed"] = -1;
  359. batch = llama_batch_init(n_ctx, 0, params.n_parallel);
  360. // empty system prompt
  361. system_prompt = "";
  362. system_tokens.clear();
  363. }
  364. std::vector<llama_token> tokenize(const json & json_prompt, bool add_bos) const
  365. {
  366. // TODO: currently, we tokenize using special tokens by default
  367. // this is not always correct (see https://github.com/ggerganov/llama.cpp/pull/4160#issuecomment-1824826216)
  368. // but it's better compared to completely ignoring ChatML and other chat templates
  369. const bool TMP_FORCE_SPECIAL = true;
  370. // If `add_bos` is true, we only add BOS, when json_prompt is a string,
  371. // or the first element of the json_prompt array is a string.
  372. std::vector<llama_token> prompt_tokens;
  373. if (json_prompt.is_array())
  374. {
  375. bool first = true;
  376. for (const auto& p : json_prompt)
  377. {
  378. if (p.is_string())
  379. {
  380. auto s = p.template get<std::string>();
  381. std::vector<llama_token> p;
  382. if (first)
  383. {
  384. p = ::llama_tokenize(ctx, s, add_bos, TMP_FORCE_SPECIAL);
  385. first = false;
  386. }
  387. else
  388. {
  389. p = ::llama_tokenize(ctx, s, false, TMP_FORCE_SPECIAL);
  390. }
  391. prompt_tokens.insert(prompt_tokens.end(), p.begin(), p.end());
  392. }
  393. else
  394. {
  395. if (first)
  396. {
  397. first = false;
  398. }
  399. prompt_tokens.push_back(p.template get<llama_token>());
  400. }
  401. }
  402. }
  403. else
  404. {
  405. auto s = json_prompt.template get<std::string>();
  406. prompt_tokens = ::llama_tokenize(ctx, s, add_bos, TMP_FORCE_SPECIAL);
  407. }
  408. return prompt_tokens;
  409. }
  410. llama_client_slot* get_slot(int id) {
  411. int64_t t_last = ggml_time_us();
  412. llama_client_slot *last_used = nullptr;
  413. for (llama_client_slot & slot : slots)
  414. {
  415. if (slot.id == id && slot.available())
  416. {
  417. return &slot;
  418. }
  419. if (slot.available() && slot.t_last_used < t_last)
  420. {
  421. last_used = &slot;
  422. t_last = slot.t_last_used;
  423. }
  424. }
  425. return last_used;
  426. }
  427. bool launch_slot_with_data(llama_client_slot* &slot, json data) {
  428. slot_params default_params;
  429. llama_sampling_params default_sparams;
  430. if (data.count("__oaicompat") != 0) {
  431. slot->oaicompat = true;
  432. slot->oaicompat_model = json_value(data, "model", std::string(DEFAULT_OAICOMPAT_MODEL));
  433. } else {
  434. slot->oaicompat = false;
  435. slot->oaicompat_model = "";
  436. }
  437. slot->params.stream = json_value(data, "stream", false);
  438. slot->params.cache_prompt = json_value(data, "cache_prompt", false);
  439. slot->params.n_predict = json_value(data, "n_predict", default_params.n_predict);
  440. slot->sparams.top_k = json_value(data, "top_k", default_sparams.top_k);
  441. slot->sparams.top_p = json_value(data, "top_p", default_sparams.top_p);
  442. slot->sparams.min_p = json_value(data, "min_p", default_sparams.min_p);
  443. slot->sparams.tfs_z = json_value(data, "tfs_z", default_sparams.tfs_z);
  444. slot->sparams.typical_p = json_value(data, "typical_p", default_sparams.typical_p);
  445. slot->sparams.temp = json_value(data, "temperature", default_sparams.temp);
  446. slot->sparams.dynatemp_range = json_value(data, "dynatemp_range", default_sparams.dynatemp_range);
  447. slot->sparams.dynatemp_exponent = json_value(data, "dynatemp_exponent", default_sparams.dynatemp_exponent);
  448. slot->sparams.penalty_last_n = json_value(data, "repeat_last_n", default_sparams.penalty_last_n);
  449. slot->sparams.penalty_repeat = json_value(data, "repeat_penalty", default_sparams.penalty_repeat);
  450. slot->sparams.penalty_freq = json_value(data, "frequency_penalty", default_sparams.penalty_freq);
  451. slot->sparams.penalty_present = json_value(data, "presence_penalty", default_sparams.penalty_present);
  452. slot->sparams.mirostat = json_value(data, "mirostat", default_sparams.mirostat);
  453. slot->sparams.mirostat_tau = json_value(data, "mirostat_tau", default_sparams.mirostat_tau);
  454. slot->sparams.mirostat_eta = json_value(data, "mirostat_eta", default_sparams.mirostat_eta);
  455. slot->sparams.penalize_nl = json_value(data, "penalize_nl", default_sparams.penalize_nl);
  456. slot->params.n_keep = json_value(data, "n_keep", slot->params.n_keep);
  457. slot->params.seed = json_value(data, "seed", default_params.seed);
  458. slot->sparams.grammar = json_value(data, "grammar", default_sparams.grammar);
  459. slot->sparams.n_probs = json_value(data, "n_probs", default_sparams.n_probs);
  460. // infill
  461. if (data.count("input_prefix") != 0)
  462. {
  463. slot->params.input_prefix = data["input_prefix"];
  464. }
  465. else
  466. {
  467. slot->params.input_prefix = "";
  468. }
  469. if (data.count("input_suffix") != 0)
  470. {
  471. slot->params.input_suffix = data["input_suffix"];
  472. }
  473. else
  474. {
  475. slot->params.input_suffix = "";
  476. }
  477. if (data.count("prompt") != 0)
  478. {
  479. slot->prompt = data["prompt"];
  480. }
  481. else
  482. {
  483. slot->prompt = "";
  484. }
  485. slot->sparams.penalty_prompt_tokens.clear();
  486. slot->sparams.use_penalty_prompt_tokens = false;
  487. const auto &penalty_prompt = data.find("penalty_prompt");
  488. if (penalty_prompt != data.end())
  489. {
  490. if (penalty_prompt->is_string())
  491. {
  492. const auto penalty_prompt_string = penalty_prompt->get<std::string>();
  493. auto penalty_tokens = llama_tokenize(model, penalty_prompt_string, false);
  494. slot->sparams.penalty_prompt_tokens.swap(penalty_tokens);
  495. if (slot->params.n_predict > 0)
  496. {
  497. slot->sparams.penalty_prompt_tokens.reserve(slot->sparams.penalty_prompt_tokens.size() + slot->params.n_predict);
  498. }
  499. slot->sparams.use_penalty_prompt_tokens = true;
  500. }
  501. else if (penalty_prompt->is_array())
  502. {
  503. const auto n_tokens = penalty_prompt->size();
  504. slot->sparams.penalty_prompt_tokens.reserve(n_tokens + std::max(0, slot->params.n_predict));
  505. const int n_vocab = llama_n_vocab(model);
  506. for (const auto &penalty_token : *penalty_prompt)
  507. {
  508. if (penalty_token.is_number_integer())
  509. {
  510. const auto tok = penalty_token.get<llama_token>();
  511. if (tok >= 0 && tok < n_vocab)
  512. {
  513. slot->sparams.penalty_prompt_tokens.push_back(tok);
  514. }
  515. }
  516. }
  517. slot->sparams.use_penalty_prompt_tokens = true;
  518. }
  519. }
  520. slot->sparams.logit_bias.clear();
  521. if (json_value(data, "ignore_eos", false))
  522. {
  523. slot->sparams.logit_bias[llama_token_eos(model)] = -INFINITY;
  524. }
  525. const auto &logit_bias = data.find("logit_bias");
  526. if (logit_bias != data.end() && logit_bias->is_array())
  527. {
  528. const int n_vocab = llama_n_vocab(model);
  529. for (const auto &el : *logit_bias)
  530. {
  531. if (el.is_array() && el.size() == 2)
  532. {
  533. float bias;
  534. if (el[1].is_number())
  535. {
  536. bias = el[1].get<float>();
  537. }
  538. else if (el[1].is_boolean() && !el[1].get<bool>())
  539. {
  540. bias = -INFINITY;
  541. }
  542. else
  543. {
  544. continue;
  545. }
  546. if (el[0].is_number_integer())
  547. {
  548. llama_token tok = el[0].get<llama_token>();
  549. if (tok >= 0 && tok < n_vocab)
  550. {
  551. slot->sparams.logit_bias[tok] = bias;
  552. }
  553. }
  554. else if (el[0].is_string())
  555. {
  556. auto toks = llama_tokenize(model, el[0].get<std::string>(), false);
  557. for (auto tok : toks)
  558. {
  559. slot->sparams.logit_bias[tok] = bias;
  560. }
  561. }
  562. }
  563. }
  564. }
  565. slot->params.antiprompt.clear();
  566. const auto &stop = data.find("stop");
  567. if (stop != data.end() && stop->is_array())
  568. {
  569. for (const auto &word : *stop)
  570. {
  571. if (!word.empty())
  572. {
  573. slot->params.antiprompt.push_back(word);
  574. }
  575. }
  576. }
  577. if (multimodal)
  578. {
  579. const auto &images_data = data.find("image_data");
  580. if (images_data != data.end() && images_data->is_array())
  581. {
  582. for (const auto &img : *images_data)
  583. {
  584. const std::vector<uint8_t> image_buffer = base64_decode(img["data"].get<std::string>());
  585. slot_image img_sl;
  586. img_sl.id = img.count("id") != 0 ? img["id"].get<int>() : slot->images.size();
  587. img_sl.img_data = clip_image_u8_init();
  588. if (!clip_image_load_from_bytes(image_buffer.data(), image_buffer.size(), img_sl.img_data))
  589. {
  590. LOG_TEE("slot %i - failed to load image [id: %i]\n", slot->id, img_sl.id);
  591. return false;
  592. }
  593. LOG_TEE("slot %i - loaded image\n", slot->id);
  594. img_sl.request_encode_image = true;
  595. slot->images.push_back(img_sl);
  596. }
  597. // process prompt
  598. // example: system prompt [img-102] user [img-103] describe [img-134] -> [{id: 102, prefix: 'system prompt '}, {id: 103, prefix: ' user '}, {id: 134, prefix: ' describe '}]}
  599. if (slot->images.size() > 0 && !slot->prompt.is_array())
  600. {
  601. std::string prompt = slot->prompt.get<std::string>();
  602. size_t pos = 0, begin_prefix = 0;
  603. std::string pattern = "[img-";
  604. while ((pos = prompt.find(pattern, pos)) != std::string::npos) {
  605. size_t end_prefix = pos;
  606. pos += pattern.length();
  607. size_t end_pos = prompt.find(']', pos);
  608. if (end_pos != std::string::npos)
  609. {
  610. std::string image_id = prompt.substr(pos, end_pos - pos);
  611. try
  612. {
  613. int img_id = std::stoi(image_id);
  614. bool found = false;
  615. for (slot_image &img : slot->images)
  616. {
  617. if (img.id == img_id) {
  618. found = true;
  619. img.prefix_prompt = prompt.substr(begin_prefix, end_prefix - begin_prefix);
  620. begin_prefix = end_pos + 1;
  621. break;
  622. }
  623. }
  624. if (!found) {
  625. LOG_TEE("ERROR: Image with id: %i, not found.\n", img_id);
  626. slot->images.clear();
  627. return false;
  628. }
  629. } catch (const std::invalid_argument& e) {
  630. LOG_TEE("Invalid image number id in prompt\n");
  631. slot->images.clear();
  632. return false;
  633. }
  634. }
  635. }
  636. slot->prompt = "";
  637. slot->params.input_suffix = prompt.substr(begin_prefix);
  638. slot->params.cache_prompt = false; // multimodal doesn't support cache prompt
  639. }
  640. }
  641. }
  642. if (slot->ctx_sampling != nullptr)
  643. {
  644. llama_sampling_free(slot->ctx_sampling);
  645. }
  646. slot->ctx_sampling = llama_sampling_init(slot->sparams);
  647. llama_set_rng_seed(ctx, slot->params.seed);
  648. slot->command = LOAD_PROMPT;
  649. all_slots_are_idle = false;
  650. LOG_TEE("slot %i is processing [task id: %i]\n", slot->id, slot->task_id);
  651. return true;
  652. }
  653. void kv_cache_clear() {
  654. // clear the entire KV cache
  655. llama_kv_cache_clear(ctx);
  656. clean_kv_cache = false;
  657. }
  658. void update_system_prompt() {
  659. system_tokens = ::llama_tokenize(ctx, system_prompt, add_bos_token);
  660. llama_batch_clear(batch);
  661. kv_cache_clear();
  662. for (int i = 0; i < (int) system_tokens.size(); ++i)
  663. {
  664. llama_batch_add(batch, system_tokens[i], i, { 0 }, false);
  665. }
  666. if (llama_decode(ctx, batch) != 0)
  667. {
  668. LOG_TEE("%s: llama_decode() failed\n", __func__);
  669. return;
  670. }
  671. // assign the system KV cache to all parallel sequences
  672. for (int32_t i = 1; i < params.n_parallel; ++i)
  673. {
  674. llama_kv_cache_seq_cp(ctx, 0, i, 0, system_tokens.size());
  675. }
  676. LOG_TEE("system prompt updated\n");
  677. system_need_update = false;
  678. }
  679. void notify_system_prompt_changed() {
  680. // release all slots
  681. for (llama_client_slot &slot : slots)
  682. {
  683. slot.release();
  684. }
  685. system_need_update = true;
  686. }
  687. void process_system_prompt_data(const json &sys_props) {
  688. system_prompt = sys_props.value("prompt", "");
  689. name_user = sys_props.value("anti_prompt", "");
  690. name_assistant = sys_props.value("assistant_name", "");
  691. if (slots.size() > 0)
  692. {
  693. notify_system_prompt_changed();
  694. }
  695. }
  696. static size_t find_stopping_strings(const std::string &text, const size_t last_token_size,
  697. const stop_type type, llama_client_slot &slot)
  698. {
  699. size_t stop_pos = std::string::npos;
  700. for (const std::string &word : slot.params.antiprompt)
  701. {
  702. size_t pos;
  703. if (type == STOP_FULL)
  704. {
  705. const size_t tmp = word.size() + last_token_size;
  706. const size_t from_pos = text.size() > tmp ? text.size() - tmp : 0;
  707. pos = text.find(word, from_pos);
  708. }
  709. else
  710. {
  711. pos = find_partial_stop_string(word, text);
  712. }
  713. if (pos != std::string::npos &&
  714. (stop_pos == std::string::npos || pos < stop_pos))
  715. {
  716. if (type == STOP_FULL)
  717. {
  718. slot.stopped_word = true;
  719. slot.stopping_word = word;
  720. slot.has_next_token = false;
  721. }
  722. stop_pos = pos;
  723. }
  724. }
  725. return stop_pos;
  726. }
  727. bool process_token(completion_token_output &result, llama_client_slot &slot) {
  728. // remember which tokens were sampled - used for repetition penalties during sampling
  729. const std::string token_str = llama_token_to_piece(ctx, result.tok);
  730. slot.sampled = result.tok;
  731. // search stop word and delete it
  732. slot.generated_text += token_str;
  733. slot.has_next_token = true;
  734. if (slot.ctx_sampling->params.use_penalty_prompt_tokens && result.tok != -1)
  735. {
  736. // we can change penalty_prompt_tokens because it is always created from scratch each request
  737. slot.ctx_sampling->params.penalty_prompt_tokens.push_back(result.tok);
  738. }
  739. // check if there is incomplete UTF-8 character at the end
  740. bool incomplete = false;
  741. for (unsigned i = 1; i < 5 && i <= slot.generated_text.size(); ++i)
  742. {
  743. unsigned char c = slot.generated_text[slot.generated_text.size() - i];
  744. if ((c & 0xC0) == 0x80)
  745. {
  746. // continuation byte: 10xxxxxx
  747. continue;
  748. }
  749. if ((c & 0xE0) == 0xC0)
  750. {
  751. // 2-byte character: 110xxxxx ...
  752. incomplete = i < 2;
  753. }
  754. else if ((c & 0xF0) == 0xE0)
  755. {
  756. // 3-byte character: 1110xxxx ...
  757. incomplete = i < 3;
  758. }
  759. else if ((c & 0xF8) == 0xF0)
  760. {
  761. // 4-byte character: 11110xxx ...
  762. incomplete = i < 4;
  763. }
  764. // else 1-byte character or invalid byte
  765. break;
  766. }
  767. if (!incomplete)
  768. {
  769. size_t pos = std::min(slot.sent_count, slot.generated_text.size());
  770. const std::string str_test = slot.generated_text.substr(pos);
  771. bool is_stop_full = false;
  772. size_t stop_pos = find_stopping_strings(str_test, token_str.size(), STOP_FULL, slot);
  773. if (stop_pos != std::string::npos)
  774. {
  775. is_stop_full = true;
  776. slot.generated_text.erase(
  777. slot.generated_text.begin() + pos + stop_pos,
  778. slot.generated_text.end());
  779. pos = std::min(slot.sent_count, slot.generated_text.size());
  780. }
  781. else
  782. {
  783. is_stop_full = false;
  784. stop_pos = find_stopping_strings(str_test, token_str.size(), STOP_PARTIAL, slot);
  785. }
  786. // check if there is any token to predict
  787. if (stop_pos == std::string::npos || (!slot.has_next_token && !is_stop_full && stop_pos > 0))
  788. {
  789. // no send the stop word in the response
  790. result.text_to_send = slot.generated_text.substr(pos, std::string::npos);
  791. slot.sent_count += result.text_to_send.size();
  792. // add the token to slot queue and cache
  793. }
  794. slot.add_token_string(result);
  795. if (slot.params.stream)
  796. {
  797. send_partial_response(slot, result);
  798. }
  799. }
  800. if (incomplete)
  801. {
  802. slot.has_next_token = true;
  803. }
  804. // check the limits
  805. if (slot.n_decoded > 0 && slot.has_next_token && !slot.has_budget(params))
  806. {
  807. slot.stopped_limit = true;
  808. slot.has_next_token = false;
  809. }
  810. if (!slot.cache_tokens.empty() && result.tok == llama_token_eos(model))
  811. {
  812. slot.stopped_eos = true;
  813. slot.has_next_token = false;
  814. LOG_VERBOSE("eos token found", {});
  815. }
  816. LOG_VERBOSE("next token", {
  817. {"token", result.tok},
  818. {"token_text", tokens_to_output_formatted_string(ctx, result.tok)},
  819. {"has_next_token", slot.has_next_token},
  820. {"n_remain", slot.n_remaining},
  821. {"num_tokens_predicted", slot.n_decoded},
  822. {"stopped_eos", slot.stopped_eos},
  823. {"stopped_word", slot.stopped_word},
  824. {"stopped_limit", slot.stopped_limit},
  825. {"stopping_word", slot.stopping_word},
  826. });
  827. return slot.has_next_token; // continue
  828. }
  829. bool process_images(llama_client_slot &slot) const
  830. {
  831. for (slot_image &img : slot.images)
  832. {
  833. if (!img.request_encode_image)
  834. {
  835. continue;
  836. }
  837. clip_image_f32_batch img_res_v;
  838. img_res_v.size = 0;
  839. img_res_v.data = nullptr;
  840. if (!clip_image_preprocess(clp_ctx, img.img_data, img_res_v))
  841. {
  842. LOG_TEE("Error processing the given image");
  843. clip_free(clp_ctx);
  844. clip_image_f32_free(img_res_v.data);
  845. return false;
  846. }
  847. // note: assumes only one image was returned by clip_image_preprocess
  848. clip_image_f32 * img_res = img_res_v.data;
  849. img.image_tokens = clip_n_patches(clp_ctx);
  850. img.image_embedding = (float *)malloc(clip_embd_nbytes(clp_ctx));
  851. if (!img.image_embedding)
  852. {
  853. LOG_TEE("Unable to allocate memory for image embeddings\n");
  854. clip_free(clp_ctx);
  855. return false;
  856. }
  857. LOG_TEE("slot %i - encoding image [id: %i]\n", slot.id, img.id);
  858. if (!clip_image_encode(clp_ctx, params.n_threads, img_res, img.image_embedding))
  859. {
  860. LOG_TEE("Unable to encode image\n");
  861. return false;
  862. }
  863. clip_image_f32_free(img_res_v.data);
  864. img.request_encode_image = false;
  865. }
  866. return slot.images.size() > 0;
  867. }
  868. void send_error(task_server& task, const std::string &error)
  869. {
  870. LOG_TEE("task %i - error: %s\n", task.id, error.c_str());
  871. task_result res;
  872. res.id = task.id;
  873. res.multitask_id = task.multitask_id;
  874. res.stop = false;
  875. res.error = true;
  876. res.result_json = { { "content", error } };
  877. queue_results.send(res);
  878. }
  879. json get_formated_generation(llama_client_slot &slot)
  880. {
  881. const auto eos_bias = slot.sparams.logit_bias.find(llama_token_eos(model));
  882. const bool ignore_eos = eos_bias != slot.sparams.logit_bias.end() &&
  883. eos_bias->second < 0.0f && std::isinf(eos_bias->second);
  884. return json {
  885. {"n_ctx", slot.n_ctx},
  886. {"model", params.model_alias},
  887. {"seed", slot.params.seed},
  888. {"temperature", slot.sparams.temp},
  889. {"dynatemp_range", slot.sparams.dynatemp_range},
  890. {"dynatemp_exponent", slot.sparams.dynatemp_exponent},
  891. {"top_k", slot.sparams.top_k},
  892. {"top_p", slot.sparams.top_p},
  893. {"min_p", slot.sparams.min_p},
  894. {"tfs_z", slot.sparams.tfs_z},
  895. {"typical_p", slot.sparams.typical_p},
  896. {"repeat_last_n", slot.sparams.penalty_last_n},
  897. {"repeat_penalty", slot.sparams.penalty_repeat},
  898. {"presence_penalty", slot.sparams.penalty_present},
  899. {"frequency_penalty", slot.sparams.penalty_freq},
  900. {"penalty_prompt_tokens", slot.sparams.penalty_prompt_tokens},
  901. {"use_penalty_prompt_tokens", slot.sparams.use_penalty_prompt_tokens},
  902. {"mirostat", slot.sparams.mirostat},
  903. {"mirostat_tau", slot.sparams.mirostat_tau},
  904. {"mirostat_eta", slot.sparams.mirostat_eta},
  905. {"penalize_nl", slot.sparams.penalize_nl},
  906. {"stop", slot.params.antiprompt},
  907. {"n_predict", slot.params.n_predict},
  908. {"n_keep", params.n_keep},
  909. {"ignore_eos", ignore_eos},
  910. {"stream", slot.params.stream},
  911. {"logit_bias", slot.sparams.logit_bias},
  912. {"n_probs", slot.sparams.n_probs},
  913. {"grammar", slot.sparams.grammar},
  914. };
  915. }
  916. void send_partial_response(llama_client_slot &slot, completion_token_output tkn)
  917. {
  918. task_result res;
  919. res.id = slot.task_id;
  920. res.multitask_id = slot.multitask_id;
  921. res.error = false;
  922. res.stop = false;
  923. res.result_json = json
  924. {
  925. {"content", tkn.text_to_send},
  926. {"stop", false},
  927. {"slot_id", slot.id},
  928. {"multimodal", multimodal}
  929. };
  930. if (slot.sparams.n_probs > 0)
  931. {
  932. std::vector<completion_token_output> probs_output = {};
  933. const std::vector<llama_token> to_send_toks = llama_tokenize(ctx, tkn.text_to_send, false);
  934. size_t probs_pos = std::min(slot.sent_token_probs_index, slot.generated_token_probs.size());
  935. size_t probs_stop_pos = std::min(slot.sent_token_probs_index + to_send_toks.size(), slot.generated_token_probs.size());
  936. if (probs_pos < probs_stop_pos)
  937. {
  938. probs_output = std::vector<completion_token_output>(slot.generated_token_probs.begin() + probs_pos, slot.generated_token_probs.begin() + probs_stop_pos);
  939. }
  940. slot.sent_token_probs_index = probs_stop_pos;
  941. res.result_json["completion_probabilities"] = probs_vector_to_json(ctx, probs_output);
  942. }
  943. if (slot.oaicompat)
  944. {
  945. res.result_json["oaicompat_token_ctr"] = slot.n_decoded;
  946. res.result_json["model"] = slot.oaicompat_model;
  947. }
  948. queue_results.send(res);
  949. }
  950. void send_final_response(llama_client_slot &slot)
  951. {
  952. task_result res;
  953. res.id = slot.task_id;
  954. res.multitask_id = slot.multitask_id;
  955. res.error = false;
  956. res.stop = true;
  957. res.result_json = json
  958. {
  959. {"content", !slot.params.stream ? slot.generated_text : ""},
  960. {"slot_id", slot.id},
  961. {"stop", true},
  962. {"model", params.model_alias},
  963. {"tokens_predicted", slot.n_decoded},
  964. {"tokens_evaluated", slot.num_prompt_tokens},
  965. {"generation_settings", get_formated_generation(slot)},
  966. {"prompt", slot.prompt},
  967. {"truncated", slot.truncated},
  968. {"stopped_eos", slot.stopped_eos},
  969. {"stopped_word", slot.stopped_word},
  970. {"stopped_limit", slot.stopped_limit},
  971. {"stopping_word", slot.stopping_word},
  972. {"tokens_cached", slot.n_past},
  973. {"timings", slot.get_formated_timings()}
  974. };
  975. if (slot.sparams.n_probs > 0)
  976. {
  977. std::vector<completion_token_output> probs = {};
  978. if (!slot.params.stream && slot.stopped_word)
  979. {
  980. const std::vector<llama_token> stop_word_toks = llama_tokenize(ctx, slot.stopping_word, false);
  981. probs = std::vector<completion_token_output>(slot.generated_token_probs.begin(), slot.generated_token_probs.end() - stop_word_toks.size());
  982. }
  983. else
  984. {
  985. probs = std::vector<completion_token_output>(
  986. slot.generated_token_probs.begin(),
  987. slot.generated_token_probs.end());
  988. }
  989. res.result_json["completion_probabilities"] = probs_vector_to_json(ctx, probs);
  990. }
  991. if (slot.oaicompat)
  992. {
  993. res.result_json["oaicompat_token_ctr"] = slot.n_decoded;
  994. res.result_json["model"] = slot.oaicompat_model;
  995. }
  996. queue_results.send(res);
  997. }
  998. void send_embedding(llama_client_slot &slot)
  999. {
  1000. task_result res;
  1001. res.id = slot.task_id;
  1002. res.multitask_id = slot.multitask_id;
  1003. res.error = false;
  1004. res.stop = true;
  1005. const int n_embd = llama_n_embd(model);
  1006. if (!params.embedding)
  1007. {
  1008. LOG_WARNING("embedding disabled", {
  1009. {"params.embedding", params.embedding},
  1010. });
  1011. res.result_json = json
  1012. {
  1013. {"embedding", std::vector<float>(n_embd, 0.0f)},
  1014. };
  1015. }
  1016. else
  1017. {
  1018. const float *data = llama_get_embeddings(ctx);
  1019. std::vector<float> embedding(data, data + n_embd);
  1020. res.result_json = json
  1021. {
  1022. {"embedding", embedding },
  1023. };
  1024. }
  1025. queue_results.send(res);
  1026. }
  1027. void request_completion(int task_id, json data, bool infill, bool embedding, int multitask_id)
  1028. {
  1029. task_server task;
  1030. task.id = task_id;
  1031. task.target_id = 0;
  1032. task.data = std::move(data);
  1033. task.infill_mode = infill;
  1034. task.embedding_mode = embedding;
  1035. task.type = TASK_TYPE_COMPLETION;
  1036. task.multitask_id = multitask_id;
  1037. // when a completion task's prompt array is not a singleton, we split it into multiple requests
  1038. // otherwise, it's a single-prompt task, we actually queue it
  1039. // if there's numbers in the prompt array it will be treated as an array of tokens
  1040. if (task.data.count("prompt") != 0 && task.data.at("prompt").size() > 1) {
  1041. bool numbers = false;
  1042. for (const auto& e : task.data.at("prompt")) {
  1043. if (e.is_number()) {
  1044. numbers = true;
  1045. break;
  1046. }
  1047. }
  1048. // NOTE: split_multiprompt_task() does not handle a mix of strings and numbers,
  1049. // it will completely stall the server. I don't know where the bug for this is.
  1050. //
  1051. // if there are numbers, it needs to be treated like a single prompt,
  1052. // queue_tasks handles a mix of strings and numbers just fine.
  1053. if (numbers) {
  1054. queue_tasks.post(task);
  1055. } else {
  1056. split_multiprompt_task(task_id, task);
  1057. }
  1058. } else {
  1059. queue_tasks.post(task);
  1060. }
  1061. }
  1062. // for multiple images processing
  1063. bool ingest_images(llama_client_slot &slot, int n_batch)
  1064. {
  1065. int image_idx = 0;
  1066. while (image_idx < (int) slot.images.size())
  1067. {
  1068. slot_image &img = slot.images[image_idx];
  1069. // process prefix prompt
  1070. for (int32_t i = 0; i < (int32_t) batch.n_tokens; i += n_batch)
  1071. {
  1072. const int32_t n_tokens = std::min(n_batch, (int32_t) (batch.n_tokens - i));
  1073. llama_batch batch_view = {
  1074. n_tokens,
  1075. batch.token + i,
  1076. nullptr,
  1077. batch.pos + i,
  1078. batch.n_seq_id + i,
  1079. batch.seq_id + i,
  1080. batch.logits + i,
  1081. 0, 0, 0, // unused
  1082. };
  1083. if (llama_decode(ctx, batch_view))
  1084. {
  1085. LOG_TEE("%s : failed to eval\n", __func__);
  1086. return false;
  1087. }
  1088. }
  1089. // process image with llm
  1090. for (int i = 0; i < img.image_tokens; i += n_batch)
  1091. {
  1092. int n_eval = img.image_tokens - i;
  1093. if (n_eval > n_batch)
  1094. {
  1095. n_eval = n_batch;
  1096. }
  1097. const int n_embd = llama_n_embd(model);
  1098. llama_batch batch_img = { n_eval, nullptr, (img.image_embedding + i * n_embd), nullptr, nullptr, nullptr, nullptr, slot.n_past, 1, 0, };
  1099. if (llama_decode(ctx, batch_img))
  1100. {
  1101. LOG_TEE("%s : failed to eval image\n", __func__);
  1102. return false;
  1103. }
  1104. slot.n_past += n_eval;
  1105. }
  1106. image_idx++;
  1107. llama_batch_clear(batch);
  1108. // append prefix of next image
  1109. const auto json_prompt = (image_idx >= (int) slot.images.size()) ?
  1110. slot.params.input_suffix : // no more images, then process suffix prompt
  1111. (json)(slot.images[image_idx].prefix_prompt);
  1112. std::vector<llama_token> append_tokens = tokenize(json_prompt, false); // has next image
  1113. for (int i = 0; i < (int) append_tokens.size(); ++i)
  1114. {
  1115. llama_batch_add(batch, append_tokens[i], system_tokens.size() + slot.n_past, { slot.id }, true);
  1116. slot.n_past += 1;
  1117. }
  1118. }
  1119. return true;
  1120. }
  1121. void request_cancel(int task_id)
  1122. {
  1123. task_server task;
  1124. task.type = TASK_TYPE_CANCEL;
  1125. task.target_id = task_id;
  1126. queue_tasks.post(task);
  1127. }
  1128. void split_multiprompt_task(int multitask_id, task_server& multiprompt_task)
  1129. {
  1130. int prompt_count = multiprompt_task.data.at("prompt").size();
  1131. if (prompt_count <= 1) {
  1132. send_error(multiprompt_task, "error while handling multiple prompts");
  1133. return;
  1134. }
  1135. // generate all the ID for subtask
  1136. std::vector<int> subtask_ids(prompt_count);
  1137. for (int i = 0; i < prompt_count; i++)
  1138. {
  1139. subtask_ids[i] = queue_tasks.get_new_id();
  1140. }
  1141. // queue up the multitask so we can track its subtask progression
  1142. queue_tasks.add_multitask(multitask_id, subtask_ids);
  1143. // add subtasks
  1144. for (int i = 0; i < prompt_count; i++)
  1145. {
  1146. json subtask_data = multiprompt_task.data;
  1147. subtask_data["prompt"] = subtask_data["prompt"][i];
  1148. // subtasks inherit everything else (infill mode, embedding mode, etc.)
  1149. request_completion(subtask_ids[i], subtask_data, multiprompt_task.infill_mode, multiprompt_task.embedding_mode, multitask_id);
  1150. }
  1151. }
  1152. void process_single_task(task_server& task)
  1153. {
  1154. switch (task.type)
  1155. {
  1156. case TASK_TYPE_COMPLETION: {
  1157. llama_client_slot *slot = get_slot(json_value(task.data, "slot_id", -1));
  1158. if (slot == nullptr)
  1159. {
  1160. // if no slot is available, we defer this task for processing later
  1161. LOG_VERBOSE("no slot is available", {});
  1162. queue_tasks.defer(task);
  1163. break;
  1164. }
  1165. if (task.data.contains("system_prompt"))
  1166. {
  1167. if (!all_slots_are_idle) {
  1168. send_error(task, "system prompt can only be updated when all slots are idle");
  1169. break;
  1170. }
  1171. process_system_prompt_data(task.data["system_prompt"]);
  1172. // reset cache_tokens for all slots
  1173. for (llama_client_slot &slot : slots)
  1174. {
  1175. slot.cache_tokens.clear();
  1176. slot.n_past = 0;
  1177. slot.n_past_se = 0;
  1178. }
  1179. }
  1180. slot->reset();
  1181. slot->infill = task.infill_mode;
  1182. slot->embedding = task.embedding_mode;
  1183. slot->task_id = task.id;
  1184. slot->multitask_id = task.multitask_id;
  1185. if (!launch_slot_with_data(slot, task.data))
  1186. {
  1187. // send error result
  1188. send_error(task, "internal_error");
  1189. break;
  1190. }
  1191. } break;
  1192. case TASK_TYPE_CANCEL: { // release slot linked with the task id
  1193. for (auto & slot : slots)
  1194. {
  1195. if (slot.task_id == task.target_id)
  1196. {
  1197. slot.release();
  1198. break;
  1199. }
  1200. }
  1201. } break;
  1202. case TASK_TYPE_NEXT_RESPONSE: {
  1203. // do nothing
  1204. } break;
  1205. }
  1206. }
  1207. void on_finish_multitask(task_multi& multitask)
  1208. {
  1209. // all subtasks done == multitask is done
  1210. task_result result;
  1211. result.id = multitask.id;
  1212. result.stop = true;
  1213. result.error = false;
  1214. // collect json results into one json result
  1215. std::vector<json> result_jsons;
  1216. for (auto& subres : multitask.results)
  1217. {
  1218. result_jsons.push_back(subres.result_json);
  1219. result.error = result.error && subres.error;
  1220. }
  1221. result.result_json = json{ { "results", result_jsons } };
  1222. queue_results.send(result);
  1223. }
  1224. bool update_slots() {
  1225. if (system_need_update)
  1226. {
  1227. LOG_TEE("updating system prompt\n");
  1228. update_system_prompt();
  1229. }
  1230. llama_batch_clear(batch);
  1231. if (all_slots_are_idle)
  1232. {
  1233. if (system_prompt.empty() && clean_kv_cache)
  1234. {
  1235. LOG_TEE("all slots are idle and system prompt is empty, clear the KV cache\n");
  1236. kv_cache_clear();
  1237. }
  1238. return true;
  1239. }
  1240. task_server task;
  1241. task.type = TASK_TYPE_NEXT_RESPONSE;
  1242. task.target_id = -1;
  1243. queue_tasks.post(task);
  1244. for (llama_client_slot &slot : slots)
  1245. {
  1246. if (slot.ga_n == 1)
  1247. {
  1248. if (slot.is_processing() && system_tokens.size() + slot.cache_tokens.size() >= (size_t) slot.n_ctx)
  1249. {
  1250. // Shift context
  1251. const int n_left = system_tokens.size() + slot.n_past - slot.params.n_keep - 1;
  1252. const int n_discard = n_left / 2;
  1253. LOG_TEE("slot %d: context shift - n_keep = %d, n_left = %d, n_discard = %d\n", slot.id, slot.params.n_keep, n_left, n_discard);
  1254. llama_kv_cache_seq_rm (ctx, slot.id, slot.params.n_keep + 1 , slot.params.n_keep + n_discard + 1);
  1255. llama_kv_cache_seq_shift(ctx, slot.id, slot.params.n_keep + 1 + n_discard, system_tokens.size() + slot.n_past, -n_discard);
  1256. for (size_t i = slot.params.n_keep + 1 + n_discard; i < slot.cache_tokens.size(); i++)
  1257. {
  1258. slot.cache_tokens[i - n_discard] = slot.cache_tokens[i];
  1259. }
  1260. slot.cache_tokens.resize(slot.cache_tokens.size() - n_discard);
  1261. slot.n_past -= n_discard;
  1262. slot.truncated = true;
  1263. LOG_VERBOSE("context shift", {
  1264. { "n_ctx", n_ctx },
  1265. { "n_keep", params.n_keep },
  1266. { "n_left", n_left },
  1267. });
  1268. }
  1269. }
  1270. }
  1271. // decode any currently ongoing sequences
  1272. for (auto & slot : slots)
  1273. {
  1274. // release the slot
  1275. if (slot.command == RELEASE)
  1276. {
  1277. slot.state = IDLE;
  1278. slot.command = NONE;
  1279. slot.t_last_used = ggml_time_us();
  1280. LOG_TEE("slot %d released (%d tokens in cache)\n", slot.id, (int) slot.cache_tokens.size());
  1281. queue_tasks.notify_slot_changed();
  1282. continue;
  1283. }
  1284. if (slot.state == IDLE)
  1285. {
  1286. continue;
  1287. }
  1288. slot.i_batch = batch.n_tokens;
  1289. const int32_t slot_npast = slot.n_past_se > 0 ? slot.n_past_se : slot.n_past;
  1290. // TODO: we always have to take into account the "system_tokens"
  1291. // this is not great and needs to be improved somehow
  1292. llama_batch_add(batch, slot.sampled, system_tokens.size() + slot_npast, { slot.id }, true);
  1293. slot.n_past += 1;
  1294. }
  1295. // process in chunks of params.n_batch
  1296. int32_t n_batch = params.n_batch;
  1297. // assign workload to the slots
  1298. if (params.cont_batching || batch.n_tokens == 0)
  1299. {
  1300. for (auto & slot : slots)
  1301. {
  1302. const bool has_prompt = slot.prompt.is_array() || (slot.prompt.is_string() && !slot.prompt.get<std::string>().empty()) || !slot.images.empty();
  1303. // empty prompt passed -> release the slot and send empty response
  1304. // note: infill mode allows empty prompt
  1305. if (slot.state == IDLE && slot.command == LOAD_PROMPT && !has_prompt && !slot.infill)
  1306. {
  1307. slot.release();
  1308. slot.print_timings();
  1309. send_final_response(slot);
  1310. continue;
  1311. }
  1312. // need process the prompt
  1313. if (slot.state == IDLE && slot.command == LOAD_PROMPT)
  1314. {
  1315. slot.state = PROCESSING;
  1316. slot.command = NONE;
  1317. std::vector<llama_token> prompt_tokens;
  1318. slot.t_start_process_prompt = ggml_time_us();
  1319. slot.t_start_genereration = 0;
  1320. if (slot.infill)
  1321. {
  1322. bool suff_rm_leading_spc = true;
  1323. if (params.input_suffix.find_first_of(' ') == 0 && params.input_suffix.size() > 1)
  1324. {
  1325. params.input_suffix.erase(0, 1);
  1326. suff_rm_leading_spc = false;
  1327. }
  1328. auto prefix_tokens = tokenize(slot.params.input_prefix, false);
  1329. auto suffix_tokens = tokenize(slot.params.input_suffix, false);
  1330. const int space_token = 29871; // TODO: this should not be hardcoded
  1331. if (suff_rm_leading_spc && !suffix_tokens.empty() && suffix_tokens[0] == space_token) {
  1332. suffix_tokens.erase(suffix_tokens.begin());
  1333. }
  1334. prefix_tokens.insert(prefix_tokens.begin(), llama_token_prefix(model));
  1335. prefix_tokens.insert(prefix_tokens.begin(), llama_token_bos(model)); // always add BOS
  1336. prefix_tokens.insert(prefix_tokens.end(), llama_token_suffix(model));
  1337. prefix_tokens.insert(prefix_tokens.end(), suffix_tokens.begin(), suffix_tokens.end());
  1338. prefix_tokens.push_back(llama_token_middle(model));
  1339. prompt_tokens = prefix_tokens;
  1340. }
  1341. else
  1342. {
  1343. prompt_tokens = tokenize(slot.prompt, system_prompt.empty() && add_bos_token); // add BOS if there isn't system prompt
  1344. }
  1345. slot.num_prompt_tokens = prompt_tokens.size();
  1346. if (slot.params.n_keep < 0)
  1347. {
  1348. slot.params.n_keep = slot.num_prompt_tokens;
  1349. }
  1350. slot.params.n_keep = std::min(slot.n_ctx - 4, slot.params.n_keep);
  1351. // if input prompt is too big, truncate it
  1352. if (slot.num_prompt_tokens >= slot.n_ctx)
  1353. {
  1354. const int n_left = slot.n_ctx - slot.params.n_keep;
  1355. const int n_block_size = n_left / 2;
  1356. const int erased_blocks = (slot.num_prompt_tokens - slot.params.n_keep - n_block_size) / n_block_size;
  1357. std::vector<llama_token> new_tokens(prompt_tokens.begin(), prompt_tokens.begin() + slot.params.n_keep);
  1358. new_tokens.insert(new_tokens.end(), prompt_tokens.begin() + slot.params.n_keep + erased_blocks * n_block_size, prompt_tokens.end());
  1359. LOG_VERBOSE("input truncated", {
  1360. {"n_ctx", slot.n_ctx},
  1361. {"n_keep", slot.params.n_keep},
  1362. {"n_left", n_left},
  1363. {"new_tokens", tokens_to_str(ctx, new_tokens.cbegin(), new_tokens.cend())},
  1364. });
  1365. slot.truncated = true;
  1366. prompt_tokens = new_tokens;
  1367. slot.num_prompt_tokens = prompt_tokens.size();
  1368. GGML_ASSERT(slot.num_prompt_tokens < slot.n_ctx);
  1369. }
  1370. if (!slot.params.cache_prompt)
  1371. {
  1372. llama_sampling_reset(slot.ctx_sampling);
  1373. slot.n_past = 0;
  1374. slot.n_past_se = 0;
  1375. slot.ga_i = 0;
  1376. slot.num_prompt_tokens_processed = slot.num_prompt_tokens;
  1377. }
  1378. else
  1379. {
  1380. // push the prompt into the sampling context (do not apply grammar)
  1381. for (auto &token : prompt_tokens)
  1382. {
  1383. llama_sampling_accept(slot.ctx_sampling, ctx, token, false);
  1384. }
  1385. slot.n_past = common_part(slot.cache_tokens, prompt_tokens);
  1386. slot.num_prompt_tokens_processed = slot.num_prompt_tokens - slot.n_past;
  1387. if (slot.ga_n != 1)
  1388. {
  1389. int ga_i = 0;
  1390. int32_t ga_n = slot.ga_n;
  1391. int32_t ga_w = slot.ga_w;
  1392. int32_t slot_npast = 0;
  1393. for (int k = 0; k < slot.n_past; ++k)
  1394. {
  1395. while (slot_npast >= ga_i + ga_w) {
  1396. const int bd = (ga_w/ga_n)*(ga_n - 1);
  1397. slot_npast -= bd;
  1398. ga_i += ga_w/ga_n;
  1399. }
  1400. slot_npast++;
  1401. }
  1402. slot.n_past_se = slot_npast;
  1403. slot.ga_i = ga_i;
  1404. }
  1405. LOG_TEE("slot %d : in cache: %i tokens | to process: %i tokens\n", slot.id, slot.n_past, slot.num_prompt_tokens_processed);
  1406. }
  1407. slot.cache_tokens = prompt_tokens;
  1408. if (slot.n_past == slot.num_prompt_tokens && slot.n_past > 0)
  1409. {
  1410. // we have to evaluate at least 1 token to generate logits.
  1411. LOG_TEE("slot %d : we have to evaluate at least 1 token to generate logits\n", slot.id);
  1412. slot.n_past--;
  1413. if (slot.ga_i > 0)
  1414. {
  1415. slot.n_past_se--;
  1416. }
  1417. }
  1418. LOG_TEE("slot %d : kv cache rm - [%d, end)\n", slot.id, (int) system_tokens.size() + slot.n_past);
  1419. llama_kv_cache_seq_rm(ctx, slot.id, system_tokens.size() + slot.n_past, -1);
  1420. LOG_VERBOSE("prompt ingested", {
  1421. {"n_past", slot.n_past},
  1422. {"cached", tokens_to_str(ctx, slot.cache_tokens.cbegin(), slot.cache_tokens.cbegin() + slot.n_past)},
  1423. {"to_eval", tokens_to_str(ctx, slot.cache_tokens.cbegin() + slot.n_past, slot.cache_tokens.cend())},
  1424. });
  1425. const bool has_images = process_images(slot);
  1426. // process the prefix of first image
  1427. std::vector<llama_token> prefix_tokens = has_images ? tokenize(slot.images[0].prefix_prompt, add_bos_token) : prompt_tokens;
  1428. int32_t slot_npast = slot.n_past_se > 0 ? slot.n_past_se : slot.n_past;
  1429. int32_t ga_i = slot.ga_i;
  1430. int32_t ga_n = slot.ga_n;
  1431. int32_t ga_w = slot.ga_w;
  1432. for (; slot.n_past < (int) prefix_tokens.size(); ++slot.n_past)
  1433. {
  1434. if (slot.ga_n != 1)
  1435. {
  1436. while (slot_npast >= ga_i + ga_w) {
  1437. const int bd = (ga_w/ga_n)*(ga_n - 1);
  1438. slot_npast -= bd;
  1439. ga_i += ga_w/ga_n;
  1440. }
  1441. }
  1442. llama_batch_add(batch, prefix_tokens[slot.n_past], system_tokens.size() + slot_npast, {slot.id }, false);
  1443. slot_npast++;
  1444. }
  1445. if (has_images && !ingest_images(slot, n_batch))
  1446. {
  1447. LOG_TEE("failed processing images\n");
  1448. return false;
  1449. }
  1450. // extract the logits only for the last token
  1451. if (batch.n_tokens > 0)
  1452. {
  1453. batch.logits[batch.n_tokens - 1] = true;
  1454. }
  1455. slot.n_decoded = 0;
  1456. slot.i_batch = batch.n_tokens - 1;
  1457. }
  1458. }
  1459. }
  1460. if (batch.n_tokens == 0)
  1461. {
  1462. all_slots_are_idle = true;
  1463. return true;
  1464. }
  1465. for (int32_t i = 0; i < (int32_t) batch.n_tokens; i += n_batch)
  1466. {
  1467. const int32_t n_tokens = std::min(n_batch, (int32_t) (batch.n_tokens - i));
  1468. for (auto & slot : slots)
  1469. {
  1470. if (slot.ga_n != 1)
  1471. {
  1472. // context extension via Self-Extend
  1473. while (slot.n_past_se >= slot.ga_i + slot.ga_w)
  1474. {
  1475. const int ib = (slot.ga_n * slot.ga_i) / slot.ga_w;
  1476. const int bd = (slot.ga_w / slot.ga_n) * (slot.ga_n - 1);
  1477. const int dd = (slot.ga_w / slot.ga_n) - ib * bd - slot.ga_w;
  1478. LOG_TEE("\n");
  1479. LOG_TEE("shift: [%6d, %6d] + %6d -> [%6d, %6d]\n", slot.ga_i, slot.n_past_se, ib * bd, slot.ga_i + ib * bd, slot.n_past_se + ib * bd);
  1480. LOG_TEE("div: [%6d, %6d] / %6d -> [%6d, %6d]\n", slot.ga_i + ib * bd, slot.ga_i + ib * bd + slot.ga_w, slot.ga_n, (slot.ga_i + ib * bd) / slot.ga_n, (slot.ga_i + ib * bd + slot.ga_w) / slot.ga_n);
  1481. LOG_TEE("shift: [%6d, %6d] + %6d -> [%6d, %6d]\n", slot.ga_i + ib * bd + slot.ga_w, slot.n_past_se + ib * bd, dd, slot.ga_i + ib * bd + slot.ga_w + dd, slot.n_past_se + ib * bd + dd);
  1482. llama_kv_cache_seq_shift(ctx, slot.id, slot.ga_i, slot.n_past_se, ib * bd);
  1483. llama_kv_cache_seq_div(ctx, slot.id, slot.ga_i + ib * bd, slot.ga_i + ib * bd + slot.ga_w,slot.ga_n);
  1484. llama_kv_cache_seq_shift(ctx, slot.id, slot.ga_i + ib * bd + slot.ga_w,slot.n_past_se + ib * bd, dd);
  1485. slot.n_past_se -= bd;
  1486. slot.ga_i += slot.ga_w / slot.ga_n;
  1487. LOG_TEE("\nn_past_old = %d, n_past = %d, ga_i = %d\n\n", slot.n_past_se + bd, slot.n_past_se, slot.ga_i);
  1488. }
  1489. slot.n_past_se += n_tokens;
  1490. }
  1491. }
  1492. llama_batch batch_view =
  1493. {
  1494. n_tokens,
  1495. batch.token + i,
  1496. nullptr,
  1497. batch.pos + i,
  1498. batch.n_seq_id + i,
  1499. batch.seq_id + i,
  1500. batch.logits + i,
  1501. 0, 0, 0, // unused
  1502. };
  1503. const int ret = llama_decode(ctx, batch_view);
  1504. if (ret != 0)
  1505. {
  1506. if (n_batch == 1 || ret < 0)
  1507. {
  1508. // if you get here, it means the KV cache is full - try increasing it via the context size
  1509. LOG_TEE("%s : failed to decode the batch, n_batch = %d, ret = %d\n", __func__, n_batch, ret);
  1510. return false;
  1511. }
  1512. LOG_TEE("%s : failed to find free space in the KV cache, retrying with smaller n_batch = %d\n", __func__, n_batch / 2);
  1513. // retry with half the batch size to try to find a free slot in the KV cache
  1514. n_batch /= 2;
  1515. i -= n_batch;
  1516. continue;
  1517. }
  1518. for (auto & slot : slots)
  1519. {
  1520. if (slot.i_batch < (int) i || slot.i_batch >= (int) (i + n_tokens))
  1521. {
  1522. continue;
  1523. }
  1524. // prompt evaluated for embedding
  1525. if (slot.embedding)
  1526. {
  1527. send_embedding(slot);
  1528. slot.release();
  1529. slot.i_batch = -1;
  1530. return true;
  1531. }
  1532. completion_token_output result;
  1533. const llama_token id = llama_sampling_sample(slot.ctx_sampling, ctx, NULL, slot.i_batch - i);
  1534. llama_sampling_accept(slot.ctx_sampling, ctx, id, true);
  1535. slot.n_decoded += 1;
  1536. if (slot.n_decoded == 1)
  1537. {
  1538. slot.t_start_genereration = ggml_time_us();
  1539. slot.t_prompt_processing = (slot.t_start_genereration - slot.t_start_process_prompt) / 1e3;
  1540. }
  1541. llama_token_data_array cur_p = { slot.ctx_sampling->cur.data(), slot.ctx_sampling->cur.size(), false };
  1542. result.tok = id;
  1543. const int32_t n_probs = slot.sparams.n_probs;
  1544. if (slot.sparams.temp <= 0 && n_probs > 0)
  1545. {
  1546. // for llama_sample_token_greedy we need to sort candidates
  1547. llama_sample_softmax(ctx, &cur_p);
  1548. }
  1549. for (size_t i = 0; i < std::min(cur_p.size, (size_t)n_probs); ++i)
  1550. {
  1551. result.probs.push_back({cur_p.data[i].id, cur_p.data[i].p});
  1552. }
  1553. if (!process_token(result, slot))
  1554. {
  1555. slot.release();
  1556. slot.print_timings();
  1557. send_final_response(slot);
  1558. }
  1559. slot.i_batch = -1;
  1560. }
  1561. }
  1562. return true;
  1563. }
  1564. void run_on_all_tasks_finished() {
  1565. update_slots();
  1566. }
  1567. };
  1568. static void server_print_usage(const char *argv0, const gpt_params &params,
  1569. const server_params &sparams)
  1570. {
  1571. printf("usage: %s [options]\n", argv0);
  1572. printf("\n");
  1573. printf("options:\n");
  1574. printf(" -h, --help show this help message and exit\n");
  1575. printf(" -v, --verbose verbose output (default: %s)\n", server_verbose ? "enabled" : "disabled");
  1576. printf(" -t N, --threads N number of threads to use during computation (default: %d)\n", params.n_threads);
  1577. printf(" -tb N, --threads-batch N number of threads to use during batch and prompt processing (default: same as --threads)\n");
  1578. printf(" -c N, --ctx-size N size of the prompt context (default: %d)\n", params.n_ctx);
  1579. printf(" --rope-scaling {none,linear,yarn}\n");
  1580. printf(" RoPE frequency scaling method, defaults to linear unless specified by the model\n");
  1581. printf(" --rope-freq-base N RoPE base frequency (default: loaded from model)\n");
  1582. printf(" --rope-freq-scale N RoPE frequency scaling factor, expands context by a factor of 1/N\n");
  1583. printf(" --yarn-ext-factor N YaRN: extrapolation mix factor (default: 1.0, 0.0 = full interpolation)\n");
  1584. printf(" --yarn-attn-factor N YaRN: scale sqrt(t) or attention magnitude (default: 1.0)\n");
  1585. printf(" --yarn-beta-slow N YaRN: high correction dim or alpha (default: %.1f)\n", params.yarn_beta_slow);
  1586. printf(" --yarn-beta-fast N YaRN: low correction dim or beta (default: %.1f)\n", params.yarn_beta_fast);
  1587. printf(" -b N, --batch-size N batch size for prompt processing (default: %d)\n", params.n_batch);
  1588. printf(" --memory-f32 use f32 instead of f16 for memory key+value (default: disabled)\n");
  1589. printf(" not recommended: doubles context memory required and no measurable increase in quality\n");
  1590. if (llama_supports_mlock())
  1591. {
  1592. printf(" --mlock force system to keep model in RAM rather than swapping or compressing\n");
  1593. }
  1594. if (llama_supports_mmap())
  1595. {
  1596. printf(" --no-mmap do not memory-map model (slower load but may reduce pageouts if not using mlock)\n");
  1597. }
  1598. printf(" --numa attempt optimizations that help on some NUMA systems\n");
  1599. if (llama_supports_gpu_offload()) {
  1600. printf(" -ngl N, --n-gpu-layers N\n");
  1601. printf(" number of layers to store in VRAM\n");
  1602. printf(" -sm SPLIT_MODE, --split-mode SPLIT_MODE\n");
  1603. printf(" how to split the model across multiple GPUs, one of:\n");
  1604. printf(" - none: use one GPU only\n");
  1605. printf(" - layer (default): split layers and KV across GPUs\n");
  1606. printf(" - row: split rows across GPUs\n");
  1607. printf(" -ts SPLIT --tensor-split SPLIT\n");
  1608. printf(" fraction of the model to offload to each GPU, comma-separated list of proportions, e.g. 3,1\n");
  1609. printf(" -mg i, --main-gpu i the GPU to use for the model (with split-mode = none),\n");
  1610. printf(" or for intermediate results and KV (with split-mode = row)\n");
  1611. }
  1612. printf(" -m FNAME, --model FNAME\n");
  1613. printf(" model path (default: %s)\n", params.model.c_str());
  1614. printf(" -a ALIAS, --alias ALIAS\n");
  1615. printf(" set an alias for the model, will be added as `model` field in completion response\n");
  1616. printf(" --lora FNAME apply LoRA adapter (implies --no-mmap)\n");
  1617. printf(" --lora-base FNAME optional model to use as a base for the layers modified by the LoRA adapter\n");
  1618. printf(" --host ip address to listen (default (default: %s)\n", sparams.hostname.c_str());
  1619. printf(" --port PORT port to listen (default (default: %d)\n", sparams.port);
  1620. printf(" --path PUBLIC_PATH path from which to serve static files (default %s)\n", sparams.public_path.c_str());
  1621. printf(" --api-key API_KEY optional api key to enhance server security. If set, requests must include this key for access.\n");
  1622. printf(" --api-key-file FNAME path to file containing api keys delimited by new lines. If set, requests must include one of the keys for access.\n");
  1623. printf(" -to N, --timeout N server read/write timeout in seconds (default: %d)\n", sparams.read_timeout);
  1624. printf(" --embedding enable embedding vector output (default: %s)\n", params.embedding ? "enabled" : "disabled");
  1625. printf(" -np N, --parallel N number of slots for process requests (default: %d)\n", params.n_parallel);
  1626. printf(" -cb, --cont-batching enable continuous batching (a.k.a dynamic batching) (default: disabled)\n");
  1627. printf(" -spf FNAME, --system-prompt-file FNAME\n");
  1628. printf(" set a file to load a system prompt (initial prompt of all slots), this is useful for chat applications.\n");
  1629. printf(" --mmproj MMPROJ_FILE path to a multimodal projector file for LLaVA.\n");
  1630. printf(" --log-disable disables logging to a file.\n");
  1631. printf("\n");
  1632. printf(" --override-kv KEY=TYPE:VALUE\n");
  1633. printf(" advanced option to override model metadata by key. may be specified multiple times.\n");
  1634. printf(" types: int, float, bool. example: --override-kv tokenizer.ggml.add_bos_token=bool:false\n");
  1635. printf(" -gan N, --grp-attn-n N set the group attention factor to extend context size through self-extend(default: 1=disabled), used together with group attention width `--grp-attn-w`");
  1636. printf(" -gaw N, --grp-attn-w N set the group attention width to extend context size through self-extend(default: 512), used together with group attention factor `--grp-attn-n`");
  1637. printf(" --chat-template FORMAT_NAME");
  1638. printf(" set chat template, possible valus is: llama2, chatml (default %s)", sparams.chat_template.c_str());
  1639. printf("\n");
  1640. }
  1641. static void server_params_parse(int argc, char **argv, server_params &sparams,
  1642. gpt_params &params, llama_server_context& llama)
  1643. {
  1644. gpt_params default_params;
  1645. server_params default_sparams;
  1646. std::string arg;
  1647. bool invalid_param = false;
  1648. for (int i = 1; i < argc; i++)
  1649. {
  1650. arg = argv[i];
  1651. if (arg == "--port")
  1652. {
  1653. if (++i >= argc)
  1654. {
  1655. invalid_param = true;
  1656. break;
  1657. }
  1658. sparams.port = std::stoi(argv[i]);
  1659. }
  1660. else if (arg == "--host")
  1661. {
  1662. if (++i >= argc)
  1663. {
  1664. invalid_param = true;
  1665. break;
  1666. }
  1667. sparams.hostname = argv[i];
  1668. }
  1669. else if (arg == "--path")
  1670. {
  1671. if (++i >= argc)
  1672. {
  1673. invalid_param = true;
  1674. break;
  1675. }
  1676. sparams.public_path = argv[i];
  1677. }
  1678. else if (arg == "--api-key")
  1679. {
  1680. if (++i >= argc)
  1681. {
  1682. invalid_param = true;
  1683. break;
  1684. }
  1685. sparams.api_keys.emplace_back(argv[i]);
  1686. }
  1687. else if (arg == "--api-key-file")
  1688. {
  1689. if (++i >= argc)
  1690. {
  1691. invalid_param = true;
  1692. break;
  1693. }
  1694. std::ifstream key_file(argv[i]);
  1695. if (!key_file) {
  1696. fprintf(stderr, "error: failed to open file '%s'\n", argv[i]);
  1697. invalid_param = true;
  1698. break;
  1699. }
  1700. std::string key;
  1701. while (std::getline(key_file, key)) {
  1702. if (key.size() > 0) {
  1703. sparams.api_keys.push_back(key);
  1704. }
  1705. }
  1706. key_file.close();
  1707. }
  1708. else if (arg == "--timeout" || arg == "-to")
  1709. {
  1710. if (++i >= argc)
  1711. {
  1712. invalid_param = true;
  1713. break;
  1714. }
  1715. sparams.read_timeout = std::stoi(argv[i]);
  1716. sparams.write_timeout = std::stoi(argv[i]);
  1717. }
  1718. else if (arg == "-m" || arg == "--model")
  1719. {
  1720. if (++i >= argc)
  1721. {
  1722. invalid_param = true;
  1723. break;
  1724. }
  1725. params.model = argv[i];
  1726. }
  1727. else if (arg == "-a" || arg == "--alias")
  1728. {
  1729. if (++i >= argc)
  1730. {
  1731. invalid_param = true;
  1732. break;
  1733. }
  1734. params.model_alias = argv[i];
  1735. }
  1736. else if (arg == "-h" || arg == "--help")
  1737. {
  1738. server_print_usage(argv[0], default_params, default_sparams);
  1739. exit(0);
  1740. }
  1741. else if (arg == "-c" || arg == "--ctx-size" || arg == "--ctx_size")
  1742. {
  1743. if (++i >= argc)
  1744. {
  1745. invalid_param = true;
  1746. break;
  1747. }
  1748. params.n_ctx = std::stoi(argv[i]);
  1749. }
  1750. else if (arg == "--rope-scaling")
  1751. {
  1752. if (++i >= argc)
  1753. {
  1754. invalid_param = true;
  1755. break;
  1756. }
  1757. std::string value(argv[i]);
  1758. /**/ if (value == "none") { params.rope_scaling_type = LLAMA_ROPE_SCALING_NONE; }
  1759. else if (value == "linear") { params.rope_scaling_type = LLAMA_ROPE_SCALING_LINEAR; }
  1760. else if (value == "yarn") { params.rope_scaling_type = LLAMA_ROPE_SCALING_YARN; }
  1761. else { invalid_param = true; break; }
  1762. }
  1763. else if (arg == "--rope-freq-base")
  1764. {
  1765. if (++i >= argc)
  1766. {
  1767. invalid_param = true;
  1768. break;
  1769. }
  1770. params.rope_freq_base = std::stof(argv[i]);
  1771. }
  1772. else if (arg == "--rope-freq-scale")
  1773. {
  1774. if (++i >= argc)
  1775. {
  1776. invalid_param = true;
  1777. break;
  1778. }
  1779. params.rope_freq_scale = std::stof(argv[i]);
  1780. }
  1781. else if (arg == "--yarn-ext-factor")
  1782. {
  1783. if (++i >= argc) {
  1784. invalid_param = true;
  1785. break;
  1786. }
  1787. params.yarn_ext_factor = std::stof(argv[i]);
  1788. }
  1789. else if (arg == "--yarn-attn-factor")
  1790. {
  1791. if (++i >= argc) {
  1792. invalid_param = true;
  1793. break;
  1794. }
  1795. params.yarn_attn_factor = std::stof(argv[i]);
  1796. }
  1797. else if (arg == "--yarn-beta-fast")
  1798. {
  1799. if (++i >= argc) {
  1800. invalid_param = true;
  1801. break;
  1802. }
  1803. params.yarn_beta_fast = std::stof(argv[i]);
  1804. }
  1805. else if (arg == "--yarn-beta-slow")
  1806. {
  1807. if (++i >= argc) {
  1808. invalid_param = true;
  1809. break;
  1810. }
  1811. params.yarn_beta_slow = std::stof(argv[i]);
  1812. }
  1813. else if (arg == "--threads" || arg == "-t")
  1814. {
  1815. if (++i >= argc)
  1816. {
  1817. invalid_param = true;
  1818. break;
  1819. }
  1820. params.n_threads = std::stoi(argv[i]);
  1821. }
  1822. else if (arg == "--grp-attn-n" || arg == "-gan")
  1823. {
  1824. if (++i >= argc) {
  1825. invalid_param = true;
  1826. break;
  1827. }
  1828. params.grp_attn_n = std::stoi(argv[i]);
  1829. }
  1830. else if (arg == "--grp-attn-w" || arg == "-gaw")
  1831. {
  1832. if (++i >= argc)
  1833. {
  1834. invalid_param = true;
  1835. break;
  1836. }
  1837. params.grp_attn_w = std::stoi(argv[i]);
  1838. }
  1839. else if (arg == "--threads-batch" || arg == "-tb")
  1840. {
  1841. if (++i >= argc)
  1842. {
  1843. invalid_param = true;
  1844. break;
  1845. }
  1846. params.n_threads_batch = std::stoi(argv[i]);
  1847. }
  1848. else if (arg == "-b" || arg == "--batch-size")
  1849. {
  1850. if (++i >= argc)
  1851. {
  1852. invalid_param = true;
  1853. break;
  1854. }
  1855. params.n_batch = std::stoi(argv[i]);
  1856. params.n_batch = std::min(512, params.n_batch);
  1857. }
  1858. else if (arg == "--gpu-layers" || arg == "-ngl" || arg == "--n-gpu-layers")
  1859. {
  1860. if (++i >= argc)
  1861. {
  1862. invalid_param = true;
  1863. break;
  1864. }
  1865. if (llama_supports_gpu_offload()) {
  1866. params.n_gpu_layers = std::stoi(argv[i]);
  1867. } else {
  1868. LOG_WARNING("Not compiled with GPU offload support, --n-gpu-layers option will be ignored. "
  1869. "See main README.md for information on enabling GPU BLAS support",
  1870. {{"n_gpu_layers", params.n_gpu_layers}});
  1871. }
  1872. }
  1873. else if (arg == "--split-mode" || arg == "-sm")
  1874. {
  1875. if (++i >= argc) {
  1876. invalid_param = true;
  1877. break;
  1878. }
  1879. std::string arg_next = argv[i];
  1880. if (arg_next == "none")
  1881. {
  1882. params.split_mode = LLAMA_SPLIT_NONE;
  1883. }
  1884. else if (arg_next == "layer")
  1885. {
  1886. params.split_mode = LLAMA_SPLIT_LAYER;
  1887. }
  1888. else if (arg_next == "row")
  1889. {
  1890. params.split_mode = LLAMA_SPLIT_ROW;
  1891. }
  1892. else {
  1893. invalid_param = true;
  1894. break;
  1895. }
  1896. #ifndef GGML_USE_CUBLAS
  1897. fprintf(stderr, "warning: llama.cpp was compiled without cuBLAS. Setting the split mode has no effect.\n");
  1898. #endif // GGML_USE_CUBLAS
  1899. }
  1900. else if (arg == "--tensor-split" || arg == "-ts")
  1901. {
  1902. if (++i >= argc)
  1903. {
  1904. invalid_param = true;
  1905. break;
  1906. }
  1907. #if defined(GGML_USE_CUBLAS) || defined(GGML_USE_SYCL)
  1908. std::string arg_next = argv[i];
  1909. // split string by , and /
  1910. const std::regex regex{R"([,/]+)"};
  1911. std::sregex_token_iterator it{arg_next.begin(), arg_next.end(), regex, -1};
  1912. std::vector<std::string> split_arg{it, {}};
  1913. GGML_ASSERT(split_arg.size() <= llama_max_devices());
  1914. for (size_t i_device = 0; i_device < llama_max_devices(); ++i_device)
  1915. {
  1916. if (i_device < split_arg.size())
  1917. {
  1918. params.tensor_split[i_device] = std::stof(split_arg[i_device]);
  1919. }
  1920. else
  1921. {
  1922. params.tensor_split[i_device] = 0.0f;
  1923. }
  1924. }
  1925. #else
  1926. LOG_WARNING("llama.cpp was compiled without cuBLAS. It is not possible to set a tensor split.\n", {});
  1927. #endif // GGML_USE_CUBLAS
  1928. }
  1929. else if (arg == "--no-mul-mat-q" || arg == "-nommq")
  1930. {
  1931. #if defined(GGML_USE_CUBLAS) || defined(GGML_USE_SYCL)
  1932. params.mul_mat_q = false;
  1933. #else
  1934. LOG_WARNING("warning: llama.cpp was compiled without cuBLAS. Disabling mul_mat_q kernels has no effect.\n", {});
  1935. #endif // GGML_USE_CUBLAS
  1936. }
  1937. else if (arg == "--main-gpu" || arg == "-mg")
  1938. {
  1939. if (++i >= argc)
  1940. {
  1941. invalid_param = true;
  1942. break;
  1943. }
  1944. #if defined(GGML_USE_CUBLAS) || defined(GGML_USE_SYCL)
  1945. params.main_gpu = std::stoi(argv[i]);
  1946. #else
  1947. LOG_WARNING("llama.cpp was compiled without cuBLAS. It is not possible to set a main GPU.", {});
  1948. #endif
  1949. }
  1950. else if (arg == "--lora")
  1951. {
  1952. if (++i >= argc)
  1953. {
  1954. invalid_param = true;
  1955. break;
  1956. }
  1957. params.lora_adapter.emplace_back(argv[i], 1.0f);
  1958. params.use_mmap = false;
  1959. }
  1960. else if (arg == "--lora-scaled")
  1961. {
  1962. if (++i >= argc)
  1963. {
  1964. invalid_param = true;
  1965. break;
  1966. }
  1967. const char * lora_adapter = argv[i];
  1968. if (++i >= argc)
  1969. {
  1970. invalid_param = true;
  1971. break;
  1972. }
  1973. params.lora_adapter.emplace_back(lora_adapter, std::stof(argv[i]));
  1974. params.use_mmap = false;
  1975. }
  1976. else if (arg == "--lora-base")
  1977. {
  1978. if (++i >= argc)
  1979. {
  1980. invalid_param = true;
  1981. break;
  1982. }
  1983. params.lora_base = argv[i];
  1984. }
  1985. else if (arg == "-v" || arg == "--verbose")
  1986. {
  1987. #if SERVER_VERBOSE != 1
  1988. LOG_WARNING("server.cpp is not built with verbose logging.", {});
  1989. #else
  1990. server_verbose = true;
  1991. #endif
  1992. }
  1993. else if (arg == "--mlock")
  1994. {
  1995. params.use_mlock = true;
  1996. }
  1997. else if (arg == "--no-mmap")
  1998. {
  1999. params.use_mmap = false;
  2000. }
  2001. else if (arg == "--numa")
  2002. {
  2003. params.numa = true;
  2004. }
  2005. else if (arg == "--embedding")
  2006. {
  2007. params.embedding = true;
  2008. }
  2009. else if (arg == "-cb" || arg == "--cont-batching")
  2010. {
  2011. params.cont_batching = true;
  2012. }
  2013. else if (arg == "-np" || arg == "--parallel")
  2014. {
  2015. if (++i >= argc)
  2016. {
  2017. invalid_param = true;
  2018. break;
  2019. }
  2020. params.n_parallel = std::stoi(argv[i]);
  2021. } else if (arg == "-n" || arg == "--n-predict")
  2022. {
  2023. if (++i >= argc)
  2024. {
  2025. invalid_param = true;
  2026. break;
  2027. }
  2028. params.n_predict = std::stoi(argv[i]);
  2029. } else if (arg == "-spf" || arg == "--system-prompt-file")
  2030. {
  2031. if (++i >= argc)
  2032. {
  2033. invalid_param = true;
  2034. break;
  2035. }
  2036. std::ifstream file(argv[i]);
  2037. if (!file) {
  2038. fprintf(stderr, "error: failed to open file '%s'\n", argv[i]);
  2039. invalid_param = true;
  2040. break;
  2041. }
  2042. std::string systm_content;
  2043. std::copy(
  2044. std::istreambuf_iterator<char>(file),
  2045. std::istreambuf_iterator<char>(),
  2046. std::back_inserter(systm_content)
  2047. );
  2048. llama.process_system_prompt_data(json::parse(systm_content));
  2049. }
  2050. else if(arg == "--mmproj")
  2051. {
  2052. if (++i >= argc)
  2053. {
  2054. invalid_param = true;
  2055. break;
  2056. }
  2057. params.mmproj = argv[i];
  2058. }
  2059. else if (arg == "--log-disable")
  2060. {
  2061. log_set_target(stdout);
  2062. LOG_INFO("logging to file is disabled.", {});
  2063. }
  2064. else if (arg == "--chat-template")
  2065. {
  2066. if (++i >= argc)
  2067. {
  2068. invalid_param = true;
  2069. break;
  2070. }
  2071. std::string value(argv[i]);
  2072. if (value != "chatml" && value != "llama2") {
  2073. fprintf(stderr, "error: chat template can be \"llama2\" or \"chatml\", but got: %s\n", value.c_str());
  2074. invalid_param = true;
  2075. break;
  2076. }
  2077. sparams.chat_template = value;
  2078. }
  2079. else if (arg == "--override-kv")
  2080. {
  2081. if (++i >= argc) {
  2082. invalid_param = true;
  2083. break;
  2084. }
  2085. char * sep = strchr(argv[i], '=');
  2086. if (sep == nullptr || sep - argv[i] >= 128) {
  2087. fprintf(stderr, "error: Malformed KV override: %s\n", argv[i]);
  2088. invalid_param = true;
  2089. break;
  2090. }
  2091. struct llama_model_kv_override kvo;
  2092. std::strncpy(kvo.key, argv[i], sep - argv[i]);
  2093. kvo.key[sep - argv[i]] = 0;
  2094. sep++;
  2095. if (strncmp(sep, "int:", 4) == 0) {
  2096. sep += 4;
  2097. kvo.tag = LLAMA_KV_OVERRIDE_INT;
  2098. kvo.int_value = std::atol(sep);
  2099. } else if (strncmp(sep, "float:", 6) == 0) {
  2100. sep += 6;
  2101. kvo.tag = LLAMA_KV_OVERRIDE_FLOAT;
  2102. kvo.float_value = std::atof(sep);
  2103. } else if (strncmp(sep, "bool:", 5) == 0) {
  2104. sep += 5;
  2105. kvo.tag = LLAMA_KV_OVERRIDE_BOOL;
  2106. if (std::strcmp(sep, "true") == 0) {
  2107. kvo.bool_value = true;
  2108. } else if (std::strcmp(sep, "false") == 0) {
  2109. kvo.bool_value = false;
  2110. } else {
  2111. fprintf(stderr, "error: Invalid boolean value for KV override: %s\n", argv[i]);
  2112. invalid_param = true;
  2113. break;
  2114. }
  2115. } else {
  2116. fprintf(stderr, "error: Invalid type for KV override: %s\n", argv[i]);
  2117. invalid_param = true;
  2118. break;
  2119. }
  2120. params.kv_overrides.push_back(kvo);
  2121. }
  2122. else
  2123. {
  2124. fprintf(stderr, "error: unknown argument: %s\n", arg.c_str());
  2125. server_print_usage(argv[0], default_params, default_sparams);
  2126. exit(1);
  2127. }
  2128. }
  2129. if (!params.kv_overrides.empty()) {
  2130. params.kv_overrides.emplace_back();
  2131. params.kv_overrides.back().key[0] = 0;
  2132. }
  2133. if (invalid_param)
  2134. {
  2135. fprintf(stderr, "error: invalid parameter for argument: %s\n", arg.c_str());
  2136. server_print_usage(argv[0], default_params, default_sparams);
  2137. exit(1);
  2138. }
  2139. }
  2140. /* llama.cpp completion api semantics */
  2141. static json format_partial_response(
  2142. llama_server_context &llama, llama_client_slot *slot, const std::string &content, const std::vector<completion_token_output> &probs
  2143. ) {
  2144. json res = json
  2145. {
  2146. {"content", content },
  2147. {"stop", false},
  2148. {"slot_id", slot->id },
  2149. {"multimodal", llama.multimodal }
  2150. };
  2151. if (slot->sparams.n_probs > 0)
  2152. {
  2153. res["completion_probabilities"] = probs_vector_to_json(llama.ctx, probs);
  2154. }
  2155. return res;
  2156. }
  2157. static json format_tokenizer_response(const std::vector<llama_token> &tokens)
  2158. {
  2159. return json{
  2160. {"tokens", tokens}};
  2161. }
  2162. static json format_detokenized_response(std::string content)
  2163. {
  2164. return json{
  2165. {"content", content}};
  2166. }
  2167. static void log_server_request(const httplib::Request &req, const httplib::Response &res)
  2168. {
  2169. LOG_INFO("request", {
  2170. {"remote_addr", req.remote_addr},
  2171. {"remote_port", req.remote_port},
  2172. {"status", res.status},
  2173. {"method", req.method},
  2174. {"path", req.path},
  2175. {"params", req.params},
  2176. });
  2177. LOG_VERBOSE("request", {
  2178. {"request", req.body},
  2179. {"response", res.body},
  2180. });
  2181. }
  2182. struct token_translator
  2183. {
  2184. llama_context * ctx;
  2185. std::string operator()(llama_token tok) const { return llama_token_to_piece(ctx, tok); }
  2186. std::string operator()(const completion_token_output &cto) const { return (*this)(cto.tok); }
  2187. };
  2188. static void append_to_generated_text_from_generated_token_probs(llama_server_context &llama, llama_client_slot *slot)
  2189. {
  2190. auto & gtps = slot->generated_token_probs;
  2191. auto translator = token_translator{llama.ctx};
  2192. auto add_strlen = [=](size_t sum, const completion_token_output & cto) { return sum + translator(cto).size(); };
  2193. const size_t len = std::accumulate(gtps.begin(), gtps.end(), size_t(0), add_strlen);
  2194. if (slot->generated_text.capacity() < slot->generated_text.size() + len)
  2195. {
  2196. slot->generated_text.reserve(slot->generated_text.size() + len);
  2197. }
  2198. for (const completion_token_output & cto : gtps)
  2199. {
  2200. slot->generated_text += translator(cto);
  2201. }
  2202. }
  2203. int main(int argc, char **argv)
  2204. {
  2205. #if SERVER_VERBOSE != 1
  2206. log_disable();
  2207. #endif
  2208. // own arguments required by this example
  2209. gpt_params params;
  2210. server_params sparams;
  2211. // struct that contains llama context and inference
  2212. llama_server_context llama;
  2213. server_params_parse(argc, argv, sparams, params, llama);
  2214. if (params.model_alias == "unknown")
  2215. {
  2216. params.model_alias = params.model;
  2217. }
  2218. llama_backend_init(params.numa);
  2219. LOG_INFO("build info", {{"build", LLAMA_BUILD_NUMBER},
  2220. {"commit", LLAMA_COMMIT}});
  2221. LOG_INFO("system info", {
  2222. {"n_threads", params.n_threads},
  2223. {"n_threads_batch", params.n_threads_batch},
  2224. {"total_threads", std::thread::hardware_concurrency()},
  2225. {"system_info", llama_print_system_info()},
  2226. });
  2227. httplib::Server svr;
  2228. std::atomic<server_state> state{SERVER_STATE_LOADING_MODEL};
  2229. svr.set_default_headers({{"Server", "llama.cpp"}});
  2230. // CORS preflight
  2231. svr.Options(R"(.*)", [](const httplib::Request &req, httplib::Response &res) {
  2232. res.set_header("Access-Control-Allow-Origin", req.get_header_value("Origin"));
  2233. res.set_header("Access-Control-Allow-Credentials", "true");
  2234. res.set_header("Access-Control-Allow-Methods", "POST");
  2235. res.set_header("Access-Control-Allow-Headers", "*");
  2236. });
  2237. svr.Get("/health", [&](const httplib::Request&, httplib::Response& res) {
  2238. server_state current_state = state.load();
  2239. switch(current_state) {
  2240. case SERVER_STATE_READY:
  2241. res.set_content(R"({"status": "ok"})", "application/json");
  2242. res.status = 200; // HTTP OK
  2243. break;
  2244. case SERVER_STATE_LOADING_MODEL:
  2245. res.set_content(R"({"status": "loading model"})", "application/json");
  2246. res.status = 503; // HTTP Service Unavailable
  2247. break;
  2248. case SERVER_STATE_ERROR:
  2249. res.set_content(R"({"status": "error", "error": "Model failed to load"})", "application/json");
  2250. res.status = 500; // HTTP Internal Server Error
  2251. break;
  2252. }
  2253. });
  2254. svr.set_logger(log_server_request);
  2255. svr.set_exception_handler([](const httplib::Request &, httplib::Response &res, std::exception_ptr ep)
  2256. {
  2257. const char fmt[] = "500 Internal Server Error\n%s";
  2258. char buf[BUFSIZ];
  2259. try
  2260. {
  2261. std::rethrow_exception(std::move(ep));
  2262. }
  2263. catch (std::exception &e)
  2264. {
  2265. snprintf(buf, sizeof(buf), fmt, e.what());
  2266. }
  2267. catch (...)
  2268. {
  2269. snprintf(buf, sizeof(buf), fmt, "Unknown Exception");
  2270. }
  2271. res.set_content(buf, "text/plain; charset=utf-8");
  2272. res.status = 500;
  2273. });
  2274. svr.set_error_handler([](const httplib::Request &, httplib::Response &res)
  2275. {
  2276. if (res.status == 401)
  2277. {
  2278. res.set_content("Unauthorized", "text/plain; charset=utf-8");
  2279. }
  2280. if (res.status == 400)
  2281. {
  2282. res.set_content("Invalid request", "text/plain; charset=utf-8");
  2283. }
  2284. else if (res.status == 404)
  2285. {
  2286. res.set_content("File Not Found", "text/plain; charset=utf-8");
  2287. res.status = 404;
  2288. }
  2289. });
  2290. // set timeouts and change hostname and port
  2291. svr.set_read_timeout (sparams.read_timeout);
  2292. svr.set_write_timeout(sparams.write_timeout);
  2293. if (!svr.bind_to_port(sparams.hostname, sparams.port))
  2294. {
  2295. fprintf(stderr, "\ncouldn't bind to server socket: hostname=%s port=%d\n\n", sparams.hostname.c_str(), sparams.port);
  2296. return 1;
  2297. }
  2298. // Set the base directory for serving static files
  2299. svr.set_base_dir(sparams.public_path);
  2300. // to make it ctrl+clickable:
  2301. LOG_TEE("\nllama server listening at http://%s:%d\n\n", sparams.hostname.c_str(), sparams.port);
  2302. std::unordered_map<std::string, std::string> log_data;
  2303. log_data["hostname"] = sparams.hostname;
  2304. log_data["port"] = std::to_string(sparams.port);
  2305. if (sparams.api_keys.size() == 1) {
  2306. log_data["api_key"] = "api_key: ****" + sparams.api_keys[0].substr(sparams.api_keys[0].length() - 4);
  2307. } else if (sparams.api_keys.size() > 1) {
  2308. log_data["api_key"] = "api_key: " + std::to_string(sparams.api_keys.size()) + " keys loaded";
  2309. }
  2310. LOG_INFO("HTTP server listening", log_data);
  2311. // run the HTTP server in a thread - see comment below
  2312. std::thread t([&]()
  2313. {
  2314. if (!svr.listen_after_bind())
  2315. {
  2316. state.store(SERVER_STATE_ERROR);
  2317. return 1;
  2318. }
  2319. return 0;
  2320. });
  2321. // load the model
  2322. if (!llama.load_model(params))
  2323. {
  2324. state.store(SERVER_STATE_ERROR);
  2325. return 1;
  2326. } else {
  2327. llama.initialize();
  2328. state.store(SERVER_STATE_READY);
  2329. LOG_INFO("model loaded", {});
  2330. }
  2331. // Middleware for API key validation
  2332. auto validate_api_key = [&sparams](const httplib::Request &req, httplib::Response &res) -> bool {
  2333. // If API key is not set, skip validation
  2334. if (sparams.api_keys.empty()) {
  2335. return true;
  2336. }
  2337. // Check for API key in the header
  2338. auto auth_header = req.get_header_value("Authorization");
  2339. std::string prefix = "Bearer ";
  2340. if (auth_header.substr(0, prefix.size()) == prefix) {
  2341. std::string received_api_key = auth_header.substr(prefix.size());
  2342. if (std::find(sparams.api_keys.begin(), sparams.api_keys.end(), received_api_key) != sparams.api_keys.end()) {
  2343. return true; // API key is valid
  2344. }
  2345. }
  2346. // API key is invalid or not provided
  2347. res.set_content("Unauthorized: Invalid API Key", "text/plain; charset=utf-8");
  2348. res.status = 401; // Unauthorized
  2349. LOG_WARNING("Unauthorized: Invalid API Key", {});
  2350. return false;
  2351. };
  2352. // this is only called if no index.html is found in the public --path
  2353. svr.Get("/", [](const httplib::Request &, httplib::Response &res)
  2354. {
  2355. res.set_content(reinterpret_cast<const char*>(&index_html), index_html_len, "text/html; charset=utf-8");
  2356. return false;
  2357. });
  2358. // this is only called if no index.js is found in the public --path
  2359. svr.Get("/index.js", [](const httplib::Request &, httplib::Response &res)
  2360. {
  2361. res.set_content(reinterpret_cast<const char *>(&index_js), index_js_len, "text/javascript; charset=utf-8");
  2362. return false;
  2363. });
  2364. // this is only called if no index.html is found in the public --path
  2365. svr.Get("/completion.js", [](const httplib::Request &, httplib::Response &res)
  2366. {
  2367. res.set_content(reinterpret_cast<const char*>(&completion_js), completion_js_len, "application/javascript; charset=utf-8");
  2368. return false;
  2369. });
  2370. // this is only called if no index.html is found in the public --path
  2371. svr.Get("/json-schema-to-grammar.mjs", [](const httplib::Request &, httplib::Response &res)
  2372. {
  2373. res.set_content(reinterpret_cast<const char*>(&json_schema_to_grammar_mjs), json_schema_to_grammar_mjs_len, "application/javascript; charset=utf-8");
  2374. return false;
  2375. });
  2376. svr.Get("/props", [&llama](const httplib::Request & req, httplib::Response &res)
  2377. {
  2378. res.set_header("Access-Control-Allow-Origin", req.get_header_value("Origin"));
  2379. json data = {
  2380. { "user_name", llama.name_user.c_str() },
  2381. { "assistant_name", llama.name_assistant.c_str() },
  2382. { "default_generation_settings", llama.default_generation_settings_for_props },
  2383. { "total_slots", llama.params.n_parallel }
  2384. };
  2385. res.set_content(data.dump(), "application/json; charset=utf-8");
  2386. });
  2387. svr.Post("/completion", [&llama, &validate_api_key](const httplib::Request &req, httplib::Response &res)
  2388. {
  2389. res.set_header("Access-Control-Allow-Origin", req.get_header_value("Origin"));
  2390. if (!validate_api_key(req, res)) {
  2391. return;
  2392. }
  2393. json data = json::parse(req.body);
  2394. const int task_id = llama.queue_tasks.get_new_id();
  2395. llama.queue_results.add_waiting_task_id(task_id);
  2396. llama.request_completion(task_id, data, false, false, -1);
  2397. if (!json_value(data, "stream", false)) {
  2398. std::string completion_text;
  2399. task_result result = llama.queue_results.recv(task_id);
  2400. if (!result.error && result.stop) {
  2401. res.set_content(result.result_json.dump(-1, ' ', false, json::error_handler_t::replace), "application/json; charset=utf-8");
  2402. }
  2403. else
  2404. {
  2405. res.status = 404;
  2406. res.set_content(result.result_json["content"], "text/plain; charset=utf-8");
  2407. }
  2408. llama.queue_results.remove_waiting_task_id(task_id);
  2409. } else {
  2410. const auto chunked_content_provider = [task_id, &llama](size_t, httplib::DataSink & sink)
  2411. {
  2412. while (true)
  2413. {
  2414. task_result result = llama.queue_results.recv(task_id);
  2415. if (!result.error) {
  2416. const std::string str =
  2417. "data: " +
  2418. result.result_json.dump(-1, ' ', false, json::error_handler_t::replace) +
  2419. "\n\n";
  2420. LOG_VERBOSE("data stream", {
  2421. { "to_send", str }
  2422. });
  2423. if (!sink.write(str.c_str(), str.size()))
  2424. {
  2425. llama.queue_results.remove_waiting_task_id(task_id);
  2426. return false;
  2427. }
  2428. if (result.stop) {
  2429. break;
  2430. }
  2431. } else {
  2432. const std::string str =
  2433. "error: " +
  2434. result.result_json.dump(-1, ' ', false, json::error_handler_t::replace) +
  2435. "\n\n";
  2436. LOG_VERBOSE("data stream", {
  2437. { "to_send", str }
  2438. });
  2439. if (!sink.write(str.c_str(), str.size()))
  2440. {
  2441. llama.queue_results.remove_waiting_task_id(task_id);
  2442. return false;
  2443. }
  2444. break;
  2445. }
  2446. }
  2447. llama.queue_results.remove_waiting_task_id(task_id);
  2448. sink.done();
  2449. return true;
  2450. };
  2451. auto on_complete = [task_id, &llama] (bool)
  2452. {
  2453. // cancel
  2454. llama.request_cancel(task_id);
  2455. llama.queue_results.remove_waiting_task_id(task_id);
  2456. };
  2457. res.set_chunked_content_provider("text/event-stream", chunked_content_provider, on_complete);
  2458. }
  2459. });
  2460. svr.Get("/v1/models", [&params](const httplib::Request& req, httplib::Response& res)
  2461. {
  2462. res.set_header("Access-Control-Allow-Origin", req.get_header_value("Origin"));
  2463. std::time_t t = std::time(0);
  2464. json models = {
  2465. {"object", "list"},
  2466. {"data", {
  2467. {
  2468. {"id", params.model_alias},
  2469. {"object", "model"},
  2470. {"created", t},
  2471. {"owned_by", "llamacpp"}
  2472. },
  2473. }}
  2474. };
  2475. res.set_content(models.dump(), "application/json; charset=utf-8");
  2476. });
  2477. // TODO: add mount point without "/v1" prefix -- how?
  2478. svr.Post("/v1/chat/completions", [&llama, &validate_api_key, &sparams](const httplib::Request &req, httplib::Response &res)
  2479. {
  2480. res.set_header("Access-Control-Allow-Origin", req.get_header_value("Origin"));
  2481. if (!validate_api_key(req, res)) {
  2482. return;
  2483. }
  2484. json data = oaicompat_completion_params_parse(json::parse(req.body), sparams.chat_template);
  2485. const int task_id = llama.queue_tasks.get_new_id();
  2486. llama.queue_results.add_waiting_task_id(task_id);
  2487. llama.request_completion(task_id, data, false, false, -1);
  2488. if (!json_value(data, "stream", false)) {
  2489. std::string completion_text;
  2490. task_result result = llama.queue_results.recv(task_id);
  2491. if (!result.error && result.stop) {
  2492. json oaicompat_result = format_final_response_oaicompat(data, result);
  2493. res.set_content(oaicompat_result.dump(-1, ' ', false,
  2494. json::error_handler_t::replace),
  2495. "application/json; charset=utf-8");
  2496. } else {
  2497. res.status = 500;
  2498. res.set_content(result.result_json["content"], "text/plain; charset=utf-8");
  2499. }
  2500. llama.queue_results.remove_waiting_task_id(task_id);
  2501. } else {
  2502. const auto chunked_content_provider = [task_id, &llama](size_t, httplib::DataSink &sink) {
  2503. while (true) {
  2504. task_result llama_result = llama.queue_results.recv(task_id);
  2505. if (!llama_result.error) {
  2506. std::vector<json> result_array = format_partial_response_oaicompat( llama_result);
  2507. for (auto it = result_array.begin(); it != result_array.end(); ++it)
  2508. {
  2509. if (!it->empty()) {
  2510. const std::string str =
  2511. "data: " +
  2512. it->dump(-1, ' ', false, json::error_handler_t::replace) +
  2513. "\n\n";
  2514. LOG_VERBOSE("data stream", {{"to_send", str}});
  2515. if (!sink.write(str.c_str(), str.size())) {
  2516. llama.queue_results.remove_waiting_task_id(task_id);
  2517. return false;
  2518. }
  2519. }
  2520. }
  2521. if (llama_result.stop) {
  2522. break;
  2523. }
  2524. } else {
  2525. const std::string str =
  2526. "error: " +
  2527. llama_result.result_json.dump(-1, ' ', false,
  2528. json::error_handler_t::replace) +
  2529. "\n\n";
  2530. LOG_VERBOSE("data stream", {{"to_send", str}});
  2531. if (!sink.write(str.c_str(), str.size())) {
  2532. llama.queue_results.remove_waiting_task_id(task_id);
  2533. return false;
  2534. }
  2535. break;
  2536. }
  2537. }
  2538. sink.done();
  2539. llama.queue_results.remove_waiting_task_id(task_id);
  2540. return true;
  2541. };
  2542. auto on_complete = [task_id, &llama](bool) {
  2543. // cancel request
  2544. llama.request_cancel(task_id);
  2545. llama.queue_results.remove_waiting_task_id(task_id);
  2546. };
  2547. res.set_chunked_content_provider("text/event-stream", chunked_content_provider, on_complete);
  2548. }
  2549. });
  2550. svr.Post("/infill", [&llama, &validate_api_key](const httplib::Request &req, httplib::Response &res)
  2551. {
  2552. res.set_header("Access-Control-Allow-Origin", req.get_header_value("Origin"));
  2553. if (!validate_api_key(req, res)) {
  2554. return;
  2555. }
  2556. json data = json::parse(req.body);
  2557. const int task_id = llama.queue_tasks.get_new_id();
  2558. llama.queue_results.add_waiting_task_id(task_id);
  2559. llama.request_completion(task_id, data, true, false, -1);
  2560. if (!json_value(data, "stream", false)) {
  2561. std::string completion_text;
  2562. task_result result = llama.queue_results.recv(task_id);
  2563. if (!result.error && result.stop)
  2564. {
  2565. res.set_content(result.result_json.dump(-1, ' ', false, json::error_handler_t::replace), "application/json; charset=utf-8");
  2566. }
  2567. else
  2568. {
  2569. res.status = 404;
  2570. res.set_content(result.result_json["content"], "text/plain; charset=utf-8");
  2571. }
  2572. llama.queue_results.remove_waiting_task_id(task_id);
  2573. } else {
  2574. const auto chunked_content_provider = [task_id, &llama](size_t, httplib::DataSink & sink) {
  2575. while (true)
  2576. {
  2577. task_result result = llama.queue_results.recv(task_id);
  2578. if (!result.error) {
  2579. const std::string str =
  2580. "data: " +
  2581. result.result_json.dump(-1, ' ', false, json::error_handler_t::replace) +
  2582. "\n\n";
  2583. LOG_VERBOSE("data stream", {
  2584. { "to_send", str }
  2585. });
  2586. if (!sink.write(str.c_str(), str.size()))
  2587. {
  2588. llama.queue_results.remove_waiting_task_id(task_id);
  2589. return false;
  2590. }
  2591. if (result.stop)
  2592. {
  2593. break;
  2594. }
  2595. }
  2596. else
  2597. {
  2598. break;
  2599. }
  2600. }
  2601. llama.queue_results.remove_waiting_task_id(task_id);
  2602. sink.done();
  2603. return true;
  2604. };
  2605. auto on_complete = [task_id, &llama] (bool)
  2606. {
  2607. // cancel
  2608. llama.request_cancel(task_id);
  2609. };
  2610. res.set_chunked_content_provider("text/event-stream", chunked_content_provider, on_complete);
  2611. }
  2612. });
  2613. svr.Options(R"(/.*)", [](const httplib::Request &, httplib::Response &res)
  2614. { return res.set_content("", "application/json; charset=utf-8"); });
  2615. svr.Post("/tokenize", [&llama](const httplib::Request &req, httplib::Response &res)
  2616. {
  2617. res.set_header("Access-Control-Allow-Origin", req.get_header_value("Origin"));
  2618. const json body = json::parse(req.body);
  2619. std::vector<llama_token> tokens;
  2620. if (body.count("content") != 0)
  2621. {
  2622. tokens = llama.tokenize(body["content"], false);
  2623. }
  2624. const json data = format_tokenizer_response(tokens);
  2625. return res.set_content(data.dump(), "application/json; charset=utf-8");
  2626. });
  2627. svr.Post("/detokenize", [&llama](const httplib::Request &req, httplib::Response &res)
  2628. {
  2629. res.set_header("Access-Control-Allow-Origin", req.get_header_value("Origin"));
  2630. const json body = json::parse(req.body);
  2631. std::string content;
  2632. if (body.count("tokens") != 0)
  2633. {
  2634. const std::vector<llama_token> tokens = body["tokens"];
  2635. content = tokens_to_str(llama.ctx, tokens.cbegin(), tokens.cend());
  2636. }
  2637. const json data = format_detokenized_response(content);
  2638. return res.set_content(data.dump(), "application/json; charset=utf-8");
  2639. });
  2640. svr.Post("/embedding", [&llama](const httplib::Request &req, httplib::Response &res)
  2641. {
  2642. res.set_header("Access-Control-Allow-Origin", req.get_header_value("Origin"));
  2643. const json body = json::parse(req.body);
  2644. json prompt;
  2645. if (body.count("content") != 0)
  2646. {
  2647. prompt = body["content"];
  2648. }
  2649. else
  2650. {
  2651. prompt = "";
  2652. }
  2653. json image_data;
  2654. if (body.count("image_data") != 0) {
  2655. image_data = body["image_data"];
  2656. }
  2657. else
  2658. {
  2659. image_data = "";
  2660. }
  2661. // create and queue the task
  2662. const int task_id = llama.queue_tasks.get_new_id();
  2663. llama.queue_results.add_waiting_task_id(task_id);
  2664. llama.request_completion(task_id, { {"prompt", prompt}, { "n_predict", 0}, {"image_data", image_data} }, false, true, -1);
  2665. // get the result
  2666. task_result result = llama.queue_results.recv(task_id);
  2667. llama.queue_results.remove_waiting_task_id(task_id);
  2668. // send the result
  2669. return res.set_content(result.result_json.dump(), "application/json; charset=utf-8");
  2670. });
  2671. svr.Post("/v1/embeddings", [&llama](const httplib::Request &req, httplib::Response &res)
  2672. {
  2673. res.set_header("Access-Control-Allow-Origin", req.get_header_value("Origin"));
  2674. const json body = json::parse(req.body);
  2675. json prompt;
  2676. if (body.count("input") != 0)
  2677. {
  2678. prompt = body["input"];
  2679. // batch
  2680. if(prompt.is_array()) {
  2681. json data = json::array();
  2682. int i = 0;
  2683. for (const json &elem : prompt) {
  2684. const int task_id = llama.queue_tasks.get_new_id();
  2685. llama.queue_results.add_waiting_task_id(task_id);
  2686. llama.request_completion(task_id, { {"prompt", elem}, { "n_predict", 0} }, false, true, -1);
  2687. // get the result
  2688. task_result result = llama.queue_results.recv(task_id);
  2689. llama.queue_results.remove_waiting_task_id(task_id);
  2690. json embedding = json{
  2691. {"embedding", json_value(result.result_json, "embedding", json::array())},
  2692. {"index", i++},
  2693. {"object", "embedding"}
  2694. };
  2695. data.push_back(embedding);
  2696. }
  2697. json result = format_embeddings_response_oaicompat(body, data);
  2698. return res.set_content(result.dump(), "application/json; charset=utf-8");
  2699. }
  2700. }
  2701. else
  2702. {
  2703. prompt = "";
  2704. }
  2705. // create and queue the task
  2706. const int task_id = llama.queue_tasks.get_new_id();
  2707. llama.queue_results.add_waiting_task_id(task_id);
  2708. llama.request_completion(task_id, { {"prompt", prompt}, { "n_predict", 0}}, false, true, -1);
  2709. // get the result
  2710. task_result result = llama.queue_results.recv(task_id);
  2711. llama.queue_results.remove_waiting_task_id(task_id);
  2712. json data = json::array({json{
  2713. {"embedding", json_value(result.result_json, "embedding", json::array())},
  2714. {"index", 0},
  2715. {"object", "embedding"}
  2716. }}
  2717. );
  2718. json root = format_embeddings_response_oaicompat(body, data);
  2719. // send the result
  2720. return res.set_content(root.dump(), "application/json; charset=utf-8");
  2721. });
  2722. // GG: if I put the main loop inside a thread, it crashes on the first request when build in Debug!?
  2723. // "Bus error: 10" - this is on macOS, it does not crash on Linux
  2724. //std::thread t2([&]()
  2725. /*{
  2726. bool running = true;
  2727. while (running)
  2728. {
  2729. running = llama.update_slots();
  2730. }
  2731. }*/
  2732. //);
  2733. llama.queue_tasks.on_new_task(std::bind(
  2734. &llama_server_context::process_single_task, &llama, std::placeholders::_1));
  2735. llama.queue_tasks.on_finish_multitask(std::bind(
  2736. &llama_server_context::on_finish_multitask, &llama, std::placeholders::_1));
  2737. llama.queue_tasks.on_all_tasks_finished(std::bind(
  2738. &llama_server_context::run_on_all_tasks_finished, &llama));
  2739. llama.queue_results.on_multitask_update(std::bind(
  2740. &llama_server_queue::update_multitask,
  2741. &llama.queue_tasks,
  2742. std::placeholders::_1,
  2743. std::placeholders::_2,
  2744. std::placeholders::_3
  2745. ));
  2746. llama.queue_tasks.start_loop();
  2747. t.join();
  2748. llama_backend_free();
  2749. return 0;
  2750. }