server.cpp 141 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423
  1. #include "utils.hpp"
  2. #include "arg.h"
  3. #include "common.h"
  4. #include "log.h"
  5. #include "sampling.h"
  6. #include "json-schema-to-grammar.h"
  7. #include "llama.h"
  8. // Change JSON_ASSERT from assert() to GGML_ASSERT:
  9. #define JSON_ASSERT GGML_ASSERT
  10. #include "json.hpp"
  11. // mime type for sending response
  12. #define MIMETYPE_JSON "application/json; charset=utf-8"
  13. // auto generated files (update with ./deps.sh)
  14. #include "colorthemes.css.hpp"
  15. #include "style.css.hpp"
  16. #include "theme-beeninorder.css.hpp"
  17. #include "theme-ketivah.css.hpp"
  18. #include "theme-mangotango.css.hpp"
  19. #include "theme-playground.css.hpp"
  20. #include "theme-polarnight.css.hpp"
  21. #include "theme-snowstorm.css.hpp"
  22. #include "index.html.hpp"
  23. #include "index-new.html.hpp"
  24. #include "index.js.hpp"
  25. #include "completion.js.hpp"
  26. #include "system-prompts.js.hpp"
  27. #include "prompt-formats.js.hpp"
  28. #include "json-schema-to-grammar.mjs.hpp"
  29. #include "loading.html.hpp"
  30. #include <atomic>
  31. #include <condition_variable>
  32. #include <cstddef>
  33. #include <cinttypes>
  34. #include <deque>
  35. #include <memory>
  36. #include <mutex>
  37. #include <signal.h>
  38. #include <thread>
  39. #include <unordered_map>
  40. #include <unordered_set>
  41. #define SLT_INF(slot, fmt, ...) LOG_INF("slot %12.*s: id %2d | task %d | " fmt, 12, __func__, (slot).id, (slot).id_task, __VA_ARGS__)
  42. #define SLT_WRN(slot, fmt, ...) LOG_WRN("slot %12.*s: id %2d | task %d | " fmt, 12, __func__, (slot).id, (slot).id_task, __VA_ARGS__)
  43. #define SLT_ERR(slot, fmt, ...) LOG_ERR("slot %12.*s: id %2d | task %d | " fmt, 12, __func__, (slot).id, (slot).id_task, __VA_ARGS__)
  44. #define SLT_DBG(slot, fmt, ...) LOG_DBG("slot %12.*s: id %2d | task %d | " fmt, 12, __func__, (slot).id, (slot).id_task, __VA_ARGS__)
  45. #define SRV_INF(fmt, ...) LOG_INF("srv %12.*s: " fmt, 12, __func__, __VA_ARGS__)
  46. #define SRV_WRN(fmt, ...) LOG_WRN("srv %12.*s: " fmt, 12, __func__, __VA_ARGS__)
  47. #define SRV_ERR(fmt, ...) LOG_ERR("srv %12.*s: " fmt, 12, __func__, __VA_ARGS__)
  48. #define SRV_DBG(fmt, ...) LOG_DBG("srv %12.*s: " fmt, 12, __func__, __VA_ARGS__)
  49. #define QUE_INF(fmt, ...) LOG_INF("que %12.*s: " fmt, 12, __func__, __VA_ARGS__)
  50. #define QUE_WRN(fmt, ...) LOG_WRN("que %12.*s: " fmt, 12, __func__, __VA_ARGS__)
  51. #define QUE_ERR(fmt, ...) LOG_ERR("que %12.*s: " fmt, 12, __func__, __VA_ARGS__)
  52. #define QUE_DBG(fmt, ...) LOG_DBG("que %12.*s: " fmt, 12, __func__, __VA_ARGS__)
  53. using json = nlohmann::ordered_json;
  54. enum stop_type {
  55. STOP_TYPE_FULL,
  56. STOP_TYPE_PARTIAL,
  57. };
  58. // state diagram: https://github.com/ggerganov/llama.cpp/pull/9283
  59. enum slot_state {
  60. SLOT_STATE_IDLE,
  61. SLOT_STATE_PROCESSING_PROMPT,
  62. SLOT_STATE_DONE_PROMPT,
  63. SLOT_STATE_GENERATING,
  64. };
  65. enum server_state {
  66. SERVER_STATE_LOADING_MODEL, // Server is starting up, model not fully loaded yet
  67. SERVER_STATE_READY, // Server is ready and model is loaded
  68. };
  69. enum server_task_type {
  70. SERVER_TASK_TYPE_COMPLETION,
  71. SERVER_TASK_TYPE_CANCEL,
  72. SERVER_TASK_TYPE_NEXT_RESPONSE,
  73. SERVER_TASK_TYPE_METRICS,
  74. SERVER_TASK_TYPE_SLOT_SAVE,
  75. SERVER_TASK_TYPE_SLOT_RESTORE,
  76. SERVER_TASK_TYPE_SLOT_ERASE,
  77. SERVER_TASK_TYPE_SET_LORA,
  78. };
  79. enum server_task_cmpl_type {
  80. SERVER_TASK_CMPL_TYPE_NORMAL,
  81. SERVER_TASK_CMPL_TYPE_EMBEDDING,
  82. SERVER_TASK_CMPL_TYPE_RERANK,
  83. SERVER_TASK_CMPL_TYPE_INFILL,
  84. };
  85. struct server_task {
  86. int id = -1; // to be filled by server_queue
  87. int id_target = -1; // used by SERVER_TASK_TYPE_CANCEL
  88. server_task_type type;
  89. json data;
  90. server_task_cmpl_type cmpl_type = SERVER_TASK_CMPL_TYPE_NORMAL;
  91. // utility function
  92. static std::unordered_set<int> get_list_id(const std::vector<server_task> & tasks) {
  93. std::unordered_set<int> ids(tasks.size());
  94. for (size_t i = 0; i < tasks.size(); i++) {
  95. ids.insert(tasks[i].id);
  96. }
  97. return ids;
  98. }
  99. };
  100. struct server_task_result {
  101. int id = -1;
  102. json data;
  103. bool stop;
  104. bool error;
  105. };
  106. struct slot_params {
  107. bool stream = true;
  108. bool cache_prompt = false; // remember the prompt to avoid reprocessing all prompt
  109. int32_t n_keep = 0; // number of tokens to keep from initial prompt
  110. int32_t n_discard = 0; // number of tokens after n_keep that may be discarded when shifting context, 0 defaults to half
  111. int32_t n_predict = -1; // new tokens to predict
  112. int64_t t_max_prompt_ms = -1; // TODO: implement
  113. int64_t t_max_predict_ms = -1; // if positive, limit the generation phase to this time limit
  114. std::vector<std::string> antiprompt;
  115. };
  116. struct server_slot {
  117. int id;
  118. int id_task = -1;
  119. // the index relative to completion multi-task request
  120. size_t index = 0;
  121. struct slot_params params;
  122. slot_state state = SLOT_STATE_IDLE;
  123. // used to determine the slot that has been used the longest
  124. int64_t t_last_used = -1;
  125. // generation props
  126. int32_t n_ctx = 0; // context size per slot
  127. int32_t n_past = 0;
  128. int32_t n_decoded = 0;
  129. int32_t n_remaining = -1;
  130. int32_t i_batch = -1;
  131. int32_t n_predict = -1; // TODO: disambiguate from params.n_predict
  132. int32_t n_prompt_tokens = 0;
  133. int32_t n_prompt_tokens_processed = 0;
  134. json prompt; // can be either a string, array of strings or array of token ids
  135. json input_prefix;
  136. json input_suffix;
  137. json input_extra;
  138. // when a task is submitted, we first tokenize the prompt and store it here
  139. std::vector<llama_token> prompt_tokens;
  140. std::vector<llama_token> extra_tokens;
  141. std::string generated_text;
  142. std::vector<llama_token> cache_tokens;
  143. std::vector<completion_token_output> generated_token_probs;
  144. server_task_cmpl_type cmpl_type = SERVER_TASK_CMPL_TYPE_NORMAL;
  145. bool has_next_token = true;
  146. bool has_new_line = false;
  147. bool truncated = false;
  148. bool stopped_eos = false;
  149. bool stopped_word = false;
  150. bool stopped_limit = false;
  151. bool oaicompat = false;
  152. std::string oaicompat_model;
  153. std::string stopping_word;
  154. // sampling
  155. json json_schema;
  156. struct common_sampler_params sparams;
  157. struct common_sampler * smpl = nullptr;
  158. llama_token sampled;
  159. // stats
  160. size_t n_sent_text = 0; // number of sent text character
  161. size_t n_sent_token_probs = 0;
  162. int64_t t_start_process_prompt;
  163. int64_t t_start_generation;
  164. double t_prompt_processing; // ms
  165. double t_token_generation; // ms
  166. std::function<void(int)> callback_on_release;
  167. void reset() {
  168. SLT_DBG(*this, "%s", "\n");
  169. n_prompt_tokens = 0;
  170. generated_text = "";
  171. has_new_line = false;
  172. truncated = false;
  173. stopped_eos = false;
  174. stopped_word = false;
  175. stopped_limit = false;
  176. stopping_word = "";
  177. n_past = 0;
  178. n_sent_text = 0;
  179. n_sent_token_probs = 0;
  180. cmpl_type = SERVER_TASK_CMPL_TYPE_NORMAL;
  181. generated_token_probs.clear();
  182. }
  183. bool has_budget(common_params &global_params) {
  184. if (params.n_predict == -1 && global_params.n_predict == -1) {
  185. return true; // limitless
  186. }
  187. n_remaining = -1;
  188. if (params.n_predict != -1) {
  189. n_remaining = params.n_predict - n_decoded;
  190. } else if (global_params.n_predict != -1) {
  191. n_remaining = global_params.n_predict - n_decoded;
  192. }
  193. return n_remaining > 0; // no budget
  194. }
  195. bool is_processing() const {
  196. return state != SLOT_STATE_IDLE;
  197. }
  198. void add_token(const completion_token_output & token) {
  199. if (!is_processing()) {
  200. SLT_WRN(*this, "%s", "slot is not processing\n");
  201. return;
  202. }
  203. generated_token_probs.push_back(token);
  204. }
  205. void release() {
  206. if (is_processing()) {
  207. SLT_INF(*this, "stop processing: n_past = %d, truncated = %d\n", n_past, truncated);
  208. t_token_generation = (ggml_time_us() - t_start_generation) / 1e3;
  209. state = SLOT_STATE_IDLE;
  210. callback_on_release(id);
  211. }
  212. }
  213. json get_formated_timings() const {
  214. return json {
  215. {"prompt_n", n_prompt_tokens_processed},
  216. {"prompt_ms", t_prompt_processing},
  217. {"prompt_per_token_ms", t_prompt_processing / n_prompt_tokens_processed},
  218. {"prompt_per_second", 1e3 / t_prompt_processing * n_prompt_tokens_processed},
  219. {"predicted_n", n_decoded},
  220. {"predicted_ms", t_token_generation},
  221. {"predicted_per_token_ms", t_token_generation / n_decoded},
  222. {"predicted_per_second", 1e3 / t_token_generation * n_decoded},
  223. };
  224. }
  225. size_t find_stopping_strings(const std::string & text, const size_t last_token_size, const stop_type type) {
  226. size_t stop_pos = std::string::npos;
  227. for (const std::string & word : params.antiprompt) {
  228. size_t pos;
  229. if (type == STOP_TYPE_FULL) {
  230. const size_t tmp = word.size() + last_token_size;
  231. const size_t from_pos = text.size() > tmp ? text.size() - tmp : 0;
  232. pos = text.find(word, from_pos);
  233. } else {
  234. pos = find_partial_stop_string(word, text);
  235. }
  236. if (pos != std::string::npos && (stop_pos == std::string::npos || pos < stop_pos)) {
  237. if (type == STOP_TYPE_FULL) {
  238. stopped_word = true;
  239. stopping_word = word;
  240. has_next_token = false;
  241. }
  242. stop_pos = pos;
  243. }
  244. }
  245. return stop_pos;
  246. }
  247. void print_timings() const {
  248. const double t_prompt = t_prompt_processing / n_prompt_tokens_processed;
  249. const double n_prompt_second = 1e3 / t_prompt_processing * n_prompt_tokens_processed;
  250. const double t_gen = t_token_generation / n_decoded;
  251. const double n_gen_second = 1e3 / t_token_generation * n_decoded;
  252. SLT_INF(*this,
  253. "\n"
  254. "\rprompt eval time = %10.2f ms / %5d tokens (%8.2f ms per token, %8.2f tokens per second)\n"
  255. "\r eval time = %10.2f ms / %5d tokens (%8.2f ms per token, %8.2f tokens per second)\n"
  256. "\r total time = %10.2f ms / %5d tokens\n",
  257. t_prompt_processing, n_prompt_tokens_processed, t_prompt, n_prompt_second,
  258. t_token_generation, n_decoded, t_gen, n_gen_second,
  259. t_prompt_processing + t_token_generation, n_prompt_tokens_processed + n_decoded);
  260. }
  261. };
  262. struct server_metrics {
  263. int64_t t_start = 0;
  264. uint64_t n_prompt_tokens_processed_total = 0;
  265. uint64_t t_prompt_processing_total = 0;
  266. uint64_t n_tokens_predicted_total = 0;
  267. uint64_t t_tokens_generation_total = 0;
  268. uint64_t n_prompt_tokens_processed = 0;
  269. uint64_t t_prompt_processing = 0;
  270. uint64_t n_tokens_predicted = 0;
  271. uint64_t t_tokens_generation = 0;
  272. uint64_t n_decode_total = 0;
  273. uint64_t n_busy_slots_total = 0;
  274. void init() {
  275. t_start = ggml_time_us();
  276. }
  277. void on_prompt_eval(const server_slot & slot) {
  278. n_prompt_tokens_processed_total += slot.n_prompt_tokens_processed;
  279. n_prompt_tokens_processed += slot.n_prompt_tokens_processed;
  280. t_prompt_processing += slot.t_prompt_processing;
  281. t_prompt_processing_total += slot.t_prompt_processing;
  282. }
  283. void on_prediction(const server_slot & slot) {
  284. n_tokens_predicted_total += slot.n_decoded;
  285. n_tokens_predicted += slot.n_decoded;
  286. t_tokens_generation += slot.t_token_generation;
  287. t_tokens_generation_total += slot.t_token_generation;
  288. }
  289. void on_decoded(const std::vector<server_slot> & slots) {
  290. n_decode_total++;
  291. for (const auto & slot : slots) {
  292. if (slot.is_processing()) {
  293. n_busy_slots_total++;
  294. }
  295. }
  296. }
  297. void reset_bucket() {
  298. n_prompt_tokens_processed = 0;
  299. t_prompt_processing = 0;
  300. n_tokens_predicted = 0;
  301. t_tokens_generation = 0;
  302. }
  303. };
  304. struct server_queue {
  305. int id = 0;
  306. bool running;
  307. // queues
  308. std::deque<server_task> queue_tasks;
  309. std::deque<server_task> queue_tasks_deferred;
  310. std::mutex mutex_tasks;
  311. std::condition_variable condition_tasks;
  312. // callback functions
  313. std::function<void(server_task&)> callback_new_task;
  314. std::function<void(void)> callback_update_slots;
  315. // Add a new task to the end of the queue
  316. int post(server_task task, bool front = false) {
  317. std::unique_lock<std::mutex> lock(mutex_tasks);
  318. if (task.id == -1) {
  319. task.id = id++;
  320. }
  321. QUE_DBG("new task, id = %d, front = %d\n", task.id, front);
  322. if (front) {
  323. queue_tasks.push_front(std::move(task));
  324. } else {
  325. queue_tasks.push_back(std::move(task));
  326. }
  327. condition_tasks.notify_one();
  328. return task.id;
  329. }
  330. // multi-task version of post()
  331. int post(std::vector<server_task> & tasks, bool front = false) {
  332. std::unique_lock<std::mutex> lock(mutex_tasks);
  333. for (auto & task : tasks) {
  334. if (task.id == -1) {
  335. task.id = id++;
  336. }
  337. QUE_DBG("new task, id = %d/%d, front = %d\n", task.id, (int) tasks.size(), front);
  338. if (front) {
  339. queue_tasks.push_front(std::move(task));
  340. } else {
  341. queue_tasks.push_back(std::move(task));
  342. }
  343. }
  344. condition_tasks.notify_one();
  345. return 0;
  346. }
  347. // Add a new task, but defer until one slot is available
  348. void defer(server_task task) {
  349. std::unique_lock<std::mutex> lock(mutex_tasks);
  350. QUE_DBG("defer task, id = %d\n", task.id);
  351. queue_tasks_deferred.push_back(std::move(task));
  352. condition_tasks.notify_one();
  353. }
  354. // Get the next id for creating a new task
  355. int get_new_id() {
  356. std::unique_lock<std::mutex> lock(mutex_tasks);
  357. int new_id = id++;
  358. return new_id;
  359. }
  360. // Register function to process a new task
  361. void on_new_task(std::function<void(server_task &)> callback) {
  362. callback_new_task = std::move(callback);
  363. }
  364. // Register the function to be called when all slots data is ready to be processed
  365. void on_update_slots(std::function<void(void)> callback) {
  366. callback_update_slots = std::move(callback);
  367. }
  368. // Call when the state of one slot is changed, it will move one task from deferred to main queue
  369. void pop_deferred_task() {
  370. std::unique_lock<std::mutex> lock(mutex_tasks);
  371. if (!queue_tasks_deferred.empty()) {
  372. queue_tasks.emplace_back(std::move(queue_tasks_deferred.front()));
  373. queue_tasks_deferred.pop_front();
  374. }
  375. condition_tasks.notify_one();
  376. }
  377. // end the start_loop routine
  378. void terminate() {
  379. std::unique_lock<std::mutex> lock(mutex_tasks);
  380. running = false;
  381. condition_tasks.notify_all();
  382. }
  383. /**
  384. * Main loop consists of these steps:
  385. * - Wait until a new task arrives
  386. * - Process the task (i.e. maybe copy data into slot)
  387. * - Check if multitask is finished
  388. * - Update all slots
  389. */
  390. void start_loop() {
  391. running = true;
  392. while (true) {
  393. QUE_DBG("%s", "processing new tasks\n");
  394. while (true) {
  395. std::unique_lock<std::mutex> lock(mutex_tasks);
  396. if (queue_tasks.empty()) {
  397. lock.unlock();
  398. break;
  399. }
  400. server_task task = queue_tasks.front();
  401. queue_tasks.pop_front();
  402. lock.unlock();
  403. QUE_DBG("processing task, id = %d\n", task.id);
  404. callback_new_task(task);
  405. }
  406. // all tasks in the current loop is processed, slots data is now ready
  407. QUE_DBG("%s", "update slots\n");
  408. callback_update_slots();
  409. QUE_DBG("%s", "waiting for new tasks\n");
  410. {
  411. std::unique_lock<std::mutex> lock(mutex_tasks);
  412. if (queue_tasks.empty()) {
  413. if (!running) {
  414. QUE_DBG("%s", "terminate\n");
  415. return;
  416. }
  417. condition_tasks.wait(lock, [&]{
  418. return (!queue_tasks.empty() || !running);
  419. });
  420. }
  421. }
  422. }
  423. }
  424. };
  425. struct server_response {
  426. // for keeping track of all tasks waiting for the result
  427. std::unordered_set<int> waiting_task_ids;
  428. // the main result queue
  429. std::vector<server_task_result> queue_results;
  430. std::mutex mutex_results;
  431. std::condition_variable condition_results;
  432. // add the id_task to the list of tasks waiting for response
  433. void add_waiting_task_id(int id_task) {
  434. SRV_DBG("add task %d to waiting list. current waiting = %d (before add)\n", id_task, (int) waiting_task_ids.size());
  435. std::unique_lock<std::mutex> lock(mutex_results);
  436. waiting_task_ids.insert(id_task);
  437. }
  438. void add_waiting_tasks(const std::vector<server_task> & tasks) {
  439. std::unique_lock<std::mutex> lock(mutex_results);
  440. for (const auto & task : tasks) {
  441. SRV_DBG("add task %d to waiting list. current waiting = %d (before add)\n", task.id, (int) waiting_task_ids.size());
  442. waiting_task_ids.insert(task.id);
  443. }
  444. }
  445. // when the request is finished, we can remove task associated with it
  446. void remove_waiting_task_id(int id_task) {
  447. SRV_DBG("remove task %d from waiting list. current waiting = %d (before remove)\n", id_task, (int) waiting_task_ids.size());
  448. std::unique_lock<std::mutex> lock(mutex_results);
  449. waiting_task_ids.erase(id_task);
  450. }
  451. void remove_waiting_task_ids(const std::unordered_set<int> & id_tasks) {
  452. std::unique_lock<std::mutex> lock(mutex_results);
  453. for (const auto & id_task : id_tasks) {
  454. SRV_DBG("remove task %d from waiting list. current waiting = %d (before remove)\n", id_task, (int) waiting_task_ids.size());
  455. waiting_task_ids.erase(id_task);
  456. }
  457. }
  458. // This function blocks the thread until there is a response for one of the id_tasks
  459. server_task_result recv(const std::unordered_set<int> & id_tasks) {
  460. while (true) {
  461. std::unique_lock<std::mutex> lock(mutex_results);
  462. condition_results.wait(lock, [&]{
  463. return !queue_results.empty();
  464. });
  465. for (int i = 0; i < (int) queue_results.size(); i++) {
  466. if (id_tasks.find(queue_results[i].id) != id_tasks.end()) {
  467. server_task_result res = queue_results[i];
  468. queue_results.erase(queue_results.begin() + i);
  469. return res;
  470. }
  471. }
  472. }
  473. // should never reach here
  474. }
  475. // single-task version of recv()
  476. server_task_result recv(int id_task) {
  477. std::unordered_set<int> id_tasks = {id_task};
  478. return recv(id_tasks);
  479. }
  480. // Send a new result to a waiting id_task
  481. void send(server_task_result & result) {
  482. SRV_DBG("sending result for task id = %d\n", result.id);
  483. std::unique_lock<std::mutex> lock(mutex_results);
  484. for (const auto & id_task : waiting_task_ids) {
  485. if (result.id == id_task) {
  486. SRV_DBG("task id = %d moved to result queue\n", result.id);
  487. queue_results.push_back(std::move(result));
  488. condition_results.notify_all();
  489. return;
  490. }
  491. }
  492. }
  493. };
  494. struct server_context {
  495. llama_model * model = nullptr;
  496. llama_context * ctx = nullptr;
  497. std::vector<common_lora_adapter_container> loras;
  498. common_params params;
  499. llama_batch batch = {};
  500. bool clean_kv_cache = true;
  501. bool add_bos_token = true;
  502. bool has_eos_token = false;
  503. int32_t n_ctx; // total context for all clients / slots
  504. // slots / clients
  505. std::vector<server_slot> slots;
  506. json default_generation_settings_for_props;
  507. server_queue queue_tasks;
  508. server_response queue_results;
  509. server_metrics metrics;
  510. // Necessary similarity of prompt for slot selection
  511. float slot_prompt_similarity = 0.0f;
  512. ~server_context() {
  513. if (ctx) {
  514. llama_free(ctx);
  515. ctx = nullptr;
  516. }
  517. if (model) {
  518. llama_free_model(model);
  519. model = nullptr;
  520. }
  521. // Clear any sampling context
  522. for (server_slot & slot : slots) {
  523. if (slot.smpl != nullptr) {
  524. common_sampler_free(slot.smpl);
  525. }
  526. }
  527. llama_batch_free(batch);
  528. }
  529. bool load_model(const common_params & params_) {
  530. params = params_;
  531. // reserve one extra sequence (seq_id == 0) for extra features
  532. params.n_parallel += 1;
  533. common_init_result llama_init = common_init_from_params(params);
  534. model = llama_init.model;
  535. ctx = llama_init.context;
  536. loras = llama_init.lora_adapters;
  537. params.n_parallel -= 1; // but be sneaky about it
  538. if (model == nullptr) {
  539. SRV_ERR("failed to load model, '%s'\n", params.model.c_str());
  540. return false;
  541. }
  542. n_ctx = llama_n_ctx(ctx);
  543. add_bos_token = llama_add_bos_token(model);
  544. has_eos_token = !llama_add_eos_token(model);
  545. return true;
  546. }
  547. bool validate_model_chat_template() const {
  548. llama_chat_message chat[] = {{"user", "test"}};
  549. const int res = llama_chat_apply_template(model, nullptr, chat, 1, true, nullptr, 0);
  550. return res > 0;
  551. }
  552. void init() {
  553. const int32_t n_ctx_slot = n_ctx / params.n_parallel;
  554. SRV_INF("initializing slots, n_slots = %d\n", params.n_parallel);
  555. for (int i = 0; i < params.n_parallel; i++) {
  556. server_slot slot;
  557. slot.id = i;
  558. slot.n_ctx = n_ctx_slot;
  559. slot.n_predict = params.n_predict;
  560. SLT_INF(slot, "new slot n_ctx_slot = %d\n", slot.n_ctx);
  561. slot.sparams = params.sparams;
  562. slot.callback_on_release = [this](int) {
  563. queue_tasks.pop_deferred_task();
  564. };
  565. slot.reset();
  566. slots.push_back(slot);
  567. }
  568. default_generation_settings_for_props = get_formated_generation(slots.front());
  569. default_generation_settings_for_props["seed"] = -1;
  570. // the update_slots() logic will always submit a maximum of n_batch or n_parallel tokens
  571. // note that n_batch can be > n_ctx (e.g. for non-causal attention models such as BERT where the KV cache is not used)
  572. {
  573. const int32_t n_batch = llama_n_batch(ctx);
  574. // only a single seq_id per token is needed
  575. batch = llama_batch_init(std::max(n_batch, params.n_parallel), 0, 1);
  576. }
  577. metrics.init();
  578. }
  579. std::vector<llama_token> tokenize(const json & json_prompt, bool add_special, bool parse_special) const {
  580. // If `add_bos` is true, we only add BOS, when json_prompt is a string,
  581. // or the first element of the json_prompt array is a string.
  582. std::vector<llama_token> prompt_tokens;
  583. if (json_prompt.is_array()) {
  584. bool first = true;
  585. for (const auto & p : json_prompt) {
  586. if (p.is_string()) {
  587. auto s = p.template get<std::string>();
  588. std::vector<llama_token> p;
  589. if (first) {
  590. p = common_tokenize(ctx, s, add_special, parse_special);
  591. first = false;
  592. } else {
  593. p = common_tokenize(ctx, s, false, parse_special);
  594. }
  595. prompt_tokens.insert(prompt_tokens.end(), p.begin(), p.end());
  596. } else {
  597. if (first) {
  598. first = false;
  599. }
  600. prompt_tokens.push_back(p.template get<llama_token>());
  601. }
  602. }
  603. } else {
  604. auto s = json_prompt.template get<std::string>();
  605. prompt_tokens = common_tokenize(ctx, s, add_special, parse_special);
  606. }
  607. return prompt_tokens;
  608. }
  609. server_slot * get_slot_by_id(int id) {
  610. for (server_slot & slot : slots) {
  611. if (slot.id == id) {
  612. return &slot;
  613. }
  614. }
  615. return nullptr;
  616. }
  617. server_slot * get_available_slot(const std::string & prompt) {
  618. server_slot * ret = nullptr;
  619. // find the slot that has at least n% prompt similarity
  620. if (ret == nullptr && slot_prompt_similarity != 0.0f && !prompt.empty()) {
  621. int max_lcp_len = 0;
  622. float similarity = 0;
  623. for (server_slot & slot : slots) {
  624. // skip the slot if it is not available
  625. if (slot.is_processing()) {
  626. continue;
  627. }
  628. // skip the slot if it does not contains prompt
  629. if (!slot.prompt.is_string()) {
  630. continue;
  631. }
  632. // current slot's prompt
  633. std::string slot_prompt = slot.prompt.get<std::string>();
  634. // length of the current slot's prompt
  635. int slot_prompt_len = slot_prompt.size();
  636. // length of the Longest Common Prefix between the current slot's prompt and the input prompt
  637. int lcp_len = longest_common_prefix(slot_prompt, prompt);
  638. // fraction of the common substring length compared to the current slot's prompt length
  639. similarity = static_cast<float>(lcp_len) / slot_prompt_len;
  640. // select the current slot if the criteria match
  641. if (lcp_len > max_lcp_len && similarity > slot_prompt_similarity) {
  642. max_lcp_len = lcp_len;
  643. ret = &slot;
  644. }
  645. }
  646. if (ret != nullptr) {
  647. SLT_DBG(*ret, "selected slot by lcp similarity, max_lcp_len = %d, similarity = %f\n", max_lcp_len, similarity);
  648. }
  649. }
  650. // find the slot that has been least recently used
  651. if (ret == nullptr) {
  652. int64_t t_last = ggml_time_us();
  653. for (server_slot & slot : slots) {
  654. // skip the slot if it is not available
  655. if (slot.is_processing()) {
  656. continue;
  657. }
  658. // select the current slot if the criteria match
  659. if (slot.t_last_used < t_last) {
  660. t_last = slot.t_last_used;
  661. ret = &slot;
  662. }
  663. }
  664. if (ret != nullptr) {
  665. SLT_DBG(*ret, "selected slot by lru, t_last = %" PRId64 "\n", t_last);
  666. }
  667. }
  668. return ret;
  669. }
  670. bool launch_slot_with_task(server_slot & slot, const server_task & task) {
  671. slot_params default_params;
  672. // Sampling parameter defaults are loaded from the global server context (but individual requests can still override them)
  673. auto default_sparams = params.sparams;
  674. const auto & data = task.data;
  675. if (data.count("__oaicompat") != 0) {
  676. slot.oaicompat = true;
  677. slot.oaicompat_model = json_value(data, "model", std::string(DEFAULT_OAICOMPAT_MODEL));
  678. } else {
  679. slot.oaicompat = false;
  680. slot.oaicompat_model = "";
  681. }
  682. slot.params.stream = json_value(data, "stream", false);
  683. slot.params.cache_prompt = json_value(data, "cache_prompt", false);
  684. slot.params.n_predict = json_value(data, "n_predict", json_value(data, "max_tokens", default_params.n_predict));
  685. slot.sparams.top_k = json_value(data, "top_k", default_sparams.top_k);
  686. slot.sparams.top_p = json_value(data, "top_p", default_sparams.top_p);
  687. slot.sparams.min_p = json_value(data, "min_p", default_sparams.min_p);
  688. slot.sparams.xtc_probability = json_value(data, "xtc_probability", default_sparams.xtc_probability);
  689. slot.sparams.xtc_threshold = json_value(data, "xtc_threshold", default_sparams.xtc_threshold);
  690. slot.sparams.tfs_z = json_value(data, "tfs_z", default_sparams.tfs_z);
  691. slot.sparams.typ_p = json_value(data, "typical_p", default_sparams.typ_p);
  692. slot.sparams.temp = json_value(data, "temperature", default_sparams.temp);
  693. slot.sparams.dynatemp_range = json_value(data, "dynatemp_range", default_sparams.dynatemp_range);
  694. slot.sparams.dynatemp_exponent = json_value(data, "dynatemp_exponent", default_sparams.dynatemp_exponent);
  695. slot.sparams.penalty_last_n = json_value(data, "repeat_last_n", default_sparams.penalty_last_n);
  696. slot.sparams.penalty_repeat = json_value(data, "repeat_penalty", default_sparams.penalty_repeat);
  697. slot.sparams.penalty_freq = json_value(data, "frequency_penalty", default_sparams.penalty_freq);
  698. slot.sparams.penalty_present = json_value(data, "presence_penalty", default_sparams.penalty_present);
  699. slot.sparams.mirostat = json_value(data, "mirostat", default_sparams.mirostat);
  700. slot.sparams.mirostat_tau = json_value(data, "mirostat_tau", default_sparams.mirostat_tau);
  701. slot.sparams.mirostat_eta = json_value(data, "mirostat_eta", default_sparams.mirostat_eta);
  702. slot.sparams.penalize_nl = json_value(data, "penalize_nl", default_sparams.penalize_nl);
  703. slot.params.n_keep = json_value(data, "n_keep", slot.params.n_keep);
  704. slot.params.n_discard = json_value(data, "n_discard", default_params.n_discard);
  705. slot.sparams.seed = json_value(data, "seed", default_sparams.seed);
  706. slot.sparams.n_probs = json_value(data, "n_probs", default_sparams.n_probs);
  707. slot.sparams.min_keep = json_value(data, "min_keep", default_sparams.min_keep);
  708. //slot.params.t_max_prompt_ms = json_value(data, "t_max_prompt_ms", default_params.t_max_prompt_ms); // TODO: implement
  709. slot.params.t_max_predict_ms = json_value(data, "t_max_predict_ms", default_params.t_max_predict_ms);
  710. // process "json_schema" and "grammar"
  711. if (data.contains("json_schema") && !data.at("json_schema").is_null() && data.contains("grammar") && !data.at("grammar").is_null()) {
  712. send_error(task, "Either \"json_schema\" or \"grammar\" can be specified, but not both", ERROR_TYPE_INVALID_REQUEST);
  713. return false;
  714. }
  715. if (data.contains("json_schema") && !data.contains("grammar")) {
  716. try {
  717. auto schema = json_value(data, "json_schema", json::object());
  718. slot.sparams.grammar = json_schema_to_grammar(schema);
  719. } catch (const std::exception & e) {
  720. send_error(task, std::string("\"json_schema\": ") + e.what(), ERROR_TYPE_INVALID_REQUEST);
  721. return false;
  722. }
  723. } else {
  724. slot.sparams.grammar = json_value(data, "grammar", default_sparams.grammar);
  725. }
  726. if (slot.n_predict > 0 && slot.params.n_predict > slot.n_predict) {
  727. // Might be better to reject the request with a 400 ?
  728. slot.params.n_predict = slot.n_predict;
  729. SLT_WRN(slot, "n_predict = %d exceeds server configuration, setting to %d", slot.n_predict, slot.n_predict);
  730. }
  731. // infill
  732. slot.input_prefix = json_value(data, "input_prefix", json());
  733. slot.input_suffix = json_value(data, "input_suffix", json());
  734. slot.input_extra = json_value(data, "input_extra", json());
  735. SLT_DBG(slot, "extra_context chunks: %d\n", (int) slot.input_extra.size());
  736. for (const auto & chunk : slot.input_extra) {
  737. // { "text": string, "filename": string }
  738. if (!chunk.contains("text") || !chunk["text"].is_string()) {
  739. send_error(task, "extra_context chunk must contain a \"text\" field with a string value", ERROR_TYPE_INVALID_REQUEST);
  740. return false;
  741. }
  742. // filename is optional
  743. if (chunk.contains("filename") && !chunk["filename"].is_string()) {
  744. send_error(task, "extra_context chunk's \"filename\" field must be a string", ERROR_TYPE_INVALID_REQUEST);
  745. return false;
  746. }
  747. SLT_DBG(slot, "extra_context chunk in file '%s':\n%s\n", chunk.value("filename", "").c_str(), chunk.value("text", "").c_str());
  748. }
  749. // get prompt
  750. {
  751. const auto & prompt = data.find("prompt");
  752. if (prompt == data.end()) {
  753. send_error(task, "\"prompt\" must be provided", ERROR_TYPE_INVALID_REQUEST);
  754. return false;
  755. }
  756. if ((prompt->is_string()) ||
  757. (prompt->is_array() && prompt->size() == 1 && prompt->at(0).is_string()) ||
  758. (prompt->is_array() && !prompt->empty() && prompt->at(0).is_number_integer())) {
  759. slot.prompt = *prompt;
  760. } else if (prompt->is_array() && prompt->size() == 1 && prompt->at(0).is_array()) {
  761. slot.prompt = prompt->at(0);
  762. } else if (prompt->is_array() && prompt->size() > 1) {
  763. // array of strings
  764. for (const auto & el : *prompt) {
  765. if (!el.is_string()) {
  766. send_error(task, "\"prompt\" must be a string, an array of strings or an array of integers", ERROR_TYPE_INVALID_REQUEST);
  767. return false;
  768. }
  769. }
  770. slot.prompt = *prompt;
  771. } else {
  772. send_error(task, "\"prompt\" must be a string, an array of strings or an array of integers", ERROR_TYPE_INVALID_REQUEST);
  773. return false;
  774. }
  775. }
  776. {
  777. slot.sparams.logit_bias.clear();
  778. if (json_value(data, "ignore_eos", false) && has_eos_token) {
  779. slot.sparams.logit_bias.push_back({llama_token_eos(model), -INFINITY});
  780. }
  781. const auto & logit_bias = data.find("logit_bias");
  782. if (logit_bias != data.end() && logit_bias->is_array()) {
  783. const int n_vocab = llama_n_vocab(model);
  784. for (const auto & el : *logit_bias) {
  785. // TODO: we may want to throw errors here, in case "el" is incorrect
  786. if (el.is_array() && el.size() == 2) {
  787. float bias;
  788. if (el[1].is_number()) {
  789. bias = el[1].get<float>();
  790. } else if (el[1].is_boolean() && !el[1].get<bool>()) {
  791. bias = -INFINITY;
  792. } else {
  793. continue;
  794. }
  795. if (el[0].is_number_integer()) {
  796. llama_token tok = el[0].get<llama_token>();
  797. if (tok >= 0 && tok < n_vocab) {
  798. slot.sparams.logit_bias.push_back({tok, bias});
  799. }
  800. } else if (el[0].is_string()) {
  801. auto toks = common_tokenize(model, el[0].get<std::string>(), false);
  802. for (auto tok : toks) {
  803. slot.sparams.logit_bias.push_back({tok, bias});
  804. }
  805. }
  806. }
  807. }
  808. }
  809. }
  810. {
  811. slot.params.antiprompt.clear();
  812. const auto & stop = data.find("stop");
  813. if (stop != data.end() && stop->is_array()) {
  814. for (const auto & word : *stop) {
  815. if (!word.empty()) {
  816. slot.params.antiprompt.push_back(word);
  817. }
  818. }
  819. }
  820. }
  821. {
  822. const auto & samplers = data.find("samplers");
  823. if (samplers != data.end() && samplers->is_array()) {
  824. std::vector<std::string> sampler_names;
  825. for (const auto & name : *samplers) {
  826. if (name.is_string()) {
  827. sampler_names.emplace_back(name);
  828. }
  829. }
  830. slot.sparams.samplers = common_sampler_types_from_names(sampler_names, false);
  831. } else {
  832. slot.sparams.samplers = default_sparams.samplers;
  833. }
  834. }
  835. {
  836. if (slot.smpl != nullptr) {
  837. common_sampler_free(slot.smpl);
  838. }
  839. slot.smpl = common_sampler_init(model, slot.sparams);
  840. if (slot.smpl == nullptr) {
  841. // for now, the only error that may happen here is invalid grammar
  842. send_error(task, "Failed to parse grammar", ERROR_TYPE_INVALID_REQUEST);
  843. return false;
  844. }
  845. }
  846. slot.state = SLOT_STATE_PROCESSING_PROMPT;
  847. slot.prompt_tokens.clear();
  848. SLT_INF(slot, "%s", "processing task\n");
  849. return true;
  850. }
  851. void kv_cache_clear() {
  852. SRV_DBG("%s", "clearing KV cache\n");
  853. // clear the entire KV cache
  854. llama_kv_cache_clear(ctx);
  855. clean_kv_cache = false;
  856. }
  857. bool process_token(completion_token_output & result, server_slot & slot) {
  858. // remember which tokens were sampled - used for repetition penalties during sampling
  859. const std::string token_str = common_token_to_piece(ctx, result.tok, params.special);
  860. slot.sampled = result.tok;
  861. // search stop word and delete it
  862. slot.generated_text += token_str;
  863. slot.has_next_token = true;
  864. // check if there is incomplete UTF-8 character at the end
  865. bool incomplete = false;
  866. for (unsigned i = 1; i < 5 && i <= slot.generated_text.size(); ++i) {
  867. unsigned char c = slot.generated_text[slot.generated_text.size() - i];
  868. if ((c & 0xC0) == 0x80) {
  869. // continuation byte: 10xxxxxx
  870. continue;
  871. }
  872. if ((c & 0xE0) == 0xC0) {
  873. // 2-byte character: 110xxxxx ...
  874. incomplete = i < 2;
  875. } else if ((c & 0xF0) == 0xE0) {
  876. // 3-byte character: 1110xxxx ...
  877. incomplete = i < 3;
  878. } else if ((c & 0xF8) == 0xF0) {
  879. // 4-byte character: 11110xxx ...
  880. incomplete = i < 4;
  881. }
  882. // else 1-byte character or invalid byte
  883. break;
  884. }
  885. if (!incomplete) {
  886. size_t pos = std::min(slot.n_sent_text, slot.generated_text.size());
  887. const std::string str_test = slot.generated_text.substr(pos);
  888. bool is_stop_full = false;
  889. size_t stop_pos = slot.find_stopping_strings(str_test, token_str.size(), STOP_TYPE_FULL);
  890. if (stop_pos != std::string::npos) {
  891. is_stop_full = true;
  892. slot.generated_text.erase(
  893. slot.generated_text.begin() + pos + stop_pos,
  894. slot.generated_text.end());
  895. pos = std::min(slot.n_sent_text, slot.generated_text.size());
  896. } else {
  897. is_stop_full = false;
  898. stop_pos = slot.find_stopping_strings(str_test, token_str.size(), STOP_TYPE_PARTIAL);
  899. }
  900. // check if there is any token to predict
  901. if (stop_pos == std::string::npos || (!slot.has_next_token && !is_stop_full && stop_pos > 0)) {
  902. // no send the stop word in the response
  903. result.text_to_send = slot.generated_text.substr(pos, std::string::npos);
  904. slot.n_sent_text += result.text_to_send.size();
  905. // add the token to slot queue and cache
  906. }
  907. slot.add_token(result);
  908. if (slot.params.stream) {
  909. send_partial_response(slot, result);
  910. }
  911. }
  912. if (incomplete) {
  913. slot.has_next_token = true;
  914. }
  915. // check the limits
  916. if (slot.n_decoded > 0 && slot.has_next_token && !slot.has_budget(params)) {
  917. slot.stopped_limit = true;
  918. slot.has_next_token = false;
  919. SLT_DBG(slot, "stopped by limit, n_decoded = %d, n_predict = %d\n", slot.n_decoded, slot.params.n_predict);
  920. }
  921. // if we have already seen a new line, we stop after a certain time limit
  922. if (slot.has_new_line && slot.params.t_max_predict_ms > 0 &&
  923. (ggml_time_us() - slot.t_start_generation > 1000.0f*slot.params.t_max_predict_ms)) {
  924. slot.stopped_limit = true;
  925. slot.has_next_token = false;
  926. SLT_DBG(slot, "stopped by time limit, n_decoded = %d, t_max_predict_ms = %d ms\n", slot.n_decoded, (int) slot.params.t_max_predict_ms);
  927. }
  928. // check if there is a new line in the generated text
  929. if (result.text_to_send.find('\n') != std::string::npos) {
  930. slot.has_new_line = true;
  931. }
  932. // if context shift is disabled, we stop when it reaches the context limit
  933. if (slot.n_past >= slot.n_ctx) {
  934. slot.truncated = true;
  935. slot.stopped_limit = true;
  936. slot.has_next_token = false;
  937. SLT_DBG(slot, "stopped due to running out of context capacity, n_past = %d, n_prompt_tokens = %d, n_decoded = %d, n_ctx = %d\n",
  938. slot.n_decoded, slot.n_prompt_tokens, slot.n_past, slot.n_ctx);
  939. }
  940. if (llama_token_is_eog(model, result.tok)) {
  941. slot.stopped_eos = true;
  942. slot.has_next_token = false;
  943. SLT_DBG(slot, "%s", "stopped by EOS\n");
  944. }
  945. const auto n_ctx_train = llama_n_ctx_train(model);
  946. if (slot.params.n_predict < 1 && slot.n_predict < 1 && slot.n_prompt_tokens + slot.n_decoded >= n_ctx_train) {
  947. slot.truncated = true;
  948. slot.stopped_limit = true;
  949. slot.has_next_token = false; // stop prediction
  950. SLT_WRN(slot,
  951. "n_predict (%d) is set for infinite generation. "
  952. "Limiting generated tokens to n_ctx_train (%d) to avoid EOS-less generation infinite loop\n",
  953. slot.params.n_predict, n_ctx_train);
  954. }
  955. SLT_DBG(slot, "n_decoded = %d, n_remaining = %d, next token: %5d '%s'\n", slot.n_decoded, slot.n_remaining, result.tok, token_str.c_str());
  956. return slot.has_next_token; // continue
  957. }
  958. json get_formated_generation(const server_slot & slot) const {
  959. std::vector<std::string> samplers;
  960. samplers.reserve(slot.sparams.samplers.size());
  961. for (const auto & sampler : slot.sparams.samplers) {
  962. samplers.emplace_back(common_sampler_type_to_str(sampler));
  963. }
  964. return json {
  965. {"n_ctx", slot.n_ctx},
  966. {"n_predict", slot.n_predict}, // Server configured n_predict
  967. {"model", params.model_alias},
  968. {"seed", slot.sparams.seed},
  969. {"seed_cur", slot.smpl ? common_sampler_get_seed(slot.smpl) : 0},
  970. {"temperature", slot.sparams.temp},
  971. {"dynatemp_range", slot.sparams.dynatemp_range},
  972. {"dynatemp_exponent", slot.sparams.dynatemp_exponent},
  973. {"top_k", slot.sparams.top_k},
  974. {"top_p", slot.sparams.top_p},
  975. {"min_p", slot.sparams.min_p},
  976. {"xtc_probability", slot.sparams.xtc_probability},
  977. {"xtc_threshold", slot.sparams.xtc_threshold},
  978. {"tfs_z", slot.sparams.tfs_z},
  979. {"typical_p", slot.sparams.typ_p},
  980. {"repeat_last_n", slot.sparams.penalty_last_n},
  981. {"repeat_penalty", slot.sparams.penalty_repeat},
  982. {"presence_penalty", slot.sparams.penalty_present},
  983. {"frequency_penalty", slot.sparams.penalty_freq},
  984. {"mirostat", slot.sparams.mirostat},
  985. {"mirostat_tau", slot.sparams.mirostat_tau},
  986. {"mirostat_eta", slot.sparams.mirostat_eta},
  987. {"penalize_nl", slot.sparams.penalize_nl},
  988. {"stop", slot.params.antiprompt},
  989. {"max_tokens", slot.params.n_predict}, // User configured n_predict
  990. {"n_keep", slot.params.n_keep},
  991. {"n_discard", slot.params.n_discard},
  992. {"ignore_eos", slot.sparams.ignore_eos},
  993. {"stream", slot.params.stream},
  994. //{"logit_bias", slot.sparams.logit_bias},
  995. {"n_probs", slot.sparams.n_probs},
  996. {"min_keep", slot.sparams.min_keep},
  997. {"grammar", slot.sparams.grammar},
  998. {"samplers", samplers},
  999. };
  1000. }
  1001. void send_error(const server_task & task, const std::string & error, const enum error_type type = ERROR_TYPE_SERVER) {
  1002. send_error(task.id, error, type);
  1003. }
  1004. void send_error(const server_slot & slot, const std::string & error, const enum error_type type = ERROR_TYPE_SERVER) {
  1005. send_error(slot.id_task, error, type);
  1006. }
  1007. void send_error(const int id_task, const std::string & error, const enum error_type type = ERROR_TYPE_SERVER) {
  1008. SRV_ERR("task id = %d, error: %s\n", id_task, error.c_str());
  1009. server_task_result res;
  1010. res.id = id_task;
  1011. res.stop = false;
  1012. res.error = true;
  1013. res.data = format_error_response(error, type);
  1014. queue_results.send(res);
  1015. }
  1016. void send_partial_response(server_slot & slot, completion_token_output tkn) {
  1017. server_task_result res;
  1018. res.id = slot.id_task;
  1019. res.error = false;
  1020. res.stop = false;
  1021. res.data = json {
  1022. {"content", tkn.text_to_send},
  1023. {"stop", false},
  1024. {"id_slot", slot.id},
  1025. {"multimodal", false},
  1026. {"index", slot.index},
  1027. };
  1028. if (slot.sparams.n_probs > 0) {
  1029. const std::vector<llama_token> to_send_toks = common_tokenize(ctx, tkn.text_to_send, false);
  1030. const size_t probs_pos = std::min(slot.n_sent_token_probs, slot.generated_token_probs.size());
  1031. const size_t probs_stop_pos = std::min(slot.n_sent_token_probs + to_send_toks.size(), slot.generated_token_probs.size());
  1032. std::vector<completion_token_output> probs_output;
  1033. if (probs_pos < probs_stop_pos) {
  1034. probs_output = std::vector<completion_token_output>(
  1035. slot.generated_token_probs.begin() + probs_pos,
  1036. slot.generated_token_probs.begin() + probs_stop_pos);
  1037. }
  1038. slot.n_sent_token_probs = probs_stop_pos;
  1039. res.data["completion_probabilities"] = probs_vector_to_json(ctx, probs_output);
  1040. }
  1041. if (slot.oaicompat) {
  1042. res.data["oaicompat_token_ctr"] = slot.n_decoded;
  1043. res.data["model"] = slot.oaicompat_model;
  1044. }
  1045. queue_results.send(res);
  1046. }
  1047. void send_final_response(const server_slot & slot) {
  1048. server_task_result res;
  1049. res.id = slot.id_task;
  1050. res.error = false;
  1051. res.stop = true;
  1052. res.data = json {
  1053. {"content", !slot.params.stream ? slot.generated_text : ""},
  1054. {"id_slot", slot.id},
  1055. {"stop", true},
  1056. {"model", params.model_alias},
  1057. {"tokens_predicted", slot.n_decoded},
  1058. {"tokens_evaluated", slot.n_prompt_tokens},
  1059. {"generation_settings", get_formated_generation(slot)},
  1060. {"prompt", slot.prompt},
  1061. {"has_new_line", slot.has_new_line},
  1062. {"truncated", slot.truncated},
  1063. {"stopped_eos", slot.stopped_eos},
  1064. {"stopped_word", slot.stopped_word},
  1065. {"stopped_limit", slot.stopped_limit},
  1066. {"stopping_word", slot.stopping_word},
  1067. {"tokens_cached", slot.n_past},
  1068. {"timings", slot.get_formated_timings()},
  1069. {"index", slot.index},
  1070. };
  1071. if (slot.sparams.n_probs > 0) {
  1072. std::vector<completion_token_output> probs;
  1073. if (!slot.params.stream && slot.stopped_word) {
  1074. const std::vector<llama_token> stop_word_toks = common_tokenize(ctx, slot.stopping_word, false);
  1075. size_t safe_offset = std::min(slot.generated_token_probs.size(), stop_word_toks.size());
  1076. probs = std::vector<completion_token_output>(
  1077. slot.generated_token_probs.begin(),
  1078. slot.generated_token_probs.end() - safe_offset);
  1079. } else {
  1080. probs = std::vector<completion_token_output>(
  1081. slot.generated_token_probs.begin(),
  1082. slot.generated_token_probs.end());
  1083. }
  1084. res.data["completion_probabilities"] = probs_vector_to_json(ctx, probs);
  1085. }
  1086. if (slot.oaicompat) {
  1087. res.data["oaicompat_token_ctr"] = slot.n_decoded;
  1088. res.data["model"] = slot.oaicompat_model;
  1089. }
  1090. queue_results.send(res);
  1091. }
  1092. void send_embedding(const server_slot & slot, const llama_batch & batch) {
  1093. server_task_result res;
  1094. res.id = slot.id_task;
  1095. res.error = false;
  1096. res.stop = true;
  1097. const int n_embd = llama_n_embd(model);
  1098. std::vector<float> embd_res(n_embd, 0.0f);
  1099. for (int i = 0; i < batch.n_tokens; ++i) {
  1100. if (!batch.logits[i] || batch.seq_id[i][0] != slot.id + 1) {
  1101. continue;
  1102. }
  1103. const float * embd = llama_get_embeddings_seq(ctx, batch.seq_id[i][0]);
  1104. if (embd == NULL) {
  1105. embd = llama_get_embeddings_ith(ctx, i);
  1106. }
  1107. if (embd == NULL) {
  1108. SLT_ERR(slot, "failed to get embeddings, token = %d, seq_id = %d\n", batch.token[i], batch.seq_id[i][0]);
  1109. res.data = json {
  1110. {"embedding", std::vector<float>(n_embd, 0.0f)},
  1111. {"index", slot.index},
  1112. };
  1113. continue;
  1114. }
  1115. common_embd_normalize(embd, embd_res.data(), n_embd);
  1116. res.data = json {
  1117. {"embedding", embd_res},
  1118. {"index", slot.index},
  1119. };
  1120. }
  1121. SLT_DBG(slot, "%s", "sending embeddings\n");
  1122. queue_results.send(res);
  1123. }
  1124. void send_rerank(const server_slot & slot, const llama_batch & batch) {
  1125. server_task_result res;
  1126. res.id = slot.id_task;
  1127. res.error = false;
  1128. res.stop = true;
  1129. for (int i = 0; i < batch.n_tokens; ++i) {
  1130. if (!batch.logits[i] || batch.seq_id[i][0] != slot.id + 1) {
  1131. continue;
  1132. }
  1133. const float * embd = llama_get_embeddings_seq(ctx, batch.seq_id[i][0]);
  1134. if (embd == NULL) {
  1135. embd = llama_get_embeddings_ith(ctx, i);
  1136. }
  1137. if (embd == NULL) {
  1138. SLT_ERR(slot, "failed to get embeddings, token = %d, seq_id = %d\n", batch.token[i], batch.seq_id[i][0]);
  1139. res.data = json {
  1140. {"index", slot.index},
  1141. {"score", -1e6},
  1142. };
  1143. continue;
  1144. }
  1145. res.data = json {
  1146. {"index", slot.index},
  1147. {"score", embd[0]},
  1148. };
  1149. }
  1150. SLT_DBG(slot, "sending rerank result, res = '%s'\n", res.data.dump().c_str());
  1151. queue_results.send(res);
  1152. }
  1153. //
  1154. // Functions to create new task(s) and receive result(s)
  1155. //
  1156. std::vector<server_task> create_tasks_cmpl(json data, server_task_cmpl_type cmpl_type) {
  1157. std::vector<server_task> tasks;
  1158. auto create_task = [&](json & task_data, bool replace_prompt, json prompt) {
  1159. server_task task;
  1160. task.id = queue_tasks.get_new_id();
  1161. task.cmpl_type = cmpl_type;
  1162. task.type = SERVER_TASK_TYPE_COMPLETION;
  1163. if (replace_prompt) {
  1164. task.data = task_data;
  1165. task.data["prompt"] = std::move(prompt);
  1166. } else {
  1167. task.data = std::move(task_data);
  1168. }
  1169. tasks.push_back(std::move(task));
  1170. };
  1171. static constexpr const char * error_msg = "\"prompt\" must be a string, an array of token ids or an array of prompts";
  1172. if (!data.contains("prompt")) {
  1173. throw std::runtime_error(error_msg);
  1174. }
  1175. json prompt = data.at("prompt");
  1176. // if the prompt is a singleton (i.e. a string or a list of tokens), we only need to create single task
  1177. if (prompt.is_string() || json_is_array_of_numbers(prompt)) {
  1178. data["index"] = 0;
  1179. create_task(data, false, nullptr);
  1180. } else if (prompt.is_array()) {
  1181. // otherwise, it's a multiple-prompt task, we break it into smaller tasks
  1182. std::vector<json> prompts = prompt;
  1183. if (cmpl_type == SERVER_TASK_CMPL_TYPE_RERANK) {
  1184. // prompts[0] is the question
  1185. // the rest are the answers/documents
  1186. SRV_DBG("creating rerank tasks, n_prompts = %d\n", (int) prompts.size() - 1);
  1187. for (size_t i = 1; i < prompts.size(); i++) {
  1188. json qd;
  1189. qd.push_back(prompts[0]);
  1190. qd.push_back(prompts[i]);
  1191. data["index"] = i - 1;
  1192. create_task(data, true, qd);
  1193. }
  1194. } else {
  1195. SRV_DBG("creating multi-prompt tasks, n_prompts = %d\n", (int) prompts.size());
  1196. for (size_t i = 0; i < prompts.size(); i++) {
  1197. const auto & e = prompts[i];
  1198. if (e.is_string() || json_is_array_of_numbers(e)) {
  1199. data["index"] = i;
  1200. create_task(data, true, e);
  1201. } else {
  1202. throw std::runtime_error(error_msg);
  1203. }
  1204. }
  1205. }
  1206. } else {
  1207. // invalid case
  1208. throw std::runtime_error(error_msg);
  1209. }
  1210. return tasks;
  1211. }
  1212. void cancel_tasks(const std::unordered_set<int> & id_tasks) {
  1213. std::vector<server_task> cancel_tasks;
  1214. cancel_tasks.reserve(id_tasks.size());
  1215. for (const auto & id_task : id_tasks) {
  1216. SRV_WRN("cancel task, id_task = %d\n", id_task);
  1217. server_task task;
  1218. task.type = SERVER_TASK_TYPE_CANCEL;
  1219. task.id_target = id_task;
  1220. cancel_tasks.push_back(task);
  1221. queue_results.remove_waiting_task_id(id_task);
  1222. }
  1223. // push to beginning of the queue, so it has highest priority
  1224. queue_tasks.post(cancel_tasks, true);
  1225. }
  1226. // receive the results from task(s) created by create_tasks_cmpl
  1227. void receive_cmpl_results(
  1228. const std::unordered_set<int> & id_tasks,
  1229. const std::function<void(std::vector<server_task_result>&)> & result_handler,
  1230. const std::function<void(json)> & error_handler) {
  1231. // TODO: currently, there is no way to detect the client has cancelled the request
  1232. std::vector<server_task_result> results(id_tasks.size());
  1233. for (size_t i = 0; i < id_tasks.size(); i++) {
  1234. server_task_result result = queue_results.recv(id_tasks);
  1235. if (result.error) {
  1236. error_handler(result.data);
  1237. cancel_tasks(id_tasks);
  1238. return;
  1239. }
  1240. const size_t idx = result.data["index"];
  1241. GGML_ASSERT(idx < results.size() && "index out of range");
  1242. results[idx] = result;
  1243. }
  1244. result_handler(results);
  1245. }
  1246. // receive the results from task(s) created by create_tasks_cmpl, in stream mode
  1247. void receive_cmpl_results_stream(
  1248. const std::unordered_set<int> & id_tasks, const
  1249. std::function<bool(server_task_result&)> & result_handler, const
  1250. std::function<void(json)> & error_handler) {
  1251. size_t n_finished = 0;
  1252. while (true) {
  1253. server_task_result result = queue_results.recv(id_tasks);
  1254. if (!result_handler(result)) {
  1255. cancel_tasks(id_tasks);
  1256. break;
  1257. }
  1258. if (result.error) {
  1259. error_handler(result.data);
  1260. cancel_tasks(id_tasks);
  1261. break;
  1262. }
  1263. if (result.stop) {
  1264. if (++n_finished == id_tasks.size()) {
  1265. break;
  1266. }
  1267. }
  1268. }
  1269. }
  1270. //
  1271. // Functions to process the task
  1272. //
  1273. void process_single_task(const server_task & task) {
  1274. switch (task.type) {
  1275. case SERVER_TASK_TYPE_COMPLETION:
  1276. {
  1277. const int id_slot = json_value(task.data, "id_slot", -1);
  1278. server_slot * slot;
  1279. if (id_slot != -1) {
  1280. slot = get_slot_by_id(id_slot);
  1281. } else {
  1282. std::string prompt;
  1283. if (task.data.contains("prompt") && task.data.at("prompt").is_string()) {
  1284. prompt = json_value(task.data, "prompt", std::string());
  1285. }
  1286. slot = get_available_slot(prompt);
  1287. }
  1288. if (slot == nullptr) {
  1289. // if no slot is available, we defer this task for processing later
  1290. SRV_DBG("no slot is available, defer task, id_task = %d\n", task.id);
  1291. queue_tasks.defer(task);
  1292. break;
  1293. }
  1294. if (slot->is_processing()) {
  1295. // if requested slot is unavailable, we defer this task for processing later
  1296. SRV_DBG("requested slot is unavailable, defer task, id_task = %d\n", task.id);
  1297. queue_tasks.defer(task);
  1298. break;
  1299. }
  1300. slot->reset();
  1301. slot->id_task = task.id;
  1302. slot->cmpl_type = task.cmpl_type;
  1303. slot->index = json_value(task.data, "index", 0);
  1304. if (!launch_slot_with_task(*slot, task)) {
  1305. SRV_ERR("failed to launch slot with task, id_task = %d\n", task.id);
  1306. break;
  1307. }
  1308. } break;
  1309. case SERVER_TASK_TYPE_CANCEL:
  1310. {
  1311. // release slot linked with the task id
  1312. for (auto & slot : slots) {
  1313. if (slot.id_task == task.id_target) {
  1314. slot.release();
  1315. break;
  1316. }
  1317. }
  1318. } break;
  1319. case SERVER_TASK_TYPE_NEXT_RESPONSE:
  1320. {
  1321. // do nothing
  1322. } break;
  1323. case SERVER_TASK_TYPE_METRICS:
  1324. {
  1325. json slots_data = json::array();
  1326. int n_idle_slots = 0;
  1327. int n_processing_slots = 0;
  1328. for (server_slot & slot : slots) {
  1329. json slot_data = get_formated_generation(slot);
  1330. slot_data["id"] = slot.id;
  1331. slot_data["id_task"] = slot.id_task;
  1332. slot_data["state"] = slot.state;
  1333. slot_data["prompt"] = slot.prompt;
  1334. slot_data["next_token"] = {
  1335. {"has_next_token", slot.has_next_token},
  1336. {"has_new_line", slot.has_new_line},
  1337. {"n_remain", slot.n_remaining},
  1338. {"n_decoded", slot.n_decoded},
  1339. {"stopped_eos", slot.stopped_eos},
  1340. {"stopped_word", slot.stopped_word},
  1341. {"stopped_limit", slot.stopped_limit},
  1342. {"stopping_word", slot.stopping_word},
  1343. };
  1344. if (slot_data["state"] == SLOT_STATE_IDLE) {
  1345. n_idle_slots++;
  1346. } else {
  1347. n_processing_slots++;
  1348. }
  1349. slots_data.push_back(slot_data);
  1350. }
  1351. SRV_DBG("n_idle_slots = %d, n_processing_slots = %d\n", n_idle_slots, n_processing_slots);
  1352. server_task_result res;
  1353. res.id = task.id;
  1354. res.stop = true;
  1355. res.error = false;
  1356. res.data = {
  1357. { "idle", n_idle_slots },
  1358. { "processing", n_processing_slots },
  1359. { "deferred", queue_tasks.queue_tasks_deferred.size() },
  1360. { "t_start", metrics.t_start},
  1361. { "n_prompt_tokens_processed_total", metrics.n_prompt_tokens_processed_total},
  1362. { "t_tokens_generation_total", metrics.t_tokens_generation_total},
  1363. { "n_tokens_predicted_total", metrics.n_tokens_predicted_total},
  1364. { "t_prompt_processing_total", metrics.t_prompt_processing_total},
  1365. { "n_prompt_tokens_processed", metrics.n_prompt_tokens_processed},
  1366. { "t_prompt_processing", metrics.t_prompt_processing},
  1367. { "n_tokens_predicted", metrics.n_tokens_predicted},
  1368. { "t_tokens_generation", metrics.t_tokens_generation},
  1369. { "n_decode_total", metrics.n_decode_total},
  1370. { "n_busy_slots_total", metrics.n_busy_slots_total},
  1371. { "kv_cache_tokens_count", llama_get_kv_cache_token_count(ctx)},
  1372. { "kv_cache_used_cells", llama_get_kv_cache_used_cells(ctx)},
  1373. { "slots", slots_data },
  1374. };
  1375. if (json_value(task.data, "reset_bucket", false)) {
  1376. metrics.reset_bucket();
  1377. }
  1378. queue_results.send(res);
  1379. } break;
  1380. case SERVER_TASK_TYPE_SLOT_SAVE:
  1381. {
  1382. int id_slot = task.data.at("id_slot");
  1383. server_slot * slot = get_slot_by_id(id_slot);
  1384. if (slot == nullptr) {
  1385. send_error(task, "Invalid slot ID", ERROR_TYPE_INVALID_REQUEST);
  1386. break;
  1387. }
  1388. if (slot->is_processing()) {
  1389. // if requested slot is unavailable, we defer this task for processing later
  1390. SRV_DBG("requested slot is unavailable, defer task, id_task = %d\n", task.id);
  1391. queue_tasks.defer(task);
  1392. break;
  1393. }
  1394. const size_t token_count = slot->cache_tokens.size();
  1395. const int64_t t_start = ggml_time_us();
  1396. std::string filename = task.data.at("filename");
  1397. std::string filepath = task.data.at("filepath");
  1398. const size_t nwrite = llama_state_seq_save_file(ctx, filepath.c_str(), slot->id + 1, slot->cache_tokens.data(), token_count);
  1399. const int64_t t_end = ggml_time_us();
  1400. const double t_save_ms = (t_end - t_start) / 1000.0;
  1401. server_task_result result;
  1402. result.id = task.id;
  1403. result.stop = true;
  1404. result.error = false;
  1405. result.data = json {
  1406. { "id_slot", id_slot },
  1407. { "filename", filename },
  1408. { "n_saved", token_count }, // tokens saved
  1409. { "n_written", nwrite }, // bytes written
  1410. { "timings", {
  1411. { "save_ms", t_save_ms }
  1412. } }
  1413. };
  1414. queue_results.send(result);
  1415. } break;
  1416. case SERVER_TASK_TYPE_SLOT_RESTORE:
  1417. {
  1418. int id_slot = task.data.at("id_slot");
  1419. server_slot * slot = get_slot_by_id(id_slot);
  1420. if (slot == nullptr) {
  1421. send_error(task, "Invalid slot ID", ERROR_TYPE_INVALID_REQUEST);
  1422. break;
  1423. }
  1424. if (slot->is_processing()) {
  1425. // if requested slot is unavailable, we defer this task for processing later
  1426. SRV_DBG("requested slot is unavailable, defer task, id_task = %d\n", task.id);
  1427. queue_tasks.defer(task);
  1428. break;
  1429. }
  1430. const int64_t t_start = ggml_time_us();
  1431. std::string filename = task.data.at("filename");
  1432. std::string filepath = task.data.at("filepath");
  1433. slot->cache_tokens.resize(slot->n_ctx);
  1434. size_t token_count = 0;
  1435. size_t nread = llama_state_seq_load_file(ctx, filepath.c_str(), slot->id + 1, slot->cache_tokens.data(), slot->cache_tokens.size(), &token_count);
  1436. if (nread == 0) {
  1437. slot->cache_tokens.resize(0);
  1438. send_error(task, "Unable to restore slot, no available space in KV cache or invalid slot save file", ERROR_TYPE_INVALID_REQUEST);
  1439. break;
  1440. }
  1441. slot->cache_tokens.resize(token_count);
  1442. // TODO: maybe detokenize the slot->cache_tokens instead?
  1443. slot->prompt = string_format("[restored %d tokens from file]", (int) token_count);
  1444. const int64_t t_end = ggml_time_us();
  1445. const double t_restore_ms = (t_end - t_start) / 1000.0;
  1446. server_task_result result;
  1447. result.id = task.id;
  1448. result.stop = true;
  1449. result.error = false;
  1450. result.data = json {
  1451. { "id_slot", id_slot },
  1452. { "filename", filename },
  1453. { "n_restored", token_count }, // tokens restored
  1454. { "n_read", nread }, // bytes read
  1455. { "timings", {
  1456. { "restore_ms", t_restore_ms }
  1457. } }
  1458. };
  1459. queue_results.send(result);
  1460. } break;
  1461. case SERVER_TASK_TYPE_SLOT_ERASE:
  1462. {
  1463. int id_slot = task.data.at("id_slot");
  1464. server_slot * slot = get_slot_by_id(id_slot);
  1465. if (slot == nullptr) {
  1466. send_error(task, "Invalid slot ID", ERROR_TYPE_INVALID_REQUEST);
  1467. break;
  1468. }
  1469. if (slot->is_processing()) {
  1470. // if requested slot is unavailable, we defer this task for processing later
  1471. SRV_DBG("requested slot is unavailable, defer task, id_task = %d\n", task.id);
  1472. queue_tasks.defer(task);
  1473. break;
  1474. }
  1475. // Erase token cache
  1476. const size_t n_erased = slot->cache_tokens.size();
  1477. llama_kv_cache_seq_rm(ctx, slot->id + 1, -1, -1);
  1478. slot->cache_tokens.clear();
  1479. server_task_result result;
  1480. result.id = task.id;
  1481. result.stop = true;
  1482. result.error = false;
  1483. result.data = json {
  1484. { "id_slot", id_slot },
  1485. { "n_erased", n_erased }
  1486. };
  1487. queue_results.send(result);
  1488. } break;
  1489. case SERVER_TASK_TYPE_SET_LORA:
  1490. {
  1491. common_lora_adapters_apply(ctx, loras);
  1492. server_task_result result;
  1493. result.id = task.id;
  1494. result.stop = true;
  1495. result.error = false;
  1496. result.data = json{{ "success", true }};
  1497. queue_results.send(result);
  1498. } break;
  1499. }
  1500. }
  1501. void update_slots() {
  1502. // check if all slots are idle
  1503. {
  1504. bool all_idle = true;
  1505. for (auto & slot : slots) {
  1506. if (slot.is_processing()) {
  1507. all_idle = false;
  1508. break;
  1509. }
  1510. }
  1511. if (all_idle) {
  1512. SRV_INF("%s", "all slots are idle\n");
  1513. if (clean_kv_cache) {
  1514. kv_cache_clear();
  1515. }
  1516. return;
  1517. }
  1518. }
  1519. {
  1520. SRV_DBG("%s", "posting NEXT_RESPONSE\n");
  1521. server_task task;
  1522. task.type = SERVER_TASK_TYPE_NEXT_RESPONSE;
  1523. task.id_target = -1;
  1524. queue_tasks.post(task);
  1525. }
  1526. // apply context-shift if needed
  1527. // TODO: simplify and improve
  1528. for (server_slot & slot : slots) {
  1529. if (slot.is_processing() && slot.n_past + 1 >= slot.n_ctx) {
  1530. if (!params.ctx_shift) {
  1531. // this check is redundant (for good)
  1532. // we should never get here, because generation should already stopped in process_token()
  1533. slot.release();
  1534. send_error(slot, "context shift is disabled", ERROR_TYPE_SERVER);
  1535. continue;
  1536. }
  1537. // Shift context
  1538. const int n_keep = slot.params.n_keep + add_bos_token;
  1539. const int n_left = slot.n_past - n_keep;
  1540. const int n_discard = slot.params.n_discard ? slot.params.n_discard : (n_left / 2);
  1541. SLT_WRN(slot, "slot context shift, n_keep = %d, n_left = %d, n_discard = %d\n", n_keep, n_left, n_discard);
  1542. llama_kv_cache_seq_rm (ctx, slot.id + 1, n_keep , n_keep + n_discard);
  1543. llama_kv_cache_seq_add(ctx, slot.id + 1, n_keep + n_discard, slot.n_past, -n_discard);
  1544. if (slot.params.cache_prompt) {
  1545. for (size_t i = n_keep + n_discard; i < slot.cache_tokens.size(); i++) {
  1546. slot.cache_tokens[i - n_discard] = slot.cache_tokens[i];
  1547. }
  1548. slot.cache_tokens.resize(slot.cache_tokens.size() - n_discard);
  1549. }
  1550. slot.n_past -= n_discard;
  1551. slot.truncated = true;
  1552. }
  1553. }
  1554. // start populating the batch for this iteration
  1555. common_batch_clear(batch);
  1556. // frist, add sampled tokens from any ongoing sequences
  1557. for (auto & slot : slots) {
  1558. if (slot.state != SLOT_STATE_GENERATING) {
  1559. continue;
  1560. }
  1561. slot.i_batch = batch.n_tokens;
  1562. common_batch_add(batch, slot.sampled, slot.n_past, { slot.id + 1 }, true);
  1563. slot.n_past += 1;
  1564. if (slot.params.cache_prompt) {
  1565. slot.cache_tokens.push_back(slot.sampled);
  1566. }
  1567. SLT_DBG(slot, "slot decode token, n_ctx = %d, n_past = %d, n_cache_tokens = %d, truncated = %d\n",
  1568. slot.n_ctx, slot.n_past, (int) slot.cache_tokens.size(), slot.truncated);
  1569. }
  1570. // process in chunks of params.n_batch
  1571. int32_t n_batch = llama_n_batch(ctx);
  1572. int32_t n_ubatch = llama_n_ubatch(ctx);
  1573. // track if this is an embedding or non-embedding batch
  1574. // if we've added sampled tokens above, we are in non-embedding mode
  1575. // -1: none, 0: non-embedding, 1: embedding
  1576. // TODO: make enum
  1577. int32_t batch_type = batch.n_tokens > 0 ? 0 : -1;
  1578. // next, batch any pending prompts without exceeding n_batch
  1579. if (params.cont_batching || batch.n_tokens == 0) {
  1580. for (auto & slot : slots) {
  1581. // this slot still has a prompt to be processed
  1582. if (slot.state == SLOT_STATE_PROCESSING_PROMPT) {
  1583. auto & prompt_tokens = slot.prompt_tokens;
  1584. // we haven't tokenized the prompt yet - do it now:
  1585. if (prompt_tokens.empty()) {
  1586. SLT_INF(slot, "tokenizing prompt, len = %d\n", (int) slot.prompt.size());
  1587. slot.t_start_process_prompt = ggml_time_us();
  1588. slot.t_start_generation = 0;
  1589. switch (slot.cmpl_type) {
  1590. case SERVER_TASK_CMPL_TYPE_NORMAL:
  1591. case SERVER_TASK_CMPL_TYPE_EMBEDDING:
  1592. {
  1593. prompt_tokens = tokenize(slot.prompt, llama_add_bos_token(model), true);
  1594. } break;
  1595. case SERVER_TASK_CMPL_TYPE_RERANK:
  1596. {
  1597. // require slot.prompt to be array of 2 strings
  1598. if (!slot.prompt.is_array() || slot.prompt.size() != 2) {
  1599. SLT_ERR(slot, "%s", "invalid prompt for rerank task\n");
  1600. slot.release();
  1601. send_error(slot, "invalid prompt for rerank task", ERROR_TYPE_INVALID_REQUEST);
  1602. continue;
  1603. }
  1604. // prompt: [BOS]query[EOS][SEP]doc[EOS]
  1605. prompt_tokens.clear();
  1606. prompt_tokens.push_back(llama_token_bos(model));
  1607. {
  1608. const auto part = tokenize(slot.prompt[0], false, false);
  1609. prompt_tokens.insert(prompt_tokens.end(), part.begin(), part.end());
  1610. }
  1611. prompt_tokens.push_back(llama_token_eos(model));
  1612. prompt_tokens.push_back(llama_token_sep(model));
  1613. {
  1614. const auto part = tokenize(slot.prompt[1], false, false);
  1615. prompt_tokens.insert(prompt_tokens.end(), part.begin(), part.end());
  1616. }
  1617. prompt_tokens.push_back(llama_token_eos(model));
  1618. } break;
  1619. case SERVER_TASK_CMPL_TYPE_INFILL:
  1620. {
  1621. // TODO: optimize this block by reducing memory allocations and movement
  1622. // use FIM repo-level pattern:
  1623. // ref: https://arxiv.org/pdf/2409.12186
  1624. //
  1625. // [FIM_REP]myproject
  1626. // [FIM_SEP]filename0
  1627. // extra chunk 0
  1628. // [FIM_SEP]filename1
  1629. // extra chunk 1
  1630. // ...
  1631. // [FIM_SEP]filename
  1632. // [FIM_PRE]prefix[FIM_SUF]suffix[FIM_MID]prompt
  1633. //
  1634. auto tokens_prefix = tokenize(slot.input_prefix, false, false);
  1635. auto tokens_suffix = tokenize(slot.input_suffix, false, false);
  1636. auto tokens_prompt = tokenize(slot.prompt, false, false);
  1637. slot.extra_tokens.clear();
  1638. if (llama_token_fim_rep(model) != LLAMA_TOKEN_NULL) {
  1639. static const auto k_fim_repo = tokenize("myproject\n", false, false);
  1640. slot.extra_tokens.push_back(llama_token_fim_rep(model));
  1641. slot.extra_tokens.insert(slot.extra_tokens.end(), k_fim_repo.begin(), k_fim_repo.end());
  1642. }
  1643. for (const auto & chunk : slot.input_extra) {
  1644. // { "text": string, "filename": string }
  1645. const std::string text = chunk.value("text", "");
  1646. const std::string filename = chunk.value("filename", "tmp");
  1647. if (llama_token_fim_sep(model) != LLAMA_TOKEN_NULL) {
  1648. const auto k_fim_file = tokenize(filename + "\n", false, false);
  1649. slot.extra_tokens.insert(slot.extra_tokens.end(), llama_token_fim_sep(model));
  1650. slot.extra_tokens.insert(slot.extra_tokens.end(), k_fim_file.begin(), k_fim_file.end());
  1651. } else {
  1652. // chunk separator in binary form to avoid confusing the AI
  1653. static const char k_chunk_prefix_str[] = {0x0a, 0x0a, 0x2d, 0x2d, 0x2d, 0x20, 0x73, 0x6e, 0x69, 0x70, 0x70, 0x65, 0x74, 0x20, 0x2d, 0x2d, 0x2d, 0x0a, 0x0a, 0x00};
  1654. static const auto k_chunk_prefix_tokens = tokenize(k_chunk_prefix_str, false, false);
  1655. slot.extra_tokens.insert(slot.extra_tokens.end(), k_chunk_prefix_tokens.begin(), k_chunk_prefix_tokens.end());
  1656. }
  1657. const auto chunk_tokens = tokenize(text, false, false);
  1658. slot.extra_tokens.insert(slot.extra_tokens.end(), chunk_tokens.begin(), chunk_tokens.end());
  1659. }
  1660. if (llama_token_fim_sep(model) != LLAMA_TOKEN_NULL) {
  1661. // TODO: current filename
  1662. static const auto k_fim_file = tokenize("filename\n", false, false);
  1663. slot.extra_tokens.insert(slot.extra_tokens.end(), llama_token_fim_sep(model));
  1664. slot.extra_tokens.insert(slot.extra_tokens.end(), k_fim_file.begin(), k_fim_file.end());
  1665. }
  1666. // for now pick FIM context to fit in a batch (ratio prefix:suffix = 3:1, TODO: configurable?)
  1667. const int n_suffix_take = std::min<int>(tokens_suffix.size(), (n_batch/4));
  1668. const int n_prefix_take = std::min<int>(tokens_prefix.size(), 3*(n_batch/4) - 3);
  1669. // fill the rest of the context with extra chunks
  1670. const int n_extra_take = std::min<int>(std::max<int>(0, slot.n_ctx - (n_batch) - 2*slot.n_predict), slot.extra_tokens.size());
  1671. tokens_prefix.erase(tokens_prefix.begin(), tokens_prefix.begin() + tokens_prefix.size() - n_prefix_take);
  1672. tokens_suffix.resize(n_suffix_take);
  1673. tokens_prefix.insert(tokens_prefix.begin(), llama_token_fim_pre(model));
  1674. tokens_prefix.insert(tokens_prefix.end(), tokens_prompt.begin(), tokens_prompt.end());
  1675. tokens_suffix.insert(tokens_suffix.begin(), llama_token_fim_suf(model));
  1676. auto embd_inp = params.spm_infill ? tokens_suffix : tokens_prefix;
  1677. auto embd_end = params.spm_infill ? tokens_prefix : tokens_suffix;
  1678. if (llama_add_bos_token(model)) {
  1679. embd_inp.insert(embd_inp.begin(), llama_token_bos(model));
  1680. }
  1681. SLT_DBG(slot, "extra: n_ctx = %d, n_extra_take = %d, n_extra = %d\n", slot.n_ctx, n_extra_take, (int) slot.extra_tokens.size());
  1682. // put the extra context before the FIM prefix
  1683. embd_inp.insert(embd_inp.begin(), slot.extra_tokens.end() - n_extra_take, slot.extra_tokens.end());
  1684. embd_inp.insert(embd_inp.end(), embd_end.begin(), embd_end.end());
  1685. embd_inp.push_back(llama_token_fim_mid(model));
  1686. prompt_tokens = std::move(embd_inp);
  1687. } break;
  1688. }
  1689. slot.n_past = 0;
  1690. slot.n_prompt_tokens = prompt_tokens.size();
  1691. SLT_INF(slot, "prompt tokenized, n_ctx_slot = %d, n_keep = %d, n_prompt_tokens = %d\n", slot.n_ctx, slot.params.n_keep, slot.n_prompt_tokens);
  1692. // print prompt tokens (for debugging)
  1693. if (1) {
  1694. // first 16 tokens (avoid flooding logs)
  1695. for (int i = 0; i < std::min<int>(16, prompt_tokens.size()); i++) {
  1696. SLT_DBG(slot, "prompt token %3d: %6d '%s'\n", i, prompt_tokens[i], common_token_to_piece(ctx, prompt_tokens[i]).c_str());
  1697. }
  1698. } else {
  1699. // all
  1700. for (int i = 0; i < (int) prompt_tokens.size(); i++) {
  1701. SLT_DBG(slot, "prompt token %3d: %6d '%s'\n", i, prompt_tokens[i], common_token_to_piece(ctx, prompt_tokens[i]).c_str());
  1702. }
  1703. }
  1704. // empty prompt passed -> release the slot and send empty response
  1705. if (prompt_tokens.empty()) {
  1706. SLT_WRN(slot, "%s", "empty prompt - releasing slot\n");
  1707. slot.release();
  1708. slot.print_timings();
  1709. send_final_response(slot);
  1710. continue;
  1711. }
  1712. if (slot.cmpl_type == SERVER_TASK_CMPL_TYPE_EMBEDDING || slot.cmpl_type == SERVER_TASK_CMPL_TYPE_RERANK) {
  1713. // this prompt is too large to process - discard it
  1714. if (slot.n_prompt_tokens > n_ubatch) {
  1715. slot.release();
  1716. send_error(slot, "input is too large to process. increase the physical batch size", ERROR_TYPE_SERVER);
  1717. continue;
  1718. }
  1719. } else {
  1720. if (!params.ctx_shift) {
  1721. // if context shift is disabled, we make sure prompt size is smaller than KV size
  1722. // TODO: there should be a separate parameter that control prompt truncation
  1723. // context shift should be applied only during the generation phase
  1724. if (slot.n_prompt_tokens >= slot.n_ctx) {
  1725. slot.release();
  1726. send_error(slot, "the request exceeds the available context size. try increasing the context size or enable context shift", ERROR_TYPE_INVALID_REQUEST);
  1727. continue;
  1728. }
  1729. }
  1730. if (slot.params.n_keep < 0) {
  1731. slot.params.n_keep = slot.n_prompt_tokens;
  1732. }
  1733. slot.params.n_keep = std::min(slot.n_ctx - 4, slot.params.n_keep);
  1734. // if input prompt is too big, truncate it
  1735. if (slot.n_prompt_tokens >= slot.n_ctx) {
  1736. const int n_left = slot.n_ctx - slot.params.n_keep;
  1737. const int n_block_size = n_left / 2;
  1738. const int erased_blocks = (slot.n_prompt_tokens - slot.params.n_keep - n_block_size) / n_block_size;
  1739. std::vector<llama_token> new_tokens(
  1740. prompt_tokens.begin(),
  1741. prompt_tokens.begin() + slot.params.n_keep);
  1742. new_tokens.insert(
  1743. new_tokens.end(),
  1744. prompt_tokens.begin() + slot.params.n_keep + erased_blocks * n_block_size,
  1745. prompt_tokens.end());
  1746. prompt_tokens = std::move(new_tokens);
  1747. slot.truncated = true;
  1748. slot.n_prompt_tokens = prompt_tokens.size();
  1749. SLT_WRN(slot, "input truncated, n_ctx = %d, n_keep = %d, n_left = %d, n_prompt_tokens = %d\n", slot.n_ctx, slot.params.n_keep, n_left, slot.n_prompt_tokens);
  1750. GGML_ASSERT(slot.n_prompt_tokens < slot.n_ctx);
  1751. }
  1752. common_sampler_reset(slot.smpl);
  1753. if (slot.params.cache_prompt) {
  1754. // reuse any previously computed tokens that are common with the new prompt
  1755. slot.n_past = longest_common_prefix(slot.cache_tokens, prompt_tokens);
  1756. // push the prompt into the sampling context (do not apply grammar)
  1757. for (int i = 0; i < slot.n_past; ++i) {
  1758. common_sampler_accept(slot.smpl, slot.cache_tokens[i], false);
  1759. }
  1760. // reuse chunks from the cached prompt by shifting their KV cache in the new position
  1761. if (params.n_cache_reuse > 0) {
  1762. size_t head_c = slot.n_past; // cache
  1763. size_t head_p = slot.n_past; // current prompt
  1764. SLT_DBG(slot, "trying to reuse chunks with size > %d, slot.n_past = %d\n", params.n_cache_reuse, slot.n_past);
  1765. while (head_c < slot.cache_tokens.size() &&
  1766. head_p < prompt_tokens.size()) {
  1767. size_t n_match = 0;
  1768. while (head_c + n_match < slot.cache_tokens.size() &&
  1769. head_p + n_match < prompt_tokens.size() &&
  1770. slot.cache_tokens[head_c + n_match] == prompt_tokens[head_p + n_match]) {
  1771. n_match++;
  1772. }
  1773. if (n_match >= (size_t) params.n_cache_reuse) {
  1774. SLT_INF(slot, "reusing chunk with size %zu, shifting KV cache [%zu, %zu) -> [%zu, %zu)\n", n_match, head_c, head_c + n_match, head_p, head_p + n_match);
  1775. //for (size_t i = head_p; i < head_p + n_match; i++) {
  1776. // SLT_DBG(slot, "cache token %3zu: %6d '%s'\n", i, prompt_tokens[i], common_token_to_piece(ctx, prompt_tokens[i]).c_str());
  1777. //}
  1778. const int64_t kv_shift = (int64_t) head_p - (int64_t) head_c;
  1779. llama_kv_cache_seq_rm (ctx, slot.id + 1, head_p, head_c);
  1780. llama_kv_cache_seq_add(ctx, slot.id + 1, head_c, -1, kv_shift);
  1781. for (size_t i = 0; i < n_match; i++) {
  1782. slot.cache_tokens[head_p + i] = slot.cache_tokens[head_c + i];
  1783. common_sampler_accept(slot.smpl, slot.cache_tokens[head_p + i], false);
  1784. slot.n_past++;
  1785. }
  1786. head_c += n_match;
  1787. head_p += n_match;
  1788. } else {
  1789. head_c += 1;
  1790. }
  1791. }
  1792. SLT_DBG(slot, "after context reuse, new slot.n_past = %d\n", slot.n_past);
  1793. }
  1794. }
  1795. }
  1796. if (slot.n_past == slot.n_prompt_tokens && slot.n_past > 0) {
  1797. // we have to evaluate at least 1 token to generate logits.
  1798. SLT_WRN(slot, "need to evaluate at least 1 token to generate logits, n_past = %d, n_prompt_tokens = %d\n", slot.n_past, slot.n_prompt_tokens);
  1799. slot.n_past--;
  1800. }
  1801. slot.n_prompt_tokens_processed = 0;
  1802. }
  1803. // non-causal tasks require to fit the entire prompt in the physical batch
  1804. if (slot.cmpl_type == SERVER_TASK_CMPL_TYPE_EMBEDDING || slot.cmpl_type == SERVER_TASK_CMPL_TYPE_RERANK) {
  1805. // cannot fit the prompt in the current batch - will try next iter
  1806. if (batch.n_tokens + slot.n_prompt_tokens > n_batch) {
  1807. continue;
  1808. }
  1809. }
  1810. // check that we are in the right batch_type, if not defer the slot
  1811. const bool slot_type =
  1812. slot.cmpl_type == SERVER_TASK_CMPL_TYPE_EMBEDDING ||
  1813. slot.cmpl_type == SERVER_TASK_CMPL_TYPE_RERANK ? 1 : 0;
  1814. if (batch_type == -1) {
  1815. batch_type = slot_type;
  1816. } else if (batch_type != slot_type) {
  1817. continue;
  1818. }
  1819. // keep only the common part
  1820. if (!llama_kv_cache_seq_rm(ctx, slot.id + 1, slot.n_past, -1)) {
  1821. // could not partially delete (likely using a non-Transformer model)
  1822. llama_kv_cache_seq_rm(ctx, slot.id + 1, -1, -1);
  1823. // there is no common part left
  1824. slot.n_past = 0;
  1825. common_sampler_reset(slot.smpl);
  1826. }
  1827. SLT_INF(slot, "kv cache rm [%d, end)\n", slot.n_past);
  1828. // remove the non-common part from the cache
  1829. slot.cache_tokens.resize(slot.n_past);
  1830. // add prompt tokens for processing in the current batch
  1831. while (slot.n_past < slot.n_prompt_tokens && batch.n_tokens < n_batch) {
  1832. common_batch_add(batch, prompt_tokens[slot.n_past], slot.n_past, { slot.id + 1 }, false);
  1833. if (slot.params.cache_prompt) {
  1834. slot.cache_tokens.push_back(prompt_tokens[slot.n_past]);
  1835. }
  1836. slot.n_prompt_tokens_processed++;
  1837. slot.n_past++;
  1838. }
  1839. SLT_INF(slot, "prompt processing progress, n_past = %d, n_tokens = %d, progress = %f\n", slot.n_past, batch.n_tokens, (float) slot.n_prompt_tokens_processed / slot.n_prompt_tokens);
  1840. // entire prompt has been processed
  1841. if (slot.n_past == slot.n_prompt_tokens) {
  1842. slot.state = SLOT_STATE_DONE_PROMPT;
  1843. GGML_ASSERT(batch.n_tokens > 0);
  1844. // extract the logits only for the last token
  1845. batch.logits[batch.n_tokens - 1] = true;
  1846. slot.n_decoded = 0;
  1847. slot.i_batch = batch.n_tokens - 1;
  1848. SLT_INF(slot, "prompt done, n_past = %d, n_tokens = %d\n", slot.n_past, batch.n_tokens);
  1849. }
  1850. }
  1851. if (batch.n_tokens >= n_batch) {
  1852. break;
  1853. }
  1854. }
  1855. }
  1856. if (batch.n_tokens == 0) {
  1857. SRV_WRN("%s", "no tokens to decode\n");
  1858. return;
  1859. }
  1860. SRV_DBG("decoding batch, n_tokens = %d\n", batch.n_tokens);
  1861. // make sure we're in the right embedding mode
  1862. llama_set_embeddings(ctx, batch_type == 1);
  1863. // process the created batch of tokens
  1864. for (int32_t i = 0; i < batch.n_tokens; i += n_batch) {
  1865. const int32_t n_tokens = std::min(n_batch, batch.n_tokens - i);
  1866. llama_batch batch_view = {
  1867. n_tokens,
  1868. batch.token + i,
  1869. nullptr,
  1870. batch.pos + i,
  1871. batch.n_seq_id + i,
  1872. batch.seq_id + i,
  1873. batch.logits + i,
  1874. 0, 0, 0, // unused
  1875. };
  1876. const int ret = llama_decode(ctx, batch_view);
  1877. metrics.on_decoded(slots);
  1878. if (ret != 0) {
  1879. if (n_batch == 1 || ret < 0) {
  1880. // if you get here, it means the KV cache is full - try increasing it via the context size
  1881. SRV_ERR("failed to decode the batch: KV cache is full - try increasing it via the context size, i = %d, n_batch = %d, ret = %d\n", i, n_batch, ret);
  1882. for (auto & slot : slots) {
  1883. slot.release();
  1884. send_error(slot, "Input prompt is too big compared to KV size. Please try increasing KV size.");
  1885. }
  1886. break; // break loop of n_batch
  1887. }
  1888. // retry with half the batch size to try to find a free slot in the KV cache
  1889. n_batch /= 2;
  1890. i -= n_batch;
  1891. SRV_WRN("failed to find free space in the KV cache, retrying with smaller batch size - try increasing it via the context size or enable defragmentation, i = %d, n_batch = %d, ret = %d\n", i, n_batch, ret);
  1892. continue; // continue loop of n_batch
  1893. }
  1894. for (auto & slot : slots) {
  1895. if (slot.i_batch < (int) i || slot.i_batch >= (int) (i + n_tokens)) {
  1896. continue; // continue loop of slots
  1897. }
  1898. if (slot.state == SLOT_STATE_DONE_PROMPT) {
  1899. if (slot.cmpl_type == SERVER_TASK_CMPL_TYPE_EMBEDDING) {
  1900. // prompt evaluated for embedding
  1901. send_embedding(slot, batch_view);
  1902. slot.release();
  1903. slot.i_batch = -1;
  1904. continue; // continue loop of slots
  1905. }
  1906. if (slot.cmpl_type == SERVER_TASK_CMPL_TYPE_RERANK) {
  1907. send_rerank(slot, batch_view);
  1908. slot.release();
  1909. slot.i_batch = -1;
  1910. continue; // continue loop of slots
  1911. }
  1912. // prompt evaluated for next-token prediction
  1913. slot.state = SLOT_STATE_GENERATING;
  1914. } else if (slot.state != SLOT_STATE_GENERATING) {
  1915. continue; // continue loop of slots
  1916. }
  1917. completion_token_output result;
  1918. const llama_token id = common_sampler_sample(slot.smpl, ctx, slot.i_batch - i);
  1919. common_sampler_accept(slot.smpl, id, true);
  1920. slot.n_decoded += 1;
  1921. if (slot.n_decoded == 1) {
  1922. slot.t_start_generation = ggml_time_us();
  1923. slot.t_prompt_processing = (slot.t_start_generation - slot.t_start_process_prompt) / 1e3;
  1924. metrics.on_prompt_eval(slot);
  1925. }
  1926. result.tok = id;
  1927. const auto * cur_p = common_sampler_get_candidates(slot.smpl);
  1928. for (size_t i = 0; i < (size_t) slot.sparams.n_probs; ++i) {
  1929. result.probs.push_back({
  1930. cur_p->data[i].id,
  1931. i >= cur_p->size ? 0.0f : cur_p->data[i].p,
  1932. });
  1933. }
  1934. if (!process_token(result, slot)) {
  1935. // release slot because of stop condition
  1936. slot.release();
  1937. slot.print_timings();
  1938. send_final_response(slot);
  1939. metrics.on_prediction(slot);
  1940. }
  1941. slot.i_batch = -1;
  1942. }
  1943. }
  1944. SRV_DBG("%s", "run slots completed\n");
  1945. }
  1946. json model_meta() const {
  1947. return json {
  1948. {"vocab_type", llama_vocab_type (model)},
  1949. {"n_vocab", llama_n_vocab (model)},
  1950. {"n_ctx_train", llama_n_ctx_train (model)},
  1951. {"n_embd", llama_n_embd (model)},
  1952. {"n_params", llama_model_n_params(model)},
  1953. {"size", llama_model_size (model)},
  1954. };
  1955. }
  1956. };
  1957. static void log_server_request(const httplib::Request & req, const httplib::Response & res) {
  1958. // skip GH copilot requests when using default port
  1959. if (req.path == "/v1/health" || req.path == "/v1/completions") {
  1960. return;
  1961. }
  1962. LOG_INF("request: %s %s %s %d\n", req.method.c_str(), req.path.c_str(), req.remote_addr.c_str(), res.status);
  1963. LOG_DBG("request: %s\n", req.body.c_str());
  1964. LOG_DBG("response: %s\n", res.body.c_str());
  1965. }
  1966. std::function<void(int)> shutdown_handler;
  1967. std::atomic_flag is_terminating = ATOMIC_FLAG_INIT;
  1968. inline void signal_handler(int signal) {
  1969. if (is_terminating.test_and_set()) {
  1970. // in case it hangs, we can force terminate the server by hitting Ctrl+C twice
  1971. // this is for better developer experience, we can remove when the server is stable enough
  1972. fprintf(stderr, "Received second interrupt, terminating immediately.\n");
  1973. exit(1);
  1974. }
  1975. shutdown_handler(signal);
  1976. }
  1977. int main(int argc, char ** argv) {
  1978. // own arguments required by this example
  1979. common_params params;
  1980. if (!common_params_parse(argc, argv, params, LLAMA_EXAMPLE_SERVER)) {
  1981. return 1;
  1982. }
  1983. common_init();
  1984. // enabling this will output extra debug information in the HTTP responses from the server
  1985. // see format_final_response_oaicompat()
  1986. const bool verbose = params.verbosity > 9;
  1987. // struct that contains llama context and inference
  1988. server_context ctx_server;
  1989. if (params.model_alias == "unknown") {
  1990. params.model_alias = params.model;
  1991. }
  1992. llama_backend_init();
  1993. llama_numa_init(params.numa);
  1994. LOG_INF("system info: n_threads = %d, n_threads_batch = %d, total_threads = %d\n", params.cpuparams.n_threads, params.cpuparams_batch.n_threads, std::thread::hardware_concurrency());
  1995. LOG_INF("\n");
  1996. LOG_INF("%s\n", common_params_get_system_info(params).c_str());
  1997. LOG_INF("\n");
  1998. std::unique_ptr<httplib::Server> svr;
  1999. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  2000. if (params.ssl_file_key != "" && params.ssl_file_cert != "") {
  2001. LOG_INF("Running with SSL: key = %s, cert = %s\n", params.ssl_file_key.c_str(), params.ssl_file_cert.c_str());
  2002. svr.reset(
  2003. new httplib::SSLServer(params.ssl_file_cert.c_str(), params.ssl_file_key.c_str())
  2004. );
  2005. } else {
  2006. LOG_INF("Running without SSL\n");
  2007. svr.reset(new httplib::Server());
  2008. }
  2009. #else
  2010. if (params.ssl_file_key != "" && params.ssl_file_cert != "") {
  2011. LOG_ERR("Server is built without SSL support\n");
  2012. return 1;
  2013. }
  2014. svr.reset(new httplib::Server());
  2015. #endif
  2016. std::atomic<server_state> state{SERVER_STATE_LOADING_MODEL};
  2017. svr->set_default_headers({{"Server", "llama.cpp"}});
  2018. // CORS preflight
  2019. svr->Options(R"(.*)", [](const httplib::Request &, httplib::Response & res) {
  2020. // Access-Control-Allow-Origin is already set by middleware
  2021. res.set_header("Access-Control-Allow-Credentials", "true");
  2022. res.set_header("Access-Control-Allow-Methods", "POST");
  2023. res.set_header("Access-Control-Allow-Headers", "*");
  2024. return res.set_content("", "text/html"); // blank response, no data
  2025. });
  2026. svr->set_logger(log_server_request);
  2027. auto res_error = [](httplib::Response & res, const json & error_data) {
  2028. json final_response {{"error", error_data}};
  2029. res.set_content(final_response.dump(-1, ' ', false, json::error_handler_t::replace), MIMETYPE_JSON);
  2030. res.status = json_value(error_data, "code", 500);
  2031. };
  2032. auto res_ok = [](httplib::Response & res, const json & data) {
  2033. res.set_content(data.dump(-1, ' ', false, json::error_handler_t::replace), MIMETYPE_JSON);
  2034. res.status = 200;
  2035. };
  2036. svr->set_exception_handler([&res_error](const httplib::Request &, httplib::Response & res, std::exception_ptr ep) {
  2037. std::string message;
  2038. try {
  2039. std::rethrow_exception(ep);
  2040. } catch (std::exception & e) {
  2041. message = e.what();
  2042. } catch (...) {
  2043. message = "Unknown Exception";
  2044. }
  2045. json formatted_error = format_error_response(message, ERROR_TYPE_SERVER);
  2046. LOG_WRN("got exception: %s\n", formatted_error.dump().c_str());
  2047. res_error(res, formatted_error);
  2048. });
  2049. svr->set_error_handler([&res_error](const httplib::Request &, httplib::Response & res) {
  2050. if (res.status == 404) {
  2051. res_error(res, format_error_response("File Not Found", ERROR_TYPE_NOT_FOUND));
  2052. }
  2053. // for other error codes, we skip processing here because it's already done by res_error()
  2054. });
  2055. // set timeouts and change hostname and port
  2056. svr->set_read_timeout (params.timeout_read);
  2057. svr->set_write_timeout(params.timeout_write);
  2058. std::unordered_map<std::string, std::string> log_data;
  2059. log_data["hostname"] = params.hostname;
  2060. log_data["port"] = std::to_string(params.port);
  2061. if (params.api_keys.size() == 1) {
  2062. auto key = params.api_keys[0];
  2063. log_data["api_key"] = "api_key: ****" + key.substr(std::max((int)(key.length() - 4), 0));
  2064. } else if (params.api_keys.size() > 1) {
  2065. log_data["api_key"] = "api_key: " + std::to_string(params.api_keys.size()) + " keys loaded";
  2066. }
  2067. // Necessary similarity of prompt for slot selection
  2068. ctx_server.slot_prompt_similarity = params.slot_prompt_similarity;
  2069. //
  2070. // Middlewares
  2071. //
  2072. auto middleware_validate_api_key = [&params, &res_error](const httplib::Request & req, httplib::Response & res) {
  2073. static const std::unordered_set<std::string> public_endpoints = {
  2074. "/health",
  2075. "/models",
  2076. "/v1/models",
  2077. };
  2078. // If API key is not set, skip validation
  2079. if (params.api_keys.empty()) {
  2080. return true;
  2081. }
  2082. // If path is public, skip validation
  2083. if (public_endpoints.find(req.path) != public_endpoints.end()) {
  2084. return true;
  2085. }
  2086. // Check for API key in the header
  2087. auto auth_header = req.get_header_value("Authorization");
  2088. std::string prefix = "Bearer ";
  2089. if (auth_header.substr(0, prefix.size()) == prefix) {
  2090. std::string received_api_key = auth_header.substr(prefix.size());
  2091. if (std::find(params.api_keys.begin(), params.api_keys.end(), received_api_key) != params.api_keys.end()) {
  2092. return true; // API key is valid
  2093. }
  2094. }
  2095. // API key is invalid or not provided
  2096. res_error(res, format_error_response("Invalid API Key", ERROR_TYPE_AUTHENTICATION));
  2097. LOG_WRN("Unauthorized: Invalid API Key\n");
  2098. return false;
  2099. };
  2100. auto middleware_server_state = [&res_error, &state](const httplib::Request & req, httplib::Response & res) {
  2101. server_state current_state = state.load();
  2102. if (current_state == SERVER_STATE_LOADING_MODEL) {
  2103. auto tmp = string_split(req.path, '.');
  2104. if (req.path == "/" || tmp.back() == "html") {
  2105. res.set_content(reinterpret_cast<const char*>(loading_html), loading_html_len, "text/html; charset=utf-8");
  2106. res.status = 503;
  2107. } else {
  2108. res_error(res, format_error_response("Loading model", ERROR_TYPE_UNAVAILABLE));
  2109. }
  2110. return false;
  2111. }
  2112. return true;
  2113. };
  2114. // register server middlewares
  2115. svr->set_pre_routing_handler([&middleware_validate_api_key, &middleware_server_state](const httplib::Request & req, httplib::Response & res) {
  2116. res.set_header("Access-Control-Allow-Origin", req.get_header_value("Origin"));
  2117. if (!middleware_server_state(req, res)) {
  2118. return httplib::Server::HandlerResponse::Handled;
  2119. }
  2120. if (!middleware_validate_api_key(req, res)) {
  2121. return httplib::Server::HandlerResponse::Handled;
  2122. }
  2123. return httplib::Server::HandlerResponse::Unhandled;
  2124. });
  2125. //
  2126. // Route handlers (or controllers)
  2127. //
  2128. const auto handle_health = [&](const httplib::Request &, httplib::Response & res) {
  2129. // error and loading states are handled by middleware
  2130. json health = {{"status", "ok"}};
  2131. res_ok(res, health);
  2132. };
  2133. const auto handle_slots = [&](const httplib::Request & req, httplib::Response & res) {
  2134. if (!params.endpoint_slots) {
  2135. res_error(res, format_error_response("This server does not support slots endpoint. Start it with `--slots`", ERROR_TYPE_NOT_SUPPORTED));
  2136. return;
  2137. }
  2138. // request slots data using task queue
  2139. server_task task;
  2140. task.id = ctx_server.queue_tasks.get_new_id();
  2141. task.type = SERVER_TASK_TYPE_METRICS;
  2142. ctx_server.queue_results.add_waiting_task_id(task.id);
  2143. ctx_server.queue_tasks.post(task, true); // high-priority task
  2144. // get the result
  2145. server_task_result result = ctx_server.queue_results.recv(task.id);
  2146. ctx_server.queue_results.remove_waiting_task_id(task.id);
  2147. // optionally return "fail_on_no_slot" error
  2148. const int n_idle_slots = result.data.at("idle");
  2149. if (req.has_param("fail_on_no_slot")) {
  2150. if (n_idle_slots == 0) {
  2151. res_error(res, format_error_response("no slot available", ERROR_TYPE_UNAVAILABLE));
  2152. return;
  2153. }
  2154. }
  2155. res_ok(res, result.data.at("slots"));
  2156. };
  2157. const auto handle_metrics = [&](const httplib::Request &, httplib::Response & res) {
  2158. if (!params.endpoint_metrics) {
  2159. res_error(res, format_error_response("This server does not support metrics endpoint. Start it with `--metrics`", ERROR_TYPE_NOT_SUPPORTED));
  2160. return;
  2161. }
  2162. // request slots data using task queue
  2163. server_task task;
  2164. task.id = ctx_server.queue_tasks.get_new_id();
  2165. task.id_target = -1;
  2166. task.type = SERVER_TASK_TYPE_METRICS;
  2167. task.data.push_back({{"reset_bucket", true}});
  2168. ctx_server.queue_results.add_waiting_task_id(task.id);
  2169. ctx_server.queue_tasks.post(task, true); // high-priority task
  2170. // get the result
  2171. server_task_result result = ctx_server.queue_results.recv(task.id);
  2172. ctx_server.queue_results.remove_waiting_task_id(task.id);
  2173. json data = result.data;
  2174. const uint64_t n_prompt_tokens_processed = data.at("n_prompt_tokens_processed");
  2175. const uint64_t t_prompt_processing = data.at("t_prompt_processing");
  2176. const uint64_t n_tokens_predicted = data.at("n_tokens_predicted");
  2177. const uint64_t t_tokens_generation = data.at("t_tokens_generation");
  2178. const uint64_t n_decode_total = data.at("n_decode_total");
  2179. const uint64_t n_busy_slots_total = data.at("n_busy_slots_total");
  2180. const int32_t kv_cache_used_cells = data.at("kv_cache_used_cells");
  2181. // metrics definition: https://prometheus.io/docs/practices/naming/#metric-names
  2182. json all_metrics_def = json {
  2183. {"counter", {{
  2184. {"name", "prompt_tokens_total"},
  2185. {"help", "Number of prompt tokens processed."},
  2186. {"value", (uint64_t) data.at("n_prompt_tokens_processed_total")}
  2187. }, {
  2188. {"name", "prompt_seconds_total"},
  2189. {"help", "Prompt process time"},
  2190. {"value", (uint64_t) data.at("t_prompt_processing_total") / 1.e3}
  2191. }, {
  2192. {"name", "tokens_predicted_total"},
  2193. {"help", "Number of generation tokens processed."},
  2194. {"value", (uint64_t) data.at("n_tokens_predicted_total")}
  2195. }, {
  2196. {"name", "tokens_predicted_seconds_total"},
  2197. {"help", "Predict process time"},
  2198. {"value", (uint64_t) data.at("t_tokens_generation_total") / 1.e3}
  2199. }, {
  2200. {"name", "n_decode_total"},
  2201. {"help", "Total number of llama_decode() calls"},
  2202. {"value", n_decode_total}
  2203. }, {
  2204. {"name", "n_busy_slots_per_decode"},
  2205. {"help", "Average number of busy slots per llama_decode() call"},
  2206. {"value", (float) n_busy_slots_total / (float) n_decode_total}
  2207. }}},
  2208. {"gauge", {{
  2209. {"name", "prompt_tokens_seconds"},
  2210. {"help", "Average prompt throughput in tokens/s."},
  2211. {"value", n_prompt_tokens_processed ? 1.e3 / t_prompt_processing * n_prompt_tokens_processed : 0.}
  2212. },{
  2213. {"name", "predicted_tokens_seconds"},
  2214. {"help", "Average generation throughput in tokens/s."},
  2215. {"value", n_tokens_predicted ? 1.e3 / t_tokens_generation * n_tokens_predicted : 0.}
  2216. },{
  2217. {"name", "kv_cache_usage_ratio"},
  2218. {"help", "KV-cache usage. 1 means 100 percent usage."},
  2219. {"value", 1. * kv_cache_used_cells / params.n_ctx}
  2220. },{
  2221. {"name", "kv_cache_tokens"},
  2222. {"help", "KV-cache tokens."},
  2223. {"value", (uint64_t) data.at("kv_cache_tokens_count")}
  2224. },{
  2225. {"name", "requests_processing"},
  2226. {"help", "Number of request processing."},
  2227. {"value", (uint64_t) data.at("processing")}
  2228. },{
  2229. {"name", "requests_deferred"},
  2230. {"help", "Number of request deferred."},
  2231. {"value", (uint64_t) data.at("deferred")}
  2232. }}}
  2233. };
  2234. std::stringstream prometheus;
  2235. for (const auto & el : all_metrics_def.items()) {
  2236. const auto & type = el.key();
  2237. const auto & metrics_def = el.value();
  2238. for (const auto & metric_def : metrics_def) {
  2239. const std::string name = metric_def.at("name");
  2240. const std::string help = metric_def.at("help");
  2241. auto value = json_value(metric_def, "value", 0.);
  2242. prometheus << "# HELP llamacpp:" << name << " " << help << "\n"
  2243. << "# TYPE llamacpp:" << name << " " << type << "\n"
  2244. << "llamacpp:" << name << " " << value << "\n";
  2245. }
  2246. }
  2247. const int64_t t_start = data.at("t_start");
  2248. res.set_header("Process-Start-Time-Unix", std::to_string(t_start));
  2249. res.set_content(prometheus.str(), "text/plain; version=0.0.4");
  2250. res.status = 200; // HTTP OK
  2251. };
  2252. const auto handle_slots_save = [&ctx_server, &res_error, &res_ok, &params](const httplib::Request & req, httplib::Response & res, int id_slot) {
  2253. json request_data = json::parse(req.body);
  2254. std::string filename = request_data.at("filename");
  2255. if (!fs_validate_filename(filename)) {
  2256. res_error(res, format_error_response("Invalid filename", ERROR_TYPE_INVALID_REQUEST));
  2257. return;
  2258. }
  2259. std::string filepath = params.slot_save_path + filename;
  2260. server_task task;
  2261. task.type = SERVER_TASK_TYPE_SLOT_SAVE;
  2262. task.data = {
  2263. { "id_slot", id_slot },
  2264. { "filename", filename },
  2265. { "filepath", filepath },
  2266. };
  2267. const int id_task = ctx_server.queue_tasks.post(task);
  2268. ctx_server.queue_results.add_waiting_task_id(id_task);
  2269. server_task_result result = ctx_server.queue_results.recv(id_task);
  2270. ctx_server.queue_results.remove_waiting_task_id(id_task);
  2271. if (result.error) {
  2272. res_error(res, result.data);
  2273. } else {
  2274. res_ok(res, result.data);
  2275. }
  2276. };
  2277. const auto handle_slots_restore = [&ctx_server, &res_error, &res_ok, &params](const httplib::Request & req, httplib::Response & res, int id_slot) {
  2278. json request_data = json::parse(req.body);
  2279. std::string filename = request_data.at("filename");
  2280. if (!fs_validate_filename(filename)) {
  2281. res_error(res, format_error_response("Invalid filename", ERROR_TYPE_INVALID_REQUEST));
  2282. return;
  2283. }
  2284. std::string filepath = params.slot_save_path + filename;
  2285. server_task task;
  2286. task.type = SERVER_TASK_TYPE_SLOT_RESTORE;
  2287. task.data = {
  2288. { "id_slot", id_slot },
  2289. { "filename", filename },
  2290. { "filepath", filepath },
  2291. };
  2292. const int id_task = ctx_server.queue_tasks.post(task);
  2293. ctx_server.queue_results.add_waiting_task_id(id_task);
  2294. server_task_result result = ctx_server.queue_results.recv(id_task);
  2295. ctx_server.queue_results.remove_waiting_task_id(id_task);
  2296. if (result.error) {
  2297. res_error(res, result.data);
  2298. } else {
  2299. res_ok(res, result.data);
  2300. }
  2301. };
  2302. const auto handle_slots_erase = [&ctx_server, &res_error, &res_ok](const httplib::Request & /* req */, httplib::Response & res, int id_slot) {
  2303. server_task task;
  2304. task.type = SERVER_TASK_TYPE_SLOT_ERASE;
  2305. task.data = {
  2306. { "id_slot", id_slot },
  2307. };
  2308. const int id_task = ctx_server.queue_tasks.post(task);
  2309. ctx_server.queue_results.add_waiting_task_id(id_task);
  2310. server_task_result result = ctx_server.queue_results.recv(id_task);
  2311. ctx_server.queue_results.remove_waiting_task_id(id_task);
  2312. if (result.error) {
  2313. res_error(res, result.data);
  2314. } else {
  2315. res_ok(res, result.data);
  2316. }
  2317. };
  2318. const auto handle_slots_action = [&params, &res_error, &handle_slots_save, &handle_slots_restore, &handle_slots_erase](const httplib::Request & req, httplib::Response & res) {
  2319. if (params.slot_save_path.empty()) {
  2320. res_error(res, format_error_response("This server does not support slots action. Start it with `--slot-save-path`", ERROR_TYPE_NOT_SUPPORTED));
  2321. return;
  2322. }
  2323. std::string id_slot_str = req.path_params.at("id_slot");
  2324. int id_slot;
  2325. try {
  2326. id_slot = std::stoi(id_slot_str);
  2327. } catch (const std::exception &) {
  2328. res_error(res, format_error_response("Invalid slot ID", ERROR_TYPE_INVALID_REQUEST));
  2329. return;
  2330. }
  2331. std::string action = req.get_param_value("action");
  2332. if (action == "save") {
  2333. handle_slots_save(req, res, id_slot);
  2334. } else if (action == "restore") {
  2335. handle_slots_restore(req, res, id_slot);
  2336. } else if (action == "erase") {
  2337. handle_slots_erase(req, res, id_slot);
  2338. } else {
  2339. res_error(res, format_error_response("Invalid action", ERROR_TYPE_INVALID_REQUEST));
  2340. }
  2341. };
  2342. const auto handle_props = [&ctx_server, &res_ok](const httplib::Request &, httplib::Response & res) {
  2343. json data = {
  2344. { "default_generation_settings", ctx_server.default_generation_settings_for_props },
  2345. { "total_slots", ctx_server.params.n_parallel },
  2346. { "chat_template", llama_get_chat_template(ctx_server.model) },
  2347. };
  2348. res_ok(res, data);
  2349. };
  2350. const auto handle_props_change = [&ctx_server, &res_error, &res_ok](const httplib::Request & req, httplib::Response & res) {
  2351. if (!ctx_server.params.endpoint_props) {
  2352. res_error(res, format_error_response("This server does not support changing global properties. Start it with `--props`", ERROR_TYPE_NOT_SUPPORTED));
  2353. return;
  2354. }
  2355. json data = json::parse(req.body);
  2356. // update any props here
  2357. res_ok(res, {{ "success", true }});
  2358. };
  2359. const auto handle_completions_generic = [&ctx_server, &res_error, &res_ok](server_task_cmpl_type cmpl_type, json & data, httplib::Response & res) {
  2360. if (ctx_server.params.embedding || ctx_server.params.reranking) {
  2361. res_error(res, format_error_response("This server does not support completions. Start it without `--embeddings` or `--reranking`", ERROR_TYPE_NOT_SUPPORTED));
  2362. return;
  2363. }
  2364. std::vector<server_task> tasks = ctx_server.create_tasks_cmpl(data, cmpl_type);
  2365. ctx_server.queue_results.add_waiting_tasks(tasks);
  2366. ctx_server.queue_tasks.post(tasks);
  2367. bool stream = json_value(data, "stream", false);
  2368. const auto task_ids = server_task::get_list_id(tasks);
  2369. if (!stream) {
  2370. ctx_server.receive_cmpl_results(task_ids, [&](std::vector<server_task_result> & results) {
  2371. if (results.size() == 1) {
  2372. // single result
  2373. res_ok(res, results[0].data);
  2374. } else {
  2375. // multiple results (multitask)
  2376. json arr = json::array();
  2377. for (const auto & res : results) {
  2378. arr.push_back(res.data);
  2379. }
  2380. res_ok(res, arr);
  2381. }
  2382. }, [&](const json & error_data) {
  2383. res_error(res, error_data);
  2384. });
  2385. ctx_server.queue_results.remove_waiting_task_ids(task_ids);
  2386. } else {
  2387. const auto chunked_content_provider = [task_ids, &ctx_server](size_t, httplib::DataSink & sink) {
  2388. ctx_server.receive_cmpl_results_stream(task_ids, [&](const server_task_result & result) -> bool {
  2389. return server_sent_event(sink, "data", result.data);
  2390. }, [&](const json & error_data) {
  2391. server_sent_event(sink, "error", error_data);
  2392. });
  2393. sink.done();
  2394. return false;
  2395. };
  2396. auto on_complete = [task_ids, &ctx_server] (bool) {
  2397. ctx_server.queue_results.remove_waiting_task_ids(task_ids);
  2398. };
  2399. res.set_chunked_content_provider("text/event-stream", chunked_content_provider, on_complete);
  2400. }
  2401. };
  2402. const auto handle_completions = [&handle_completions_generic](const httplib::Request & req, httplib::Response & res) {
  2403. json data = json::parse(req.body);
  2404. return handle_completions_generic(SERVER_TASK_CMPL_TYPE_NORMAL, data, res);
  2405. };
  2406. const auto handle_infill = [&ctx_server, &res_error, &handle_completions_generic](const httplib::Request & req, httplib::Response & res) {
  2407. std::string err;
  2408. if (llama_token_fim_pre(ctx_server.model) == LLAMA_TOKEN_NULL) {
  2409. err += "prefix token is missing. ";
  2410. }
  2411. if (llama_token_fim_suf(ctx_server.model) == LLAMA_TOKEN_NULL) {
  2412. err += "suffix token is missing. ";
  2413. }
  2414. if (llama_token_fim_mid(ctx_server.model) == LLAMA_TOKEN_NULL) {
  2415. err += "middle token is missing. ";
  2416. }
  2417. if (!err.empty()) {
  2418. res_error(res, format_error_response(string_format("Infill is not supported by this model: %s", err.c_str()), ERROR_TYPE_NOT_SUPPORTED));
  2419. return;
  2420. }
  2421. json data = json::parse(req.body);
  2422. return handle_completions_generic(SERVER_TASK_CMPL_TYPE_INFILL, data, res);
  2423. };
  2424. // TODO: maybe merge this function with "handle_completions_generic"
  2425. const auto handle_chat_completions = [&ctx_server, &params, &res_error, &res_ok, verbose](const httplib::Request & req, httplib::Response & res) {
  2426. if (ctx_server.params.embedding || ctx_server.params.reranking) {
  2427. res_error(res, format_error_response("This server does not support completions. Start it without `--embeddings` or `--reranking`", ERROR_TYPE_NOT_SUPPORTED));
  2428. return;
  2429. }
  2430. json data = oaicompat_completion_params_parse(ctx_server.model, json::parse(req.body), params.chat_template);
  2431. std::vector<server_task> tasks = ctx_server.create_tasks_cmpl(data, SERVER_TASK_CMPL_TYPE_NORMAL);
  2432. ctx_server.queue_results.add_waiting_tasks(tasks);
  2433. ctx_server.queue_tasks.post(tasks);
  2434. bool stream = json_value(data, "stream", false);
  2435. const auto task_ids = server_task::get_list_id(tasks);
  2436. const auto completion_id = gen_chatcmplid();
  2437. if (!stream) {
  2438. ctx_server.receive_cmpl_results(task_ids, [&](const std::vector<server_task_result> & results) {
  2439. // multitask is never support in chat completion, there is only one result
  2440. json result_oai = format_final_response_oaicompat(data, results[0].data, completion_id, /*.streaming =*/ false, verbose);
  2441. res_ok(res, result_oai);
  2442. }, [&](const json & error_data) {
  2443. res_error(res, error_data);
  2444. });
  2445. ctx_server.queue_results.remove_waiting_task_ids(task_ids);
  2446. } else {
  2447. const auto chunked_content_provider = [task_ids, &ctx_server, completion_id](size_t, httplib::DataSink & sink) {
  2448. ctx_server.receive_cmpl_results_stream(task_ids, [&](const server_task_result & result) -> bool {
  2449. std::vector<json> result_array = format_partial_response_oaicompat(result.data, completion_id);
  2450. for (auto & event_data : result_array) {
  2451. if (event_data.empty()) {
  2452. continue; // skip the stop token
  2453. }
  2454. if (!server_sent_event(sink, "data", event_data)) {
  2455. return false; // connection is closed
  2456. }
  2457. }
  2458. return true; // ok
  2459. }, [&](const json & error_data) {
  2460. server_sent_event(sink, "error", error_data);
  2461. });
  2462. static const std::string ev_done = "data: [DONE]\n\n";
  2463. sink.write(ev_done.data(), ev_done.size());
  2464. sink.done();
  2465. return true;
  2466. };
  2467. auto on_complete = [task_ids, &ctx_server] (bool) {
  2468. ctx_server.queue_results.remove_waiting_task_ids(task_ids);
  2469. };
  2470. res.set_chunked_content_provider("text/event-stream", chunked_content_provider, on_complete);
  2471. }
  2472. };
  2473. const auto handle_models = [&params, &ctx_server](const httplib::Request &, httplib::Response & res) {
  2474. json models = {
  2475. {"object", "list"},
  2476. {"data", {
  2477. {
  2478. {"id", params.model_alias},
  2479. {"object", "model"},
  2480. {"created", std::time(0)},
  2481. {"owned_by", "llamacpp"},
  2482. {"meta", ctx_server.model_meta()}
  2483. },
  2484. }}
  2485. };
  2486. res.set_content(models.dump(), MIMETYPE_JSON);
  2487. };
  2488. const auto handle_tokenize = [&ctx_server, &res_ok](const httplib::Request & req, httplib::Response & res) {
  2489. const json body = json::parse(req.body);
  2490. json tokens_response = json::array();
  2491. if (body.count("content") != 0) {
  2492. const bool add_special = json_value(body, "add_special", false);
  2493. const bool with_pieces = json_value(body, "with_pieces", false);
  2494. std::vector<llama_token> tokens = ctx_server.tokenize(body.at("content"), add_special, true);
  2495. if (with_pieces) {
  2496. for (const auto& token : tokens) {
  2497. std::string piece = common_token_to_piece(ctx_server.ctx, token);
  2498. json piece_json;
  2499. // Check if the piece is valid UTF-8
  2500. if (is_valid_utf8(piece)) {
  2501. piece_json = piece;
  2502. } else {
  2503. // If not valid UTF-8, store as array of byte values
  2504. piece_json = json::array();
  2505. for (unsigned char c : piece) {
  2506. piece_json.push_back(static_cast<int>(c));
  2507. }
  2508. }
  2509. tokens_response.push_back({
  2510. {"id", token},
  2511. {"piece", piece_json}
  2512. });
  2513. }
  2514. } else {
  2515. tokens_response = tokens;
  2516. }
  2517. }
  2518. const json data = format_tokenizer_response(tokens_response);
  2519. res_ok(res, data);
  2520. };
  2521. const auto handle_detokenize = [&ctx_server, &res_ok](const httplib::Request & req, httplib::Response & res) {
  2522. const json body = json::parse(req.body);
  2523. std::string content;
  2524. if (body.count("tokens") != 0) {
  2525. const std::vector<llama_token> tokens = body.at("tokens");
  2526. content = tokens_to_str(ctx_server.ctx, tokens.cbegin(), tokens.cend());
  2527. }
  2528. const json data = format_detokenized_response(content);
  2529. res_ok(res, data);
  2530. };
  2531. const auto handle_embeddings = [&ctx_server, &res_error, &res_ok](const httplib::Request & req, httplib::Response & res) {
  2532. // TODO: somehow clean up this checks in the future
  2533. if (!ctx_server.params.embedding || ctx_server.params.reranking) {
  2534. res_error(res, format_error_response("This server does not support embeddings. Start it with `--embeddings` and without `--reranking`", ERROR_TYPE_NOT_SUPPORTED));
  2535. return;
  2536. }
  2537. const json body = json::parse(req.body);
  2538. bool is_openai = false;
  2539. // an input prompt can be a string or a list of tokens (integer)
  2540. json prompt;
  2541. if (body.count("input") != 0) {
  2542. is_openai = true;
  2543. prompt = body.at("input");
  2544. } else if (body.count("content") != 0) {
  2545. // with "content", we only support single prompt
  2546. prompt = std::vector<std::string>{body.at("content")};
  2547. } else {
  2548. res_error(res, format_error_response("\"input\" or \"content\" must be provided", ERROR_TYPE_INVALID_REQUEST));
  2549. return;
  2550. }
  2551. // create and queue the task
  2552. json responses = json::array();
  2553. bool error = false;
  2554. {
  2555. std::vector<server_task> tasks = ctx_server.create_tasks_cmpl({{"prompt", prompt}}, SERVER_TASK_CMPL_TYPE_EMBEDDING);
  2556. ctx_server.queue_results.add_waiting_tasks(tasks);
  2557. ctx_server.queue_tasks.post(tasks);
  2558. // get the result
  2559. std::unordered_set<int> task_ids = server_task::get_list_id(tasks);
  2560. ctx_server.receive_cmpl_results(task_ids, [&](std::vector<server_task_result> & results) {
  2561. for (const auto & res : results) {
  2562. responses.push_back(res.data);
  2563. }
  2564. }, [&](const json & error_data) {
  2565. res_error(res, error_data);
  2566. error = true;
  2567. });
  2568. ctx_server.queue_results.remove_waiting_task_ids(task_ids);
  2569. }
  2570. if (error) {
  2571. return;
  2572. }
  2573. // write JSON response
  2574. json root = is_openai
  2575. ? format_embeddings_response_oaicompat(body, responses)
  2576. : responses[0];
  2577. res_ok(res, root);
  2578. };
  2579. const auto handle_rerank = [&ctx_server, &res_error, &res_ok](const httplib::Request & req, httplib::Response & res) {
  2580. if (!ctx_server.params.reranking) {
  2581. res_error(res, format_error_response("This server does not support reranking. Start it with `--reranking`", ERROR_TYPE_NOT_SUPPORTED));
  2582. return;
  2583. }
  2584. const json body = json::parse(req.body);
  2585. // TODO: implement
  2586. //int top_n = 1;
  2587. //if (body.count("top_n") != 1) {
  2588. // top_n = body.at("top_n");
  2589. //} else {
  2590. // res_error(res, format_error_response("\"top_n\" must be provided", ERROR_TYPE_INVALID_REQUEST));
  2591. // return;
  2592. //}
  2593. json query;
  2594. if (body.count("query") == 1) {
  2595. query = body.at("query");
  2596. if (!query.is_string()) {
  2597. res_error(res, format_error_response("\"query\" must be a string", ERROR_TYPE_INVALID_REQUEST));
  2598. return;
  2599. }
  2600. } else {
  2601. res_error(res, format_error_response("\"query\" must be provided", ERROR_TYPE_INVALID_REQUEST));
  2602. return;
  2603. }
  2604. std::vector<std::string> documents = json_value(body, "documents", std::vector<std::string>());
  2605. if (documents.empty()) {
  2606. res_error(res, format_error_response("\"documents\" must be a non-empty string array", ERROR_TYPE_INVALID_REQUEST));
  2607. return;
  2608. }
  2609. // construct prompt object: array of ["query", "doc0", "doc1", ...]
  2610. json prompt;
  2611. prompt.push_back(query);
  2612. for (const auto & doc : documents) {
  2613. prompt.push_back(doc);
  2614. }
  2615. LOG_DBG("rerank prompt: %s\n", prompt.dump().c_str());
  2616. // create and queue the task
  2617. json responses = json::array();
  2618. bool error = false;
  2619. {
  2620. std::vector<server_task> tasks = ctx_server.create_tasks_cmpl({{"prompt", prompt}}, SERVER_TASK_CMPL_TYPE_RERANK);
  2621. ctx_server.queue_results.add_waiting_tasks(tasks);
  2622. ctx_server.queue_tasks.post(tasks);
  2623. // get the result
  2624. std::unordered_set<int> task_ids = server_task::get_list_id(tasks);
  2625. ctx_server.receive_cmpl_results(task_ids, [&](std::vector<server_task_result> & results) {
  2626. for (const auto & res : results) {
  2627. responses.push_back(res.data);
  2628. }
  2629. }, [&](const json & error_data) {
  2630. res_error(res, error_data);
  2631. error = true;
  2632. });
  2633. }
  2634. if (error) {
  2635. return;
  2636. }
  2637. // write JSON response
  2638. json root = format_response_rerank(body, responses);
  2639. res_ok(res, root);
  2640. };
  2641. const auto handle_lora_adapters_list = [&](const httplib::Request &, httplib::Response & res) {
  2642. json result = json::array();
  2643. for (size_t i = 0; i < ctx_server.loras.size(); ++i) {
  2644. auto & lora = ctx_server.loras[i];
  2645. result.push_back({
  2646. {"id", i},
  2647. {"path", lora.path},
  2648. {"scale", lora.scale},
  2649. });
  2650. }
  2651. res_ok(res, result);
  2652. res.status = 200; // HTTP OK
  2653. };
  2654. const auto handle_lora_adapters_apply = [&](const httplib::Request & req, httplib::Response & res) {
  2655. const std::vector<json> body = json::parse(req.body);
  2656. int max_idx = ctx_server.loras.size();
  2657. // clear existing value
  2658. for (auto & lora : ctx_server.loras) {
  2659. lora.scale = 0.0f;
  2660. }
  2661. // set value
  2662. for (auto entry : body) {
  2663. int id = entry.at("id");
  2664. float scale = entry.at("scale");
  2665. if (0 <= id && id < max_idx) {
  2666. ctx_server.loras[id].scale = scale;
  2667. } else {
  2668. throw std::runtime_error("invalid adapter id");
  2669. }
  2670. }
  2671. server_task task;
  2672. task.type = SERVER_TASK_TYPE_SET_LORA;
  2673. const int id_task = ctx_server.queue_tasks.post(task);
  2674. ctx_server.queue_results.add_waiting_task_id(id_task);
  2675. server_task_result result = ctx_server.queue_results.recv(id_task);
  2676. ctx_server.queue_results.remove_waiting_task_id(id_task);
  2677. res_ok(res, result.data);
  2678. res.status = 200; // HTTP OK
  2679. };
  2680. auto handle_static_file = [](unsigned char * content, size_t len, const char * mime_type) {
  2681. return [content, len, mime_type](const httplib::Request &, httplib::Response & res) {
  2682. res.set_content(reinterpret_cast<const char*>(content), len, mime_type);
  2683. return false;
  2684. };
  2685. };
  2686. //
  2687. // Router
  2688. //
  2689. // register static assets routes
  2690. if (!params.public_path.empty()) {
  2691. // Set the base directory for serving static files
  2692. svr->set_base_dir(params.public_path);
  2693. }
  2694. if (!params.api_keys.empty()) {
  2695. // for now, if API key is set, web UI is unusable
  2696. svr->Get("/", [&](const httplib::Request &, httplib::Response & res) {
  2697. return res.set_content("Web UI is disabled because API key is set.", "text/html; charset=utf-8");
  2698. });
  2699. } else {
  2700. // using embedded static files
  2701. svr->Get("/", handle_static_file(index_html, index_html_len, "text/html; charset=utf-8"));
  2702. svr->Get("/index.js", handle_static_file(index_js, index_js_len, "text/javascript; charset=utf-8"));
  2703. svr->Get("/completion.js", handle_static_file(completion_js, completion_js_len, "text/javascript; charset=utf-8"));
  2704. svr->Get("/json-schema-to-grammar.mjs", handle_static_file(json_schema_to_grammar_mjs, json_schema_to_grammar_mjs_len, "text/javascript; charset=utf-8"));
  2705. // add new-ui files
  2706. svr->Get("/colorthemes.css", handle_static_file(colorthemes_css, colorthemes_css_len, "text/css; charset=utf-8"));
  2707. svr->Get("/style.css", handle_static_file(style_css, style_css_len, "text/css; charset=utf-8"));
  2708. svr->Get("/theme-beeninorder.css", handle_static_file(theme_beeninorder_css, theme_beeninorder_css_len, "text/css; charset=utf-8"));
  2709. svr->Get("/theme-ketivah.css", handle_static_file(theme_ketivah_css, theme_ketivah_css_len, "text/css; charset=utf-8"));
  2710. svr->Get("/theme-mangotango.css", handle_static_file(theme_mangotango_css, theme_mangotango_css_len, "text/css; charset=utf-8"));
  2711. svr->Get("/theme-playground.css", handle_static_file(theme_playground_css, theme_playground_css_len, "text/css; charset=utf-8"));
  2712. svr->Get("/theme-polarnight.css", handle_static_file(theme_polarnight_css, theme_polarnight_css_len, "text/css; charset=utf-8"));
  2713. svr->Get("/theme-snowstorm.css", handle_static_file(theme_snowstorm_css, theme_snowstorm_css_len, "text/css; charset=utf-8"));
  2714. svr->Get("/index-new.html", handle_static_file(index_new_html, index_new_html_len, "text/html; charset=utf-8"));
  2715. svr->Get("/system-prompts.js", handle_static_file(system_prompts_js, system_prompts_js_len, "text/javascript; charset=utf-8"));
  2716. svr->Get("/prompt-formats.js", handle_static_file(prompt_formats_js, prompt_formats_js_len, "text/javascript; charset=utf-8"));
  2717. }
  2718. // register API routes
  2719. svr->Get ("/health", handle_health); // public endpoint (no API key check)
  2720. svr->Get ("/metrics", handle_metrics);
  2721. svr->Get ("/props", handle_props);
  2722. svr->Post("/props", handle_props_change);
  2723. svr->Get ("/models", handle_models); // public endpoint (no API key check)
  2724. svr->Get ("/v1/models", handle_models); // public endpoint (no API key check)
  2725. svr->Post("/completion", handle_completions); // legacy
  2726. svr->Post("/completions", handle_completions);
  2727. svr->Post("/v1/completions", handle_completions);
  2728. svr->Post("/chat/completions", handle_chat_completions);
  2729. svr->Post("/v1/chat/completions", handle_chat_completions);
  2730. svr->Post("/infill", handle_infill);
  2731. svr->Post("/embedding", handle_embeddings); // legacy
  2732. svr->Post("/embeddings", handle_embeddings);
  2733. svr->Post("/v1/embeddings", handle_embeddings);
  2734. svr->Post("/rerank", handle_rerank);
  2735. svr->Post("/reranking", handle_rerank);
  2736. svr->Post("/v1/rerank", handle_rerank);
  2737. svr->Post("/v1/reranking", handle_rerank);
  2738. svr->Post("/tokenize", handle_tokenize);
  2739. svr->Post("/detokenize", handle_detokenize);
  2740. // LoRA adapters hotswap
  2741. svr->Get ("/lora-adapters", handle_lora_adapters_list);
  2742. svr->Post("/lora-adapters", handle_lora_adapters_apply);
  2743. // Save & load slots
  2744. svr->Get ("/slots", handle_slots);
  2745. svr->Post("/slots/:id_slot", handle_slots_action);
  2746. //
  2747. // Start the server
  2748. //
  2749. if (params.n_threads_http < 1) {
  2750. // +2 threads for monitoring endpoints
  2751. params.n_threads_http = std::max(params.n_parallel + 2, (int32_t) std::thread::hardware_concurrency() - 1);
  2752. }
  2753. log_data["n_threads_http"] = std::to_string(params.n_threads_http);
  2754. svr->new_task_queue = [&params] { return new httplib::ThreadPool(params.n_threads_http); };
  2755. // clean up function, to be called before exit
  2756. auto clean_up = [&svr]() {
  2757. svr->stop();
  2758. llama_backend_free();
  2759. };
  2760. // bind HTTP listen port, run the HTTP server in a thread
  2761. if (!svr->bind_to_port(params.hostname, params.port)) {
  2762. //LOG_ERROR("couldn't bind HTTP server socket", {
  2763. // {"hostname", params.hostname},
  2764. // {"port", params.port},
  2765. //});
  2766. LOG_ERR("%s: couldn't bind HTTP server socket, hostname: %s, port: %d\n", __func__, params.hostname.c_str(), params.port);
  2767. clean_up();
  2768. return 1;
  2769. }
  2770. std::thread t([&]() { svr->listen_after_bind(); });
  2771. svr->wait_until_ready();
  2772. LOG_INF("%s: HTTP server is listening, hostname: %s, port: %d, http threads: %d\n", __func__, params.hostname.c_str(), params.port, params.n_threads_http);
  2773. // load the model
  2774. LOG_INF("%s: loading model\n", __func__);
  2775. if (!ctx_server.load_model(params)) {
  2776. clean_up();
  2777. t.join();
  2778. LOG_ERR("%s: exiting due to model loading error\n", __func__);
  2779. return 1;
  2780. }
  2781. ctx_server.init();
  2782. state.store(SERVER_STATE_READY);
  2783. LOG_INF("%s: model loaded\n", __func__);
  2784. // if a custom chat template is not supplied, we will use the one that comes with the model (if any)
  2785. if (params.chat_template.empty()) {
  2786. if (!ctx_server.validate_model_chat_template()) {
  2787. LOG_WRN("%s: The chat template that comes with this model is not yet supported, falling back to chatml. This may cause the model to output suboptimal responses\n", __func__);
  2788. params.chat_template = "chatml";
  2789. }
  2790. }
  2791. // print sample chat example to make it clear which template is used
  2792. LOG_INF("%s: chat template, built_in: %d, chat_example: '%s'\n", __func__, params.chat_template.empty(), common_chat_format_example(ctx_server.model, params.chat_template).c_str());
  2793. ctx_server.queue_tasks.on_new_task(std::bind(
  2794. &server_context::process_single_task, &ctx_server, std::placeholders::_1));
  2795. ctx_server.queue_tasks.on_update_slots(std::bind(
  2796. &server_context::update_slots, &ctx_server));
  2797. shutdown_handler = [&](int) {
  2798. ctx_server.queue_tasks.terminate();
  2799. };
  2800. LOG_INF("%s: server is listening on %s:%d - starting the main loop\n", __func__, params.hostname.c_str(), params.port);
  2801. ctx_server.queue_tasks.start_loop();
  2802. #if defined (__unix__) || (defined (__APPLE__) && defined (__MACH__))
  2803. struct sigaction sigint_action;
  2804. sigint_action.sa_handler = signal_handler;
  2805. sigemptyset (&sigint_action.sa_mask);
  2806. sigint_action.sa_flags = 0;
  2807. sigaction(SIGINT, &sigint_action, NULL);
  2808. sigaction(SIGTERM, &sigint_action, NULL);
  2809. #elif defined (_WIN32)
  2810. auto console_ctrl_handler = +[](DWORD ctrl_type) -> BOOL {
  2811. return (ctrl_type == CTRL_C_EVENT) ? (signal_handler(SIGINT), true) : false;
  2812. };
  2813. SetConsoleCtrlHandler(reinterpret_cast<PHANDLER_ROUTINE>(console_ctrl_handler), true);
  2814. #endif
  2815. clean_up();
  2816. t.join();
  2817. return 0;
  2818. }