server.cpp 229 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720
  1. #include "chat.h"
  2. #include "utils.hpp"
  3. #include "arg.h"
  4. #include "common.h"
  5. #include "json-schema-to-grammar.h"
  6. #include "llama.h"
  7. #include "log.h"
  8. #include "sampling.h"
  9. #include "speculative.h"
  10. #include "mtmd.h"
  11. // mime type for sending response
  12. #define MIMETYPE_JSON "application/json; charset=utf-8"
  13. // auto generated files (see README.md for details)
  14. #include "index.html.gz.hpp"
  15. #include "loading.html.hpp"
  16. #include <atomic>
  17. #include <chrono>
  18. #include <condition_variable>
  19. #include <cstddef>
  20. #include <cinttypes>
  21. #include <deque>
  22. #include <memory>
  23. #include <mutex>
  24. #include <signal.h>
  25. #include <thread>
  26. #include <unordered_map>
  27. #include <unordered_set>
  28. using json = nlohmann::ordered_json;
  29. constexpr int HTTP_POLLING_SECONDS = 1;
  30. enum stop_type {
  31. STOP_TYPE_NONE,
  32. STOP_TYPE_EOS,
  33. STOP_TYPE_WORD,
  34. STOP_TYPE_LIMIT,
  35. };
  36. // state diagram: https://github.com/ggml-org/llama.cpp/pull/9283
  37. enum slot_state {
  38. SLOT_STATE_IDLE,
  39. SLOT_STATE_STARTED, // TODO: this state is only used for setting up the initial prompt processing; maybe merge it with launch_slot_with_task in the future
  40. SLOT_STATE_PROCESSING_PROMPT,
  41. SLOT_STATE_DONE_PROMPT,
  42. SLOT_STATE_GENERATING,
  43. };
  44. enum server_state {
  45. SERVER_STATE_LOADING_MODEL, // Server is starting up, model not fully loaded yet
  46. SERVER_STATE_READY, // Server is ready and model is loaded
  47. };
  48. enum server_task_type {
  49. SERVER_TASK_TYPE_COMPLETION,
  50. SERVER_TASK_TYPE_EMBEDDING,
  51. SERVER_TASK_TYPE_RERANK,
  52. SERVER_TASK_TYPE_INFILL,
  53. SERVER_TASK_TYPE_CANCEL,
  54. SERVER_TASK_TYPE_NEXT_RESPONSE,
  55. SERVER_TASK_TYPE_METRICS,
  56. SERVER_TASK_TYPE_SLOT_SAVE,
  57. SERVER_TASK_TYPE_SLOT_RESTORE,
  58. SERVER_TASK_TYPE_SLOT_ERASE,
  59. SERVER_TASK_TYPE_SET_LORA,
  60. };
  61. enum oaicompat_type {
  62. OAICOMPAT_TYPE_NONE,
  63. OAICOMPAT_TYPE_CHAT,
  64. OAICOMPAT_TYPE_COMPLETION,
  65. OAICOMPAT_TYPE_EMBEDDING,
  66. };
  67. // https://community.openai.com/t/openai-chat-list-of-error-codes-and-types/357791/11
  68. enum error_type {
  69. ERROR_TYPE_INVALID_REQUEST,
  70. ERROR_TYPE_AUTHENTICATION,
  71. ERROR_TYPE_SERVER,
  72. ERROR_TYPE_NOT_FOUND,
  73. ERROR_TYPE_PERMISSION,
  74. ERROR_TYPE_UNAVAILABLE, // custom error
  75. ERROR_TYPE_NOT_SUPPORTED, // custom error
  76. ERROR_TYPE_EXCEED_CONTEXT_SIZE, // custom error
  77. };
  78. static bool server_task_type_need_embd(server_task_type task_type) {
  79. switch (task_type) {
  80. case SERVER_TASK_TYPE_EMBEDDING:
  81. case SERVER_TASK_TYPE_RERANK:
  82. return true;
  83. default:
  84. return false;
  85. }
  86. }
  87. static bool server_task_type_need_logits(server_task_type task_type) {
  88. switch (task_type) {
  89. case SERVER_TASK_TYPE_COMPLETION:
  90. case SERVER_TASK_TYPE_INFILL:
  91. return true;
  92. default:
  93. return false;
  94. }
  95. }
  96. struct slot_params {
  97. bool stream = true;
  98. bool include_usage = false;
  99. bool cache_prompt = true; // remember the prompt to avoid reprocessing all prompt
  100. bool return_tokens = false;
  101. bool return_progress = false;
  102. int32_t n_keep = 0; // number of tokens to keep from initial prompt
  103. int32_t n_discard = 0; // number of tokens after n_keep that may be discarded when shifting context, 0 defaults to half
  104. int32_t n_predict = -1; // new tokens to predict
  105. int32_t n_indent = 0; // minimum line indentation for the generated text in number of whitespace characters
  106. int64_t t_max_prompt_ms = -1; // TODO: implement
  107. int64_t t_max_predict_ms = -1; // if positive, limit the generation phase to this time limit
  108. std::vector<common_adapter_lora_info> lora;
  109. std::vector<std::string> antiprompt;
  110. std::vector<std::string> response_fields;
  111. bool timings_per_token = false;
  112. bool post_sampling_probs = false;
  113. struct common_params_sampling sampling;
  114. struct common_params_speculative speculative;
  115. // OAI-compat fields
  116. bool verbose = false;
  117. oaicompat_type oaicompat = OAICOMPAT_TYPE_NONE;
  118. std::string oaicompat_model;
  119. std::string oaicompat_cmpl_id;
  120. common_chat_syntax oaicompat_chat_syntax;
  121. // Embeddings
  122. int32_t embd_normalize = 2; // (-1=none, 0=max absolute int16, 1=taxicab, 2=Euclidean/L2, >2=p-norm)
  123. json to_json(bool only_metrics = false) const {
  124. std::vector<std::string> samplers;
  125. samplers.reserve(sampling.samplers.size());
  126. for (const auto & sampler : sampling.samplers) {
  127. samplers.emplace_back(common_sampler_type_to_str(sampler));
  128. }
  129. json lora = json::array();
  130. for (size_t i = 0; i < this->lora.size(); ++i) {
  131. lora.push_back({{"id", i}, {"scale", this->lora[i].scale}});
  132. }
  133. if (only_metrics) {
  134. return json {
  135. {"seed", sampling.seed},
  136. {"temperature", sampling.temp},
  137. {"dynatemp_range", sampling.dynatemp_range},
  138. {"dynatemp_exponent", sampling.dynatemp_exponent},
  139. {"top_k", sampling.top_k},
  140. {"top_p", sampling.top_p},
  141. {"min_p", sampling.min_p},
  142. {"top_n_sigma", sampling.top_n_sigma},
  143. {"xtc_probability", sampling.xtc_probability},
  144. {"xtc_threshold", sampling.xtc_threshold},
  145. {"typical_p", sampling.typ_p},
  146. {"repeat_last_n", sampling.penalty_last_n},
  147. {"repeat_penalty", sampling.penalty_repeat},
  148. {"presence_penalty", sampling.penalty_present},
  149. {"frequency_penalty", sampling.penalty_freq},
  150. {"dry_multiplier", sampling.dry_multiplier},
  151. {"dry_base", sampling.dry_base},
  152. {"dry_allowed_length", sampling.dry_allowed_length},
  153. {"dry_penalty_last_n", sampling.dry_penalty_last_n},
  154. {"mirostat", sampling.mirostat},
  155. {"mirostat_tau", sampling.mirostat_tau},
  156. {"mirostat_eta", sampling.mirostat_eta},
  157. {"max_tokens", n_predict},
  158. {"n_predict", n_predict}, // TODO: deduplicate?
  159. {"n_keep", n_keep},
  160. {"n_discard", n_discard},
  161. {"ignore_eos", sampling.ignore_eos},
  162. {"stream", stream},
  163. {"n_probs", sampling.n_probs},
  164. {"min_keep", sampling.min_keep},
  165. {"chat_format", common_chat_format_name(oaicompat_chat_syntax.format)},
  166. {"reasoning_format", common_reasoning_format_name(oaicompat_chat_syntax.reasoning_format)},
  167. {"reasoning_in_content", oaicompat_chat_syntax.reasoning_in_content},
  168. {"thinking_forced_open", oaicompat_chat_syntax.thinking_forced_open},
  169. {"samplers", samplers},
  170. {"speculative.n_max", speculative.n_max},
  171. {"speculative.n_min", speculative.n_min},
  172. {"speculative.p_min", speculative.p_min},
  173. {"timings_per_token", timings_per_token},
  174. {"post_sampling_probs", post_sampling_probs},
  175. {"lora", lora},
  176. };
  177. }
  178. auto grammar_triggers = json::array();
  179. for (const auto & trigger : sampling.grammar_triggers) {
  180. server_grammar_trigger ct(trigger);
  181. grammar_triggers.push_back(ct.to_json());
  182. }
  183. return json {
  184. {"seed", sampling.seed},
  185. {"temperature", sampling.temp},
  186. {"dynatemp_range", sampling.dynatemp_range},
  187. {"dynatemp_exponent", sampling.dynatemp_exponent},
  188. {"top_k", sampling.top_k},
  189. {"top_p", sampling.top_p},
  190. {"min_p", sampling.min_p},
  191. {"top_n_sigma", sampling.top_n_sigma},
  192. {"xtc_probability", sampling.xtc_probability},
  193. {"xtc_threshold", sampling.xtc_threshold},
  194. {"typical_p", sampling.typ_p},
  195. {"repeat_last_n", sampling.penalty_last_n},
  196. {"repeat_penalty", sampling.penalty_repeat},
  197. {"presence_penalty", sampling.penalty_present},
  198. {"frequency_penalty", sampling.penalty_freq},
  199. {"dry_multiplier", sampling.dry_multiplier},
  200. {"dry_base", sampling.dry_base},
  201. {"dry_allowed_length", sampling.dry_allowed_length},
  202. {"dry_penalty_last_n", sampling.dry_penalty_last_n},
  203. {"dry_sequence_breakers", sampling.dry_sequence_breakers},
  204. {"mirostat", sampling.mirostat},
  205. {"mirostat_tau", sampling.mirostat_tau},
  206. {"mirostat_eta", sampling.mirostat_eta},
  207. {"stop", antiprompt},
  208. {"max_tokens", n_predict},
  209. {"n_predict", n_predict}, // TODO: deduplicate?
  210. {"n_keep", n_keep},
  211. {"n_discard", n_discard},
  212. {"ignore_eos", sampling.ignore_eos},
  213. {"stream", stream},
  214. {"logit_bias", format_logit_bias(sampling.logit_bias)},
  215. {"n_probs", sampling.n_probs},
  216. {"min_keep", sampling.min_keep},
  217. {"grammar", sampling.grammar},
  218. {"grammar_lazy", sampling.grammar_lazy},
  219. {"grammar_triggers", grammar_triggers},
  220. {"preserved_tokens", sampling.preserved_tokens},
  221. {"chat_format", common_chat_format_name(oaicompat_chat_syntax.format)},
  222. {"reasoning_format", common_reasoning_format_name(oaicompat_chat_syntax.reasoning_format)},
  223. {"reasoning_in_content", oaicompat_chat_syntax.reasoning_in_content},
  224. {"thinking_forced_open", oaicompat_chat_syntax.thinking_forced_open},
  225. {"samplers", samplers},
  226. {"speculative.n_max", speculative.n_max},
  227. {"speculative.n_min", speculative.n_min},
  228. {"speculative.p_min", speculative.p_min},
  229. {"timings_per_token", timings_per_token},
  230. {"post_sampling_probs", post_sampling_probs},
  231. {"lora", lora},
  232. };
  233. }
  234. };
  235. struct server_task {
  236. int id = -1; // to be filled by server_queue
  237. int index = -1; // used when there are multiple prompts (batch request)
  238. // used by SERVER_TASK_TYPE_CANCEL
  239. int id_target = -1;
  240. int id_slot = -1;
  241. // used by SERVER_TASK_TYPE_INFERENCE
  242. slot_params params;
  243. server_tokens tokens;
  244. server_task_type type;
  245. // used by SERVER_TASK_TYPE_SLOT_SAVE, SERVER_TASK_TYPE_SLOT_RESTORE, SERVER_TASK_TYPE_SLOT_ERASE
  246. struct slot_action {
  247. int slot_id;
  248. std::string filename;
  249. std::string filepath;
  250. };
  251. slot_action slot_action;
  252. // used by SERVER_TASK_TYPE_METRICS
  253. bool metrics_reset_bucket = false;
  254. // used by SERVER_TASK_TYPE_SET_LORA
  255. std::vector<common_adapter_lora_info> set_lora;
  256. server_task() = default;
  257. server_task(server_task_type type) : type(type) {}
  258. static slot_params params_from_json_cmpl(
  259. const llama_context * ctx,
  260. const common_params & params_base,
  261. const json & data) {
  262. const llama_model * model = llama_get_model(ctx);
  263. const llama_vocab * vocab = llama_model_get_vocab(model);
  264. slot_params params;
  265. // Sampling parameter defaults are loaded from the global server context (but individual requests can still override them)
  266. slot_params defaults;
  267. defaults.sampling = params_base.sampling;
  268. defaults.speculative = params_base.speculative;
  269. defaults.n_keep = params_base.n_keep;
  270. defaults.n_predict = params_base.n_predict;
  271. defaults.antiprompt = params_base.antiprompt;
  272. // enabling this will output extra debug information in the HTTP responses from the server
  273. params.verbose = params_base.verbosity > 9;
  274. params.timings_per_token = json_value(data, "timings_per_token", false);
  275. params.stream = json_value(data, "stream", false);
  276. auto stream_opt = json_value(data, "stream_options", json::object());
  277. params.include_usage = json_value(stream_opt, "include_usage", false);
  278. params.cache_prompt = json_value(data, "cache_prompt", true);
  279. params.return_tokens = json_value(data, "return_tokens", false);
  280. params.return_progress = json_value(data, "return_progress", false);
  281. params.n_predict = json_value(data, "n_predict", json_value(data, "max_tokens", defaults.n_predict));
  282. params.n_indent = json_value(data, "n_indent", defaults.n_indent);
  283. params.n_keep = json_value(data, "n_keep", defaults.n_keep);
  284. params.n_discard = json_value(data, "n_discard", defaults.n_discard);
  285. //params.t_max_prompt_ms = json_value(data, "t_max_prompt_ms", defaults.t_max_prompt_ms); // TODO: implement
  286. params.t_max_predict_ms = json_value(data, "t_max_predict_ms", defaults.t_max_predict_ms);
  287. params.response_fields = json_value(data, "response_fields", std::vector<std::string>());
  288. params.sampling.top_k = json_value(data, "top_k", defaults.sampling.top_k);
  289. params.sampling.top_p = json_value(data, "top_p", defaults.sampling.top_p);
  290. params.sampling.min_p = json_value(data, "min_p", defaults.sampling.min_p);
  291. params.sampling.top_n_sigma = json_value(data, "top_n_sigma", defaults.sampling.top_n_sigma);
  292. params.sampling.xtc_probability = json_value(data, "xtc_probability", defaults.sampling.xtc_probability);
  293. params.sampling.xtc_threshold = json_value(data, "xtc_threshold", defaults.sampling.xtc_threshold);
  294. params.sampling.typ_p = json_value(data, "typical_p", defaults.sampling.typ_p);
  295. params.sampling.temp = json_value(data, "temperature", defaults.sampling.temp);
  296. params.sampling.dynatemp_range = json_value(data, "dynatemp_range", defaults.sampling.dynatemp_range);
  297. params.sampling.dynatemp_exponent = json_value(data, "dynatemp_exponent", defaults.sampling.dynatemp_exponent);
  298. params.sampling.penalty_last_n = json_value(data, "repeat_last_n", defaults.sampling.penalty_last_n);
  299. params.sampling.penalty_repeat = json_value(data, "repeat_penalty", defaults.sampling.penalty_repeat);
  300. params.sampling.penalty_freq = json_value(data, "frequency_penalty", defaults.sampling.penalty_freq);
  301. params.sampling.penalty_present = json_value(data, "presence_penalty", defaults.sampling.penalty_present);
  302. params.sampling.dry_multiplier = json_value(data, "dry_multiplier", defaults.sampling.dry_multiplier);
  303. params.sampling.dry_base = json_value(data, "dry_base", defaults.sampling.dry_base);
  304. params.sampling.dry_allowed_length = json_value(data, "dry_allowed_length", defaults.sampling.dry_allowed_length);
  305. params.sampling.dry_penalty_last_n = json_value(data, "dry_penalty_last_n", defaults.sampling.dry_penalty_last_n);
  306. params.sampling.mirostat = json_value(data, "mirostat", defaults.sampling.mirostat);
  307. params.sampling.mirostat_tau = json_value(data, "mirostat_tau", defaults.sampling.mirostat_tau);
  308. params.sampling.mirostat_eta = json_value(data, "mirostat_eta", defaults.sampling.mirostat_eta);
  309. params.sampling.seed = json_value(data, "seed", defaults.sampling.seed);
  310. params.sampling.n_probs = json_value(data, "n_probs", defaults.sampling.n_probs);
  311. params.sampling.min_keep = json_value(data, "min_keep", defaults.sampling.min_keep);
  312. params.post_sampling_probs = json_value(data, "post_sampling_probs", defaults.post_sampling_probs);
  313. params.speculative.n_min = json_value(data, "speculative.n_min", defaults.speculative.n_min);
  314. params.speculative.n_max = json_value(data, "speculative.n_max", defaults.speculative.n_max);
  315. params.speculative.p_min = json_value(data, "speculative.p_min", defaults.speculative.p_min);
  316. params.speculative.n_min = std::min(params.speculative.n_max, params.speculative.n_min);
  317. params.speculative.n_min = std::max(params.speculative.n_min, 0);
  318. params.speculative.n_max = std::max(params.speculative.n_max, 0);
  319. // Use OpenAI API logprobs only if n_probs wasn't provided
  320. if (data.contains("logprobs") && params.sampling.n_probs == defaults.sampling.n_probs){
  321. params.sampling.n_probs = json_value(data, "logprobs", defaults.sampling.n_probs);
  322. }
  323. if (data.contains("lora")) {
  324. if (data.at("lora").is_array()) {
  325. params.lora = parse_lora_request(params_base.lora_adapters, data.at("lora"));
  326. } else {
  327. throw std::runtime_error("Error: 'lora' must be an array of objects with 'id' and 'scale' fields");
  328. }
  329. } else {
  330. params.lora = params_base.lora_adapters;
  331. }
  332. // TODO: add more sanity checks for the input parameters
  333. if (params.sampling.penalty_last_n < -1) {
  334. throw std::runtime_error("Error: repeat_last_n must be >= -1");
  335. }
  336. if (params.sampling.dry_penalty_last_n < -1) {
  337. throw std::runtime_error("Error: dry_penalty_last_n must be >= -1");
  338. }
  339. if (params.sampling.penalty_last_n == -1) {
  340. // note: should be the slot's context and not the full context, but it's ok
  341. params.sampling.penalty_last_n = llama_n_ctx(ctx);
  342. }
  343. if (params.sampling.dry_penalty_last_n == -1) {
  344. params.sampling.dry_penalty_last_n = llama_n_ctx(ctx);
  345. }
  346. if (params.sampling.dry_base < 1.0f) {
  347. params.sampling.dry_base = defaults.sampling.dry_base;
  348. }
  349. // sequence breakers for DRY
  350. {
  351. // Currently, this is not compatible with TextGen WebUI, Koboldcpp and SillyTavern format
  352. // Ref: https://github.com/oobabooga/text-generation-webui/blob/d1af7a41ade7bd3c3a463bfa640725edb818ebaf/extensions/openai/typing.py#L39
  353. if (data.contains("dry_sequence_breakers")) {
  354. params.sampling.dry_sequence_breakers = json_value(data, "dry_sequence_breakers", std::vector<std::string>());
  355. if (params.sampling.dry_sequence_breakers.empty()) {
  356. throw std::runtime_error("Error: dry_sequence_breakers must be a non-empty array of strings");
  357. }
  358. }
  359. }
  360. // process "json_schema" and "grammar"
  361. if (data.contains("json_schema") && !data.contains("grammar")) {
  362. try {
  363. auto schema = json_value(data, "json_schema", json::object());
  364. SRV_DBG("JSON schema: %s\n", schema.dump(2).c_str());
  365. params.sampling.grammar = json_schema_to_grammar(schema);
  366. SRV_DBG("Converted grammar: %s\n", params.sampling.grammar.c_str());
  367. } catch (const std::exception & e) {
  368. throw std::runtime_error(std::string("\"json_schema\": ") + e.what());
  369. }
  370. } else {
  371. params.sampling.grammar = json_value(data, "grammar", defaults.sampling.grammar);
  372. SRV_DBG("Grammar: %s\n", params.sampling.grammar.c_str());
  373. params.sampling.grammar_lazy = json_value(data, "grammar_lazy", defaults.sampling.grammar_lazy);
  374. SRV_DBG("Grammar lazy: %s\n", params.sampling.grammar_lazy ? "true" : "false");
  375. }
  376. {
  377. auto it = data.find("chat_format");
  378. if (it != data.end()) {
  379. params.oaicompat_chat_syntax.format = static_cast<common_chat_format>(it->get<int>());
  380. SRV_INF("Chat format: %s\n", common_chat_format_name(params.oaicompat_chat_syntax.format));
  381. } else {
  382. params.oaicompat_chat_syntax.format = defaults.oaicompat_chat_syntax.format;
  383. }
  384. common_reasoning_format reasoning_format = params_base.reasoning_format;
  385. if (data.contains("reasoning_format")) {
  386. reasoning_format = common_reasoning_format_from_name(data.at("reasoning_format").get<std::string>());
  387. }
  388. params.oaicompat_chat_syntax.reasoning_format = reasoning_format;
  389. params.oaicompat_chat_syntax.reasoning_in_content = params.stream && (reasoning_format == COMMON_REASONING_FORMAT_DEEPSEEK_LEGACY);
  390. params.oaicompat_chat_syntax.thinking_forced_open = json_value(data, "thinking_forced_open", false);
  391. params.oaicompat_chat_syntax.parse_tool_calls = json_value(data, "parse_tool_calls", false);
  392. }
  393. {
  394. const auto preserved_tokens = data.find("preserved_tokens");
  395. if (preserved_tokens != data.end()) {
  396. for (const auto & t : *preserved_tokens) {
  397. auto ids = common_tokenize(vocab, t.get<std::string>(), /* add_special= */ false, /* parse_special= */ true);
  398. if (ids.size() == 1) {
  399. SRV_DBG("Preserved token: %d\n", ids[0]);
  400. params.sampling.preserved_tokens.insert(ids[0]);
  401. } else {
  402. // This may happen when using a tool call style meant for a model with special tokens to preserve on a model without said tokens.
  403. SRV_DBG("Not preserved because more than 1 token: %s\n", t.get<std::string>().c_str());
  404. }
  405. }
  406. }
  407. const auto grammar_triggers = data.find("grammar_triggers");
  408. if (grammar_triggers != data.end()) {
  409. for (const auto & t : *grammar_triggers) {
  410. server_grammar_trigger ct(t);
  411. if (ct.value.type == COMMON_GRAMMAR_TRIGGER_TYPE_WORD) {
  412. const auto & word = ct.value.value;
  413. auto ids = common_tokenize(vocab, word, /* add_special= */ false, /* parse_special= */ true);
  414. if (ids.size() == 1) {
  415. auto token = ids[0];
  416. if (std::find(params.sampling.preserved_tokens.begin(), params.sampling.preserved_tokens.end(), (llama_token) token) == params.sampling.preserved_tokens.end()) {
  417. throw std::runtime_error("Grammar trigger word should be marked as preserved token: " + word);
  418. }
  419. SRV_DBG("Grammar trigger token: %d (`%s`)\n", token, word.c_str());
  420. common_grammar_trigger trigger;
  421. trigger.type = COMMON_GRAMMAR_TRIGGER_TYPE_TOKEN;
  422. trigger.value = word;
  423. trigger.token = token;
  424. params.sampling.grammar_triggers.push_back(std::move(trigger));
  425. } else {
  426. SRV_DBG("Grammar trigger word: `%s`\n", word.c_str());
  427. params.sampling.grammar_triggers.push_back({COMMON_GRAMMAR_TRIGGER_TYPE_WORD, word});
  428. }
  429. } else {
  430. if (ct.value.type == COMMON_GRAMMAR_TRIGGER_TYPE_PATTERN) {
  431. SRV_DBG("Grammar trigger pattern: `%s`\n", ct.value.value.c_str());
  432. } else if (ct.value.type == COMMON_GRAMMAR_TRIGGER_TYPE_PATTERN_FULL) {
  433. SRV_DBG("Grammar trigger pattern full: `%s`\n", ct.value.value.c_str());
  434. } else {
  435. throw std::runtime_error("Unknown grammar trigger type");
  436. }
  437. params.sampling.grammar_triggers.emplace_back(std::move(ct.value));
  438. }
  439. }
  440. }
  441. if (params.sampling.grammar_lazy && params.sampling.grammar_triggers.empty()) {
  442. throw std::runtime_error("Error: no triggers set for lazy grammar!");
  443. }
  444. }
  445. {
  446. params.sampling.logit_bias.clear();
  447. const auto & logit_bias = data.find("logit_bias");
  448. if (logit_bias != data.end() && logit_bias->is_array()) {
  449. const int n_vocab = llama_vocab_n_tokens(vocab);
  450. for (const auto & el : *logit_bias) {
  451. // TODO: we may want to throw errors here, in case "el" is incorrect
  452. if (el.is_array() && el.size() == 2) {
  453. float bias;
  454. if (el[1].is_number()) {
  455. bias = el[1].get<float>();
  456. } else if (el[1].is_boolean() && !el[1].get<bool>()) {
  457. bias = -INFINITY;
  458. } else {
  459. continue;
  460. }
  461. if (el[0].is_number_integer()) {
  462. llama_token tok = el[0].get<llama_token>();
  463. if (tok >= 0 && tok < n_vocab) {
  464. params.sampling.logit_bias.push_back({tok, bias});
  465. }
  466. } else if (el[0].is_string()) {
  467. auto toks = common_tokenize(vocab, el[0].get<std::string>(), false);
  468. for (auto tok : toks) {
  469. params.sampling.logit_bias.push_back({tok, bias});
  470. }
  471. }
  472. }
  473. }
  474. } else if (logit_bias != data.end() && logit_bias->is_object()) {
  475. const int n_vocab = llama_vocab_n_tokens(vocab);
  476. for (const auto & el : logit_bias->items()) {
  477. float bias;
  478. const auto & key = el.key();
  479. const auto & value = el.value();
  480. if (value.is_number()) {
  481. bias = value.get<float>();
  482. } else if (value.is_boolean() && !value.get<bool>()) {
  483. bias = -INFINITY;
  484. } else {
  485. continue;
  486. }
  487. char *end;
  488. llama_token tok = strtol(key.c_str(), &end, 10);
  489. if (*end == 0) {
  490. if (tok >= 0 && tok < n_vocab) {
  491. params.sampling.logit_bias.push_back({tok, bias});
  492. }
  493. } else {
  494. auto toks = common_tokenize(vocab, key, false);
  495. for (auto tok : toks) {
  496. params.sampling.logit_bias.push_back({tok, bias});
  497. }
  498. }
  499. }
  500. }
  501. params.sampling.ignore_eos = json_value(data, "ignore_eos", params_base.sampling.ignore_eos);
  502. if (params.sampling.ignore_eos) {
  503. params.sampling.logit_bias.insert(
  504. params.sampling.logit_bias.end(),
  505. defaults.sampling.logit_bias_eog.begin(), defaults.sampling.logit_bias_eog.end());
  506. }
  507. }
  508. {
  509. params.antiprompt.clear();
  510. const auto & stop = data.find("stop");
  511. if (stop != data.end() && stop->is_array()) {
  512. for (const auto & word : *stop) {
  513. if (!word.empty()) {
  514. params.antiprompt.push_back(word);
  515. }
  516. }
  517. }
  518. // set reverse prompt from cli args if not set in the request
  519. if (params.antiprompt.empty()) {
  520. params.antiprompt = defaults.antiprompt;
  521. }
  522. }
  523. {
  524. const auto samplers = data.find("samplers");
  525. if (samplers != data.end()) {
  526. if (samplers->is_array()) {
  527. params.sampling.samplers = common_sampler_types_from_names(*samplers, false);
  528. } else if (samplers->is_string()){
  529. params.sampling.samplers = common_sampler_types_from_chars(samplers->get<std::string>());
  530. }
  531. } else {
  532. params.sampling.samplers = defaults.sampling.samplers;
  533. }
  534. }
  535. std::string model_name = params_base.model_alias.empty() ? DEFAULT_OAICOMPAT_MODEL : params_base.model_alias;
  536. params.oaicompat_model = json_value(data, "model", model_name);
  537. return params;
  538. }
  539. // utility function
  540. static std::unordered_set<int> get_list_id(const std::vector<server_task> & tasks) {
  541. std::unordered_set<int> ids(tasks.size());
  542. for (size_t i = 0; i < tasks.size(); i++) {
  543. ids.insert(tasks[i].id);
  544. }
  545. return ids;
  546. }
  547. };
  548. struct result_timings {
  549. int32_t cache_n = -1;
  550. int32_t prompt_n = -1;
  551. double prompt_ms;
  552. double prompt_per_token_ms;
  553. double prompt_per_second;
  554. int32_t predicted_n = -1;
  555. double predicted_ms;
  556. double predicted_per_token_ms;
  557. double predicted_per_second;
  558. // Optional speculative metrics - only included when > 0
  559. int32_t draft_n = 0;
  560. int32_t draft_n_accepted = 0;
  561. json to_json() const {
  562. json base = {
  563. {"cache_n", cache_n},
  564. {"prompt_n", prompt_n},
  565. {"prompt_ms", prompt_ms},
  566. {"prompt_per_token_ms", prompt_per_token_ms},
  567. {"prompt_per_second", prompt_per_second},
  568. {"predicted_n", predicted_n},
  569. {"predicted_ms", predicted_ms},
  570. {"predicted_per_token_ms", predicted_per_token_ms},
  571. {"predicted_per_second", predicted_per_second},
  572. };
  573. if (draft_n > 0) {
  574. base["draft_n"] = draft_n;
  575. base["draft_n_accepted"] = draft_n_accepted;
  576. }
  577. return base;
  578. }
  579. };
  580. struct result_prompt_progress {
  581. int32_t total = 0;
  582. int32_t cache = 0;
  583. int32_t processed = 0;
  584. int64_t time_ms = 0;
  585. json to_json() const {
  586. return json {
  587. {"total", total},
  588. {"cache", cache},
  589. {"processed", processed},
  590. {"time_ms", time_ms},
  591. };
  592. }
  593. };
  594. struct server_task_result {
  595. int id = -1;
  596. int id_slot = -1;
  597. virtual bool is_error() {
  598. // only used by server_task_result_error
  599. return false;
  600. }
  601. virtual bool is_stop() {
  602. // only used by server_task_result_cmpl_*
  603. return false;
  604. }
  605. virtual int get_index() {
  606. return -1;
  607. }
  608. virtual json to_json() = 0;
  609. virtual ~server_task_result() = default;
  610. };
  611. // using shared_ptr for polymorphism of server_task_result
  612. using server_task_result_ptr = std::unique_ptr<server_task_result>;
  613. static inline std::string stop_type_to_str(stop_type type) {
  614. switch (type) {
  615. case STOP_TYPE_EOS: return "eos";
  616. case STOP_TYPE_WORD: return "word";
  617. case STOP_TYPE_LIMIT: return "limit";
  618. default: return "none";
  619. }
  620. }
  621. struct completion_token_output {
  622. llama_token tok;
  623. float prob;
  624. std::string text_to_send;
  625. struct prob_info {
  626. llama_token tok;
  627. std::string txt;
  628. float prob;
  629. };
  630. std::vector<prob_info> probs;
  631. json to_json(bool post_sampling_probs) const {
  632. json probs_for_token = json::array();
  633. for (const auto & p : probs) {
  634. std::string txt(p.txt);
  635. txt.resize(validate_utf8(txt));
  636. probs_for_token.push_back(json {
  637. {"id", p.tok},
  638. {"token", txt},
  639. {"bytes", str_to_bytes(p.txt)},
  640. {
  641. post_sampling_probs ? "prob" : "logprob",
  642. post_sampling_probs ? p.prob : logarithm(p.prob)
  643. },
  644. });
  645. }
  646. return probs_for_token;
  647. }
  648. static json probs_vector_to_json(const std::vector<completion_token_output> & probs, bool post_sampling_probs) {
  649. json out = json::array();
  650. for (const auto & p : probs) {
  651. std::string txt(p.text_to_send);
  652. txt.resize(validate_utf8(txt));
  653. out.push_back(json {
  654. {"id", p.tok},
  655. {"token", txt},
  656. {"bytes", str_to_bytes(p.text_to_send)},
  657. {
  658. post_sampling_probs ? "prob" : "logprob",
  659. post_sampling_probs ? p.prob : logarithm(p.prob)
  660. },
  661. {
  662. post_sampling_probs ? "top_probs" : "top_logprobs",
  663. p.to_json(post_sampling_probs)
  664. },
  665. });
  666. }
  667. return out;
  668. }
  669. static float logarithm(float x) {
  670. // nlohmann::json converts -inf to null, so we need to prevent that
  671. return x == 0.0f ? std::numeric_limits<float>::lowest() : std::log(x);
  672. }
  673. static std::vector<unsigned char> str_to_bytes(const std::string & str) {
  674. std::vector<unsigned char> bytes;
  675. for (unsigned char c : str) {
  676. bytes.push_back(c);
  677. }
  678. return bytes;
  679. }
  680. };
  681. struct server_task_result_cmpl_final : server_task_result {
  682. int index = 0;
  683. std::string content;
  684. llama_tokens tokens;
  685. bool stream;
  686. bool include_usage;
  687. result_timings timings;
  688. std::string prompt;
  689. bool truncated;
  690. int32_t n_decoded;
  691. int32_t n_prompt_tokens;
  692. int32_t n_tokens_cached;
  693. bool has_new_line;
  694. std::string stopping_word;
  695. stop_type stop = STOP_TYPE_NONE;
  696. bool post_sampling_probs;
  697. std::vector<completion_token_output> probs_output;
  698. std::vector<std::string> response_fields;
  699. slot_params generation_params;
  700. // OAI-compat fields
  701. bool verbose = false;
  702. oaicompat_type oaicompat = OAICOMPAT_TYPE_NONE;
  703. std::string oaicompat_model;
  704. std::string oaicompat_cmpl_id;
  705. common_chat_msg oaicompat_msg;
  706. std::vector<common_chat_msg_diff> oaicompat_msg_diffs;
  707. virtual int get_index() override {
  708. return index;
  709. }
  710. virtual bool is_stop() override {
  711. return true; // in stream mode, final responses are considered stop
  712. }
  713. virtual json to_json() override {
  714. switch (oaicompat) {
  715. case OAICOMPAT_TYPE_NONE:
  716. return to_json_non_oaicompat();
  717. case OAICOMPAT_TYPE_COMPLETION:
  718. return to_json_oaicompat();
  719. case OAICOMPAT_TYPE_CHAT:
  720. return stream ? to_json_oaicompat_chat_stream() : to_json_oaicompat_chat();
  721. default:
  722. GGML_ASSERT(false && "Invalid oaicompat_type");
  723. }
  724. }
  725. json to_json_non_oaicompat() {
  726. json res = json {
  727. {"index", index},
  728. {"content", stream ? "" : content}, // in stream mode, content is already in last partial chunk
  729. {"tokens", stream ? llama_tokens {} : tokens},
  730. {"id_slot", id_slot},
  731. {"stop", true},
  732. {"model", oaicompat_model},
  733. {"tokens_predicted", n_decoded},
  734. {"tokens_evaluated", n_prompt_tokens},
  735. {"generation_settings", generation_params.to_json()},
  736. {"prompt", prompt},
  737. {"has_new_line", has_new_line},
  738. {"truncated", truncated},
  739. {"stop_type", stop_type_to_str(stop)},
  740. {"stopping_word", stopping_word},
  741. {"tokens_cached", n_tokens_cached},
  742. {"timings", timings.to_json()},
  743. };
  744. if (!stream && !probs_output.empty()) {
  745. res["completion_probabilities"] = completion_token_output::probs_vector_to_json(probs_output, post_sampling_probs);
  746. }
  747. return response_fields.empty() ? res : json_get_nested_values(response_fields, res);
  748. }
  749. json to_json_oaicompat() {
  750. std::time_t t = std::time(0);
  751. json logprobs = json(nullptr); // OAI default to null
  752. if (!stream && probs_output.size() > 0) {
  753. logprobs = json{
  754. {"content", completion_token_output::probs_vector_to_json(probs_output, post_sampling_probs)},
  755. };
  756. }
  757. json finish_reason = "length";
  758. if (stop == STOP_TYPE_WORD || stop == STOP_TYPE_EOS) {
  759. finish_reason = "stop";
  760. }
  761. json res = json {
  762. {"choices", json::array({
  763. json{
  764. {"text", stream ? "" : content}, // in stream mode, content is already in last partial chunk
  765. {"index", index},
  766. {"logprobs", logprobs},
  767. {"finish_reason", finish_reason},
  768. }
  769. })},
  770. {"created", t},
  771. {"model", oaicompat_model},
  772. {"system_fingerprint", build_info},
  773. {"object", "text_completion"},
  774. {"usage", json {
  775. {"completion_tokens", n_decoded},
  776. {"prompt_tokens", n_prompt_tokens},
  777. {"total_tokens", n_decoded + n_prompt_tokens}
  778. }},
  779. {"id", oaicompat_cmpl_id}
  780. };
  781. // extra fields for debugging purposes
  782. if (verbose) {
  783. res["__verbose"] = to_json_non_oaicompat();
  784. }
  785. if (timings.prompt_n >= 0) {
  786. res.push_back({"timings", timings.to_json()});
  787. }
  788. return res;
  789. }
  790. json to_json_oaicompat_chat() {
  791. std::string finish_reason = "length";
  792. common_chat_msg msg;
  793. if (!oaicompat_msg.empty()) {
  794. msg = oaicompat_msg;
  795. } else {
  796. msg.role = "assistant";
  797. msg.content = content;
  798. }
  799. if (stop == STOP_TYPE_WORD || stop == STOP_TYPE_EOS) {
  800. finish_reason = msg.tool_calls.empty() ? "stop" : "tool_calls";
  801. }
  802. json choice {
  803. {"finish_reason", finish_reason},
  804. {"index", 0},
  805. {"message", msg.to_json_oaicompat<json>()},
  806. };
  807. if (!stream && probs_output.size() > 0) {
  808. choice["logprobs"] = json{
  809. {"content", completion_token_output::probs_vector_to_json(probs_output, post_sampling_probs)},
  810. };
  811. }
  812. std::time_t t = std::time(0);
  813. json res = json {
  814. {"choices", json::array({choice})},
  815. {"created", t},
  816. {"model", oaicompat_model},
  817. {"system_fingerprint", build_info},
  818. {"object", "chat.completion"},
  819. {"usage", json {
  820. {"completion_tokens", n_decoded},
  821. {"prompt_tokens", n_prompt_tokens},
  822. {"total_tokens", n_decoded + n_prompt_tokens}
  823. }},
  824. {"id", oaicompat_cmpl_id}
  825. };
  826. // extra fields for debugging purposes
  827. if (verbose) {
  828. res["__verbose"] = to_json_non_oaicompat();
  829. }
  830. if (timings.prompt_n >= 0) {
  831. res.push_back({"timings", timings.to_json()});
  832. }
  833. return res;
  834. }
  835. json to_json_oaicompat_chat_stream() {
  836. std::time_t t = std::time(0);
  837. std::string finish_reason = "length";
  838. if (stop == STOP_TYPE_WORD || stop == STOP_TYPE_EOS) {
  839. finish_reason = oaicompat_msg.tool_calls.empty() ? "stop" : "tool_calls";
  840. }
  841. json deltas = json::array();
  842. for (const auto & diff : oaicompat_msg_diffs) {
  843. deltas.push_back({
  844. {"choices", json::array({
  845. json {
  846. {"finish_reason", nullptr},
  847. {"index", 0},
  848. {"delta", common_chat_msg_diff_to_json_oaicompat<json>(diff)},
  849. },
  850. })},
  851. {"created", t},
  852. {"id", oaicompat_cmpl_id},
  853. {"model", oaicompat_model},
  854. {"system_fingerprint", build_info},
  855. {"object", "chat.completion.chunk"},
  856. });
  857. }
  858. deltas.push_back({
  859. {"choices", json::array({
  860. json {
  861. {"finish_reason", finish_reason},
  862. {"index", 0},
  863. {"delta", json::object()},
  864. },
  865. })},
  866. {"created", t},
  867. {"id", oaicompat_cmpl_id},
  868. {"model", oaicompat_model},
  869. {"system_fingerprint", build_info},
  870. {"object", "chat.completion.chunk"},
  871. });
  872. if (include_usage) {
  873. // OpenAI API spec for chat.completion.chunks specifies an empty `choices` array for the last chunk when including usage
  874. // https://platform.openai.com/docs/api-reference/chat_streaming/streaming#chat_streaming/streaming-choices
  875. deltas.push_back({
  876. {"choices", json::array()},
  877. {"created", t},
  878. {"id", oaicompat_cmpl_id},
  879. {"model", oaicompat_model},
  880. {"system_fingerprint", build_info},
  881. {"object", "chat.completion.chunk"},
  882. {"usage", json {
  883. {"completion_tokens", n_decoded},
  884. {"prompt_tokens", n_prompt_tokens},
  885. {"total_tokens", n_decoded + n_prompt_tokens},
  886. }},
  887. });
  888. }
  889. if (timings.prompt_n >= 0) {
  890. deltas.back().push_back({"timings", timings.to_json()});
  891. }
  892. // extra fields for debugging purposes
  893. if (verbose && !deltas.empty()) {
  894. deltas.front()["__verbose"] = to_json_non_oaicompat();
  895. }
  896. return deltas;
  897. }
  898. };
  899. struct server_task_result_cmpl_partial : server_task_result {
  900. int index = 0;
  901. std::string content;
  902. llama_tokens tokens;
  903. int32_t n_decoded;
  904. int32_t n_prompt_tokens;
  905. bool post_sampling_probs;
  906. bool is_progress = false;
  907. completion_token_output prob_output;
  908. result_timings timings;
  909. result_prompt_progress progress;
  910. // OAI-compat fields
  911. bool verbose = false;
  912. oaicompat_type oaicompat = OAICOMPAT_TYPE_NONE;
  913. std::string oaicompat_model;
  914. std::string oaicompat_cmpl_id;
  915. std::vector<common_chat_msg_diff> oaicompat_msg_diffs;
  916. virtual int get_index() override {
  917. return index;
  918. }
  919. virtual bool is_stop() override {
  920. return false; // in stream mode, partial responses are not considered stop
  921. }
  922. virtual json to_json() override {
  923. switch (oaicompat) {
  924. case OAICOMPAT_TYPE_NONE:
  925. return to_json_non_oaicompat();
  926. case OAICOMPAT_TYPE_COMPLETION:
  927. return to_json_oaicompat();
  928. case OAICOMPAT_TYPE_CHAT:
  929. return to_json_oaicompat_chat();
  930. default:
  931. GGML_ASSERT(false && "Invalid oaicompat_type");
  932. }
  933. }
  934. json to_json_non_oaicompat() {
  935. // non-OAI-compat JSON
  936. json res = json {
  937. {"index", index},
  938. {"content", content},
  939. {"tokens", tokens},
  940. {"stop", false},
  941. {"id_slot", id_slot},
  942. {"tokens_predicted", n_decoded},
  943. {"tokens_evaluated", n_prompt_tokens},
  944. };
  945. // populate the timings object when needed (usually for the last response or with timings_per_token enabled)
  946. if (timings.prompt_n > 0) {
  947. res.push_back({"timings", timings.to_json()});
  948. }
  949. if (is_progress) {
  950. res.push_back({"prompt_progress", progress.to_json()});
  951. }
  952. if (!prob_output.probs.empty()) {
  953. res["completion_probabilities"] = completion_token_output::probs_vector_to_json({prob_output}, post_sampling_probs);
  954. }
  955. return res;
  956. }
  957. json to_json_oaicompat() {
  958. std::time_t t = std::time(0);
  959. json logprobs = json(nullptr); // OAI default to null
  960. if (prob_output.probs.size() > 0) {
  961. logprobs = json{
  962. {"content", completion_token_output::probs_vector_to_json({prob_output}, post_sampling_probs)},
  963. };
  964. }
  965. json res = json {
  966. {"choices", json::array({
  967. json{
  968. {"text", content},
  969. {"index", index},
  970. {"logprobs", logprobs},
  971. {"finish_reason", nullptr},
  972. }
  973. })},
  974. {"created", t},
  975. {"model", oaicompat_model},
  976. {"system_fingerprint", build_info},
  977. {"object", "text_completion"},
  978. {"id", oaicompat_cmpl_id}
  979. };
  980. // extra fields for debugging purposes
  981. if (verbose) {
  982. res["__verbose"] = to_json_non_oaicompat();
  983. }
  984. if (timings.prompt_n >= 0) {
  985. res.push_back({"timings", timings.to_json()});
  986. }
  987. if (is_progress) {
  988. res.push_back({"prompt_progress", progress.to_json()});
  989. }
  990. return res;
  991. }
  992. json to_json_oaicompat_chat() {
  993. bool first = n_decoded == 1;
  994. std::time_t t = std::time(0);
  995. json choices;
  996. std::vector<json> deltas;
  997. auto add_delta = [&](const json & delta) {
  998. deltas.push_back({
  999. {"choices", json::array({
  1000. json {
  1001. {"finish_reason", nullptr},
  1002. {"index", 0},
  1003. {"delta", delta},
  1004. },
  1005. })},
  1006. {"created", t},
  1007. {"id", oaicompat_cmpl_id},
  1008. {"model", oaicompat_model},
  1009. {"system_fingerprint", build_info},
  1010. {"object", "chat.completion.chunk"},
  1011. });
  1012. };
  1013. // We have to send an initial update to conform to openai behavior
  1014. if (first || is_progress) {
  1015. add_delta({
  1016. {"role", "assistant"},
  1017. {"content", nullptr},
  1018. });
  1019. }
  1020. for (const auto & diff : oaicompat_msg_diffs) {
  1021. add_delta(common_chat_msg_diff_to_json_oaicompat<json>(diff));
  1022. }
  1023. if (!deltas.empty()) {
  1024. auto & last_json = deltas[deltas.size() - 1];
  1025. GGML_ASSERT(last_json.at("choices").size() >= 1);
  1026. if (prob_output.probs.size() > 0) {
  1027. last_json.at("choices").at(0)["logprobs"] = json {
  1028. {"content", completion_token_output::probs_vector_to_json({prob_output}, post_sampling_probs)},
  1029. };
  1030. }
  1031. if (timings.prompt_n >= 0) {
  1032. last_json.push_back({"timings", timings.to_json()});
  1033. }
  1034. if (is_progress) {
  1035. last_json.push_back({"prompt_progress", progress.to_json()});
  1036. }
  1037. }
  1038. return deltas;
  1039. }
  1040. };
  1041. struct server_task_result_embd : server_task_result {
  1042. int index = 0;
  1043. std::vector<std::vector<float>> embedding;
  1044. int32_t n_tokens;
  1045. // OAI-compat fields
  1046. oaicompat_type oaicompat = OAICOMPAT_TYPE_NONE;
  1047. virtual int get_index() override {
  1048. return index;
  1049. }
  1050. virtual json to_json() override {
  1051. return oaicompat == OAICOMPAT_TYPE_EMBEDDING
  1052. ? to_json_oaicompat()
  1053. : to_json_non_oaicompat();
  1054. }
  1055. json to_json_non_oaicompat() {
  1056. return json {
  1057. {"index", index},
  1058. {"embedding", embedding},
  1059. };
  1060. }
  1061. json to_json_oaicompat() {
  1062. return json {
  1063. {"index", index},
  1064. {"embedding", embedding[0]},
  1065. {"tokens_evaluated", n_tokens},
  1066. };
  1067. }
  1068. };
  1069. struct server_task_result_rerank : server_task_result {
  1070. int index = 0;
  1071. float score = -1e6;
  1072. int32_t n_tokens;
  1073. virtual int get_index() override {
  1074. return index;
  1075. }
  1076. virtual json to_json() override {
  1077. return json {
  1078. {"index", index},
  1079. {"score", score},
  1080. {"tokens_evaluated", n_tokens},
  1081. };
  1082. }
  1083. };
  1084. // this function maybe used outside of server_task_result_error
  1085. static json format_error_response(const std::string & message, const enum error_type type) {
  1086. std::string type_str;
  1087. int code = 500;
  1088. switch (type) {
  1089. case ERROR_TYPE_INVALID_REQUEST:
  1090. type_str = "invalid_request_error";
  1091. code = 400;
  1092. break;
  1093. case ERROR_TYPE_AUTHENTICATION:
  1094. type_str = "authentication_error";
  1095. code = 401;
  1096. break;
  1097. case ERROR_TYPE_NOT_FOUND:
  1098. type_str = "not_found_error";
  1099. code = 404;
  1100. break;
  1101. case ERROR_TYPE_SERVER:
  1102. type_str = "server_error";
  1103. code = 500;
  1104. break;
  1105. case ERROR_TYPE_PERMISSION:
  1106. type_str = "permission_error";
  1107. code = 403;
  1108. break;
  1109. case ERROR_TYPE_NOT_SUPPORTED:
  1110. type_str = "not_supported_error";
  1111. code = 501;
  1112. break;
  1113. case ERROR_TYPE_UNAVAILABLE:
  1114. type_str = "unavailable_error";
  1115. code = 503;
  1116. break;
  1117. case ERROR_TYPE_EXCEED_CONTEXT_SIZE:
  1118. type_str = "exceed_context_size_error";
  1119. code = 400;
  1120. break;
  1121. }
  1122. return json {
  1123. {"code", code},
  1124. {"message", message},
  1125. {"type", type_str},
  1126. };
  1127. }
  1128. struct server_task_result_error : server_task_result {
  1129. int index = 0;
  1130. error_type err_type = ERROR_TYPE_SERVER;
  1131. std::string err_msg;
  1132. // for ERROR_TYPE_EXCEED_CONTEXT_SIZE
  1133. int32_t n_prompt_tokens = 0;
  1134. int32_t n_ctx = 0;
  1135. virtual bool is_error() override {
  1136. return true;
  1137. }
  1138. virtual json to_json() override {
  1139. json res = format_error_response(err_msg, err_type);
  1140. if (err_type == ERROR_TYPE_EXCEED_CONTEXT_SIZE) {
  1141. res["n_prompt_tokens"] = n_prompt_tokens;
  1142. res["n_ctx"] = n_ctx;
  1143. }
  1144. return res;
  1145. }
  1146. };
  1147. struct server_task_result_metrics : server_task_result {
  1148. int n_idle_slots;
  1149. int n_processing_slots;
  1150. int n_tasks_deferred;
  1151. int64_t t_start;
  1152. // TODO: somehow reuse server_metrics in the future, instead of duplicating the fields
  1153. uint64_t n_prompt_tokens_processed_total = 0;
  1154. uint64_t t_prompt_processing_total = 0;
  1155. uint64_t n_tokens_predicted_total = 0;
  1156. uint64_t t_tokens_generation_total = 0;
  1157. uint64_t n_past_max = 0;
  1158. uint64_t n_prompt_tokens_processed = 0;
  1159. uint64_t t_prompt_processing = 0;
  1160. uint64_t n_tokens_predicted = 0;
  1161. uint64_t t_tokens_generation = 0;
  1162. uint64_t n_decode_total = 0;
  1163. uint64_t n_busy_slots_total = 0;
  1164. // while we can also use std::vector<server_slot> this requires copying the slot object which can be quite messy
  1165. // therefore, we use json to temporarily store the slot.to_json() result
  1166. json slots_data = json::array();
  1167. virtual json to_json() override {
  1168. return json {
  1169. { "idle", n_idle_slots },
  1170. { "processing", n_processing_slots },
  1171. { "deferred", n_tasks_deferred },
  1172. { "t_start", t_start },
  1173. { "n_prompt_tokens_processed_total", n_prompt_tokens_processed_total },
  1174. { "t_tokens_generation_total", t_tokens_generation_total },
  1175. { "n_tokens_predicted_total", n_tokens_predicted_total },
  1176. { "t_prompt_processing_total", t_prompt_processing_total },
  1177. { "n_past_max", n_past_max },
  1178. { "n_prompt_tokens_processed", n_prompt_tokens_processed },
  1179. { "t_prompt_processing", t_prompt_processing },
  1180. { "n_tokens_predicted", n_tokens_predicted },
  1181. { "t_tokens_generation", t_tokens_generation },
  1182. { "n_decode_total", n_decode_total },
  1183. { "n_busy_slots_total", n_busy_slots_total },
  1184. { "slots", slots_data },
  1185. };
  1186. }
  1187. };
  1188. struct server_task_result_slot_save_load : server_task_result {
  1189. std::string filename;
  1190. bool is_save; // true = save, false = load
  1191. size_t n_tokens;
  1192. size_t n_bytes;
  1193. double t_ms;
  1194. virtual json to_json() override {
  1195. if (is_save) {
  1196. return json {
  1197. { "id_slot", id_slot },
  1198. { "filename", filename },
  1199. { "n_saved", n_tokens },
  1200. { "n_written", n_bytes },
  1201. { "timings", {
  1202. { "save_ms", t_ms }
  1203. }},
  1204. };
  1205. }
  1206. return json {
  1207. { "id_slot", id_slot },
  1208. { "filename", filename },
  1209. { "n_restored", n_tokens },
  1210. { "n_read", n_bytes },
  1211. { "timings", {
  1212. { "restore_ms", t_ms }
  1213. }},
  1214. };
  1215. }
  1216. };
  1217. struct server_task_result_slot_erase : server_task_result {
  1218. size_t n_erased;
  1219. virtual json to_json() override {
  1220. return json {
  1221. { "id_slot", id_slot },
  1222. { "n_erased", n_erased },
  1223. };
  1224. }
  1225. };
  1226. struct server_task_result_apply_lora : server_task_result {
  1227. virtual json to_json() override {
  1228. return json {{ "success", true }};
  1229. }
  1230. };
  1231. struct server_prompt_checkpoint {
  1232. llama_pos pos_min;
  1233. llama_pos pos_max;
  1234. std::vector<uint8_t> data;
  1235. size_t size() const {
  1236. return data.size();
  1237. }
  1238. };
  1239. struct server_prompt {
  1240. server_tokens tokens;
  1241. std::vector<uint8_t> data;
  1242. std::list<server_prompt_checkpoint> checkpoints;
  1243. size_t size() const {
  1244. size_t res = data.size();
  1245. for (const auto & checkpoint : checkpoints) {
  1246. res += checkpoint.size();
  1247. }
  1248. return res;
  1249. }
  1250. int n_tokens() const {
  1251. return tokens.size();
  1252. }
  1253. };
  1254. struct server_prompt_cache {
  1255. server_prompt_cache(int32_t limit_size_mib, size_t limit_tokens) {
  1256. this->limit_size = 1024ull*1024ull*(limit_size_mib < 0 ? 0 : limit_size_mib);
  1257. this->limit_tokens = limit_tokens;
  1258. }
  1259. std::list<server_prompt> states;
  1260. // in bytes, 0 = no limit
  1261. size_t limit_size = 0;
  1262. // in tokens, 0 = no limit
  1263. size_t limit_tokens = 0;
  1264. size_t size() const {
  1265. size_t res = 0;
  1266. for (const auto & state : states) {
  1267. res += state.size();
  1268. }
  1269. return res;
  1270. }
  1271. size_t n_tokens() const {
  1272. size_t res = 0;
  1273. for (const auto & state : states) {
  1274. res += state.n_tokens();
  1275. }
  1276. return res;
  1277. }
  1278. server_prompt * alloc(const server_prompt & prompt, size_t state_size) {
  1279. // first check if the current state is contained fully in the cache
  1280. for (auto it = states.begin(); it != states.end(); ++it) {
  1281. const int cur_lcp_len = it->tokens.get_common_prefix(prompt.tokens);
  1282. if (cur_lcp_len == (int) prompt.tokens.size()) {
  1283. SRV_WRN("%s", " - prompt is already in the cache, skipping\n");
  1284. return nullptr;
  1285. }
  1286. }
  1287. // next, remove any cached prompts that are fully contained in the current prompt
  1288. for (auto it = states.begin(); it != states.end();) {
  1289. const int len = it->tokens.get_common_prefix(prompt.tokens);
  1290. if (len == (int) it->tokens.size()) {
  1291. SRV_WRN(" - removing obsolete cached prompt with length %d\n", len);
  1292. it = states.erase(it);
  1293. } else {
  1294. ++it;
  1295. }
  1296. }
  1297. std::vector<uint8_t> state_data;
  1298. // check if we can allocate enough memory for the new state
  1299. try {
  1300. state_data.resize(state_size);
  1301. } catch (const std::bad_alloc & e) {
  1302. SRV_ERR("failed to allocate memory for prompt cache state: %s\n", e.what());
  1303. limit_size = std::max<size_t>(1, 0.4*size());
  1304. SRV_WRN(" - cache size limit reduced to %.3f MiB\n", limit_size / (1024.0 * 1024.0));
  1305. update();
  1306. return nullptr;
  1307. }
  1308. // TODO: for some reason we can't copy server_tokens, so we have to do this workaround
  1309. auto & cur = states.emplace_back();
  1310. cur = {
  1311. /*.tokens =*/ server_tokens(prompt.tokens.get_text_tokens(), false),
  1312. /*.data =*/ std::move(state_data),
  1313. /*.checkpoints =*/ prompt.checkpoints,
  1314. };
  1315. return &cur;
  1316. }
  1317. bool load(server_prompt & prompt, const server_tokens & tokens_new, llama_context * ctx, int32_t id_slot) {
  1318. const int lcp_best = prompt.tokens.get_common_prefix(tokens_new);
  1319. float f_keep_best = float(lcp_best) / prompt.tokens.size();
  1320. float sim_best = float(lcp_best) / tokens_new.size();
  1321. SRV_WRN(" - looking for better prompt, base f_keep = %.3f, sim = %.3f\n", f_keep_best, sim_best);
  1322. auto it_best = states.end();
  1323. // find the most similar cached prompt, that would also preserve the most context
  1324. for (auto it = states.begin(); it != states.end(); ++it) {
  1325. const int lcp_cur = it->tokens.get_common_prefix(tokens_new);
  1326. const float f_keep_cur = float(lcp_cur) / it->tokens.size();
  1327. const float sim_cur = float(lcp_cur) / tokens_new.size();
  1328. // don't trash large prompts
  1329. if (f_keep_cur < 0.25f) {
  1330. continue;
  1331. }
  1332. if (f_keep_best < f_keep_cur && sim_best < sim_cur) {
  1333. f_keep_best = f_keep_cur;
  1334. sim_best = sim_cur;
  1335. it_best = it;
  1336. }
  1337. }
  1338. if (it_best != states.end()) {
  1339. SRV_WRN(" - found better prompt with f_keep = %.3f, sim = %.3f\n", f_keep_best, sim_best);
  1340. const size_t size = it_best->data.size();
  1341. const size_t n = llama_state_seq_set_data_ext(ctx, it_best->data.data(), size, id_slot, 0);
  1342. if (n != size) {
  1343. SRV_WRN("failed to restore state with size %zu\n", size);
  1344. return false;
  1345. }
  1346. it_best->data.clear();
  1347. it_best->data.shrink_to_fit();
  1348. prompt = std::move(*it_best);
  1349. states.erase(it_best);
  1350. }
  1351. return true;
  1352. }
  1353. void update() {
  1354. if (limit_size > 0) {
  1355. // always keep at least one state, regardless of the limits
  1356. while (states.size() > 1 && size() > limit_size) {
  1357. if (states.empty()) {
  1358. break;
  1359. }
  1360. SRV_WRN(" - cache size limit reached, removing oldest entry (size = %.3f MiB)\n", states.front().size() / (1024.0 * 1024.0));
  1361. states.pop_front();
  1362. }
  1363. }
  1364. // average size per token
  1365. const float size_per_token = std::max<float>(1.0f, float(size()) / (std::max<size_t>(1, n_tokens())));
  1366. // dynamically increase the token limit if it can fit in the memory limit
  1367. const size_t limit_tokens_cur = limit_size > 0 ? std::max<size_t>(limit_tokens, limit_size/size_per_token) : limit_tokens;
  1368. if (limit_tokens > 0) {
  1369. while (states.size() > 1 && n_tokens() > limit_tokens_cur) {
  1370. if (states.empty()) {
  1371. break;
  1372. }
  1373. SRV_WRN(" - cache token limit (%zu, est: %zu) reached, removing oldest entry (size = %.3f MiB)\n",
  1374. limit_tokens, limit_tokens_cur, states.front().size() / (1024.0 * 1024.0));
  1375. states.pop_front();
  1376. }
  1377. }
  1378. SRV_WRN(" - cache state: %zu prompts, %.3f MiB (limits: %.3f MiB, %zu tokens, %zu est)\n",
  1379. states.size(), size() / (1024.0 * 1024.0), limit_size / (1024.0 * 1024.0), limit_tokens, limit_tokens_cur);
  1380. for (const auto & state : states) {
  1381. SRV_WRN(" - prompt %p: %7d tokens, checkpoints: %2zu, %9.3f MiB\n",
  1382. (const void *)&state, state.n_tokens(), state.checkpoints.size(), state.size() / (1024.0 * 1024.0));
  1383. }
  1384. }
  1385. };
  1386. struct server_slot {
  1387. int id;
  1388. llama_batch batch_spec = {};
  1389. // TODO: change to unique_ptrs for consistency:
  1390. llama_context * ctx = nullptr;
  1391. llama_context * ctx_dft = nullptr;
  1392. // multimodal
  1393. mtmd_context * mctx = nullptr;
  1394. common_speculative * spec = nullptr;
  1395. std::unique_ptr<const server_task> task;
  1396. std::unique_ptr<const server_task> task_prev; // used for debugging
  1397. // used to determine the slot that has been used the longest
  1398. int64_t t_last_used = -1;
  1399. // generation props
  1400. int32_t n_ctx = 0; // context size per slot
  1401. int32_t n_past = 0;
  1402. int32_t n_keep = 0;
  1403. int32_t n_decoded = 0;
  1404. int32_t n_remaining = -1;
  1405. int32_t i_batch = -1;
  1406. int32_t n_prompt_tokens_cache = 0;
  1407. int32_t n_prompt_tokens_processed = 0;
  1408. int32_t n_prompt_tokens() const {
  1409. return task->tokens.size();
  1410. }
  1411. size_t last_nl_pos = 0;
  1412. std::string generated_text;
  1413. llama_tokens generated_tokens;
  1414. common_chat_msg chat_msg;
  1415. std::vector<completion_token_output> generated_token_probs;
  1416. bool has_next_token = true;
  1417. bool has_new_line = false;
  1418. bool truncated = false;
  1419. stop_type stop;
  1420. std::string stopping_word;
  1421. // state
  1422. slot_state state = SLOT_STATE_IDLE;
  1423. server_prompt prompt;
  1424. void prompt_save(server_prompt_cache & prompt_cache) const {
  1425. assert(prompt.data.size() == 0);
  1426. const size_t cur_size = llama_state_seq_get_size_ext(ctx, id, 0);
  1427. SRV_WRN(" - saving prompt with length %d, total state size = %.3f MiB\n",
  1428. (int) prompt.tokens.size(), cur_size / (1024.0 * 1024.0));
  1429. auto * cur = prompt_cache.alloc(prompt, cur_size);
  1430. if (cur == nullptr) {
  1431. return;
  1432. }
  1433. llama_state_seq_get_data_ext(ctx, cur->data.data(), cur_size, id, 0);
  1434. }
  1435. void prompt_load(server_prompt_cache & prompt_cache, const server_tokens & tokens) {
  1436. bool res = prompt_cache.load(prompt, tokens, ctx, id);
  1437. if (!res) {
  1438. SLT_WRN(*this, "%s", "failed to load prompt from cache\n");
  1439. }
  1440. }
  1441. std::vector<common_adapter_lora_info> lora;
  1442. int32_t alora_invocation_start = -1;
  1443. // sampling
  1444. json json_schema;
  1445. struct common_sampler * smpl = nullptr;
  1446. llama_token sampled;
  1447. common_chat_format chat_format = COMMON_CHAT_FORMAT_CONTENT_ONLY;
  1448. std::vector<std::string> generated_tool_call_ids;
  1449. // stats
  1450. size_t n_sent_text = 0; // number of sent text character
  1451. int64_t t_start_process_prompt;
  1452. int64_t t_start_generation;
  1453. double t_prompt_processing; // ms
  1454. double t_token_generation; // ms
  1455. std::function<void(int)> callback_on_release;
  1456. // Speculative decoding stats
  1457. int32_t n_draft_total = 0; // Total draft tokens generated
  1458. int32_t n_draft_accepted = 0; // Draft tokens actually accepted
  1459. void reset() {
  1460. SLT_DBG(*this, "%s", "\n");
  1461. n_prompt_tokens_cache = 0;
  1462. last_nl_pos = 0;
  1463. generated_text = "";
  1464. has_new_line = false;
  1465. truncated = false;
  1466. stop = STOP_TYPE_NONE;
  1467. stopping_word = "";
  1468. n_past = 0;
  1469. n_sent_text = 0;
  1470. chat_format = COMMON_CHAT_FORMAT_CONTENT_ONLY;
  1471. generated_tokens.clear();
  1472. generated_token_probs.clear();
  1473. chat_msg = {};
  1474. json_schema = json();
  1475. generated_tool_call_ids.clear();
  1476. // clear speculative decoding stats
  1477. n_draft_total = 0;
  1478. n_draft_accepted = 0;
  1479. task.reset();
  1480. task_prev.reset();
  1481. // clear alora start
  1482. alora_invocation_start = -1;
  1483. }
  1484. bool need_embd() const {
  1485. GGML_ASSERT(task);
  1486. return server_task_type_need_embd(task->type);
  1487. }
  1488. bool need_logits() const {
  1489. GGML_ASSERT(task);
  1490. return server_task_type_need_logits(task->type);
  1491. }
  1492. // if the context does not have a memory module then all embeddings have to be computed within a single ubatch
  1493. // also we cannot split if the pooling would require any past tokens
  1494. bool can_split() const {
  1495. return
  1496. !need_embd() ||
  1497. (llama_get_memory(ctx) && llama_pooling_type(ctx) == LLAMA_POOLING_TYPE_LAST);
  1498. }
  1499. bool can_batch_with(server_slot & other_slot) const {
  1500. GGML_ASSERT(task);
  1501. return task->type == other_slot.task->type && are_lora_equal(lora, other_slot.lora);
  1502. }
  1503. bool has_budget(const common_params & global_params) {
  1504. GGML_ASSERT(task);
  1505. if (task->params.n_predict == -1 && global_params.n_predict == -1) {
  1506. return true; // limitless
  1507. }
  1508. n_remaining = -1;
  1509. if (task->params.n_predict != -1) {
  1510. n_remaining = task->params.n_predict - n_decoded;
  1511. } else if (global_params.n_predict != -1) {
  1512. n_remaining = global_params.n_predict - n_decoded;
  1513. }
  1514. return n_remaining > 0; // no budget
  1515. }
  1516. bool is_processing() const {
  1517. return state != SLOT_STATE_IDLE;
  1518. }
  1519. bool can_speculate() const {
  1520. return ctx_dft;
  1521. }
  1522. void add_token(const completion_token_output & token) {
  1523. if (!is_processing()) {
  1524. SLT_WRN(*this, "%s", "slot is not processing\n");
  1525. return;
  1526. }
  1527. generated_token_probs.push_back(token);
  1528. }
  1529. void release() {
  1530. if (is_processing()) {
  1531. GGML_ASSERT(task);
  1532. SLT_INF(*this, "stop processing: n_past = %d, truncated = %d\n", n_past, truncated);
  1533. t_last_used = ggml_time_us();
  1534. t_token_generation = (ggml_time_us() - t_start_generation) / 1e3;
  1535. state = SLOT_STATE_IDLE;
  1536. task_prev = std::move(task);
  1537. task.reset();
  1538. callback_on_release(id);
  1539. }
  1540. }
  1541. result_timings get_timings() const {
  1542. result_timings timings;
  1543. timings.cache_n = n_prompt_tokens_cache;
  1544. timings.prompt_n = n_prompt_tokens_processed;
  1545. timings.prompt_ms = t_prompt_processing;
  1546. timings.prompt_per_token_ms = t_prompt_processing / n_prompt_tokens_processed;
  1547. timings.prompt_per_second = 1e3 / t_prompt_processing * n_prompt_tokens_processed;
  1548. timings.predicted_n = n_decoded;
  1549. timings.predicted_ms = t_token_generation;
  1550. timings.predicted_per_token_ms = t_token_generation / n_decoded;
  1551. timings.predicted_per_second = 1e3 / t_token_generation * n_decoded;
  1552. // Add speculative metrics
  1553. if (n_draft_total > 0) {
  1554. timings.draft_n = n_draft_total;
  1555. timings.draft_n_accepted = n_draft_accepted;
  1556. }
  1557. return timings;
  1558. }
  1559. const common_chat_msg & update_chat_msg(std::vector<common_chat_msg_diff> & diffs) {
  1560. GGML_ASSERT(task);
  1561. auto previous_msg = chat_msg;
  1562. SRV_DBG("Parsing chat message: %s\n", generated_text.c_str());
  1563. auto new_msg = common_chat_parse(
  1564. generated_text,
  1565. /* is_partial= */ stop != STOP_TYPE_EOS,
  1566. task->params.oaicompat_chat_syntax);
  1567. if (!new_msg.empty()) {
  1568. new_msg.set_tool_call_ids(generated_tool_call_ids, gen_tool_call_id);
  1569. chat_msg = new_msg;
  1570. diffs = common_chat_msg_diff::compute_diffs(previous_msg, new_msg.empty() ? previous_msg : new_msg);
  1571. }
  1572. return chat_msg;
  1573. }
  1574. size_t find_stopping_strings(const std::string & text, const size_t last_token_size, bool is_full_stop) {
  1575. GGML_ASSERT(task);
  1576. size_t stop_pos = std::string::npos;
  1577. for (const std::string & word : task->params.antiprompt) {
  1578. size_t pos;
  1579. if (is_full_stop) {
  1580. const size_t tmp = word.size() + last_token_size;
  1581. const size_t from_pos = text.size() > tmp ? text.size() - tmp : 0;
  1582. pos = text.find(word, from_pos);
  1583. } else {
  1584. // otherwise, partial stop
  1585. pos = string_find_partial_stop(text, word);
  1586. }
  1587. if (pos != std::string::npos && (stop_pos == std::string::npos || pos < stop_pos)) {
  1588. if (is_full_stop) {
  1589. stop = STOP_TYPE_WORD;
  1590. stopping_word = word;
  1591. has_next_token = false;
  1592. }
  1593. stop_pos = pos;
  1594. }
  1595. }
  1596. return stop_pos;
  1597. }
  1598. void print_timings() const {
  1599. const double t_prompt = t_prompt_processing / n_prompt_tokens_processed;
  1600. const double n_prompt_second = 1e3 / t_prompt_processing * n_prompt_tokens_processed;
  1601. const double t_gen = t_token_generation / n_decoded;
  1602. const double n_gen_second = 1e3 / t_token_generation * n_decoded;
  1603. SLT_INF(*this,
  1604. "\n"
  1605. "prompt eval time = %10.2f ms / %5d tokens (%8.2f ms per token, %8.2f tokens per second)\n"
  1606. " eval time = %10.2f ms / %5d tokens (%8.2f ms per token, %8.2f tokens per second)\n"
  1607. " total time = %10.2f ms / %5d tokens\n",
  1608. t_prompt_processing, n_prompt_tokens_processed, t_prompt, n_prompt_second,
  1609. t_token_generation, n_decoded, t_gen, n_gen_second,
  1610. t_prompt_processing + t_token_generation, n_prompt_tokens_processed + n_decoded);
  1611. if (n_draft_total > 0) {
  1612. const float draft_ratio = (float) n_draft_accepted / n_draft_total;
  1613. SLT_INF(*this,
  1614. "\n"
  1615. "draft acceptance rate = %0.5f (%5d accepted / %5d generated)\n",
  1616. draft_ratio, n_draft_accepted, n_draft_total
  1617. );
  1618. }
  1619. }
  1620. json to_json(bool only_metrics = false) const {
  1621. json res;
  1622. res = {
  1623. {"id", id},
  1624. {"n_ctx", n_ctx},
  1625. {"speculative", can_speculate()},
  1626. {"is_processing", is_processing()},
  1627. };
  1628. const auto & ptask = task ? task : task_prev;
  1629. if (ptask) {
  1630. res["id_task"] = ptask->id;
  1631. res["params"] = ptask->params.to_json(only_metrics);
  1632. res["next_token"] = {
  1633. {
  1634. {"has_next_token", has_next_token},
  1635. {"has_new_line", has_new_line},
  1636. {"n_remain", n_remaining},
  1637. {"n_decoded", n_decoded},
  1638. }
  1639. };
  1640. if (!only_metrics) {
  1641. res["prompt"] = ptask->tokens.detokenize(ctx, true);
  1642. res["generated"] = generated_text;
  1643. }
  1644. }
  1645. return res;
  1646. }
  1647. };
  1648. struct server_metrics {
  1649. int64_t t_start = 0;
  1650. uint64_t n_prompt_tokens_processed_total = 0;
  1651. uint64_t t_prompt_processing_total = 0;
  1652. uint64_t n_tokens_predicted_total = 0;
  1653. uint64_t t_tokens_generation_total = 0;
  1654. uint64_t n_past_max = 0;
  1655. uint64_t n_prompt_tokens_processed = 0;
  1656. uint64_t t_prompt_processing = 0;
  1657. uint64_t n_tokens_predicted = 0;
  1658. uint64_t t_tokens_generation = 0;
  1659. uint64_t n_decode_total = 0;
  1660. uint64_t n_busy_slots_total = 0;
  1661. void init() {
  1662. t_start = ggml_time_us();
  1663. }
  1664. void on_prompt_eval(const server_slot & slot) {
  1665. n_prompt_tokens_processed_total += slot.n_prompt_tokens_processed;
  1666. n_prompt_tokens_processed += slot.n_prompt_tokens_processed;
  1667. t_prompt_processing += slot.t_prompt_processing;
  1668. t_prompt_processing_total += slot.t_prompt_processing;
  1669. if (slot.n_past > 0) {
  1670. n_past_max = std::max(n_past_max, (uint64_t) slot.n_past);
  1671. }
  1672. }
  1673. void on_prediction(const server_slot & slot) {
  1674. n_tokens_predicted_total += slot.n_decoded;
  1675. n_tokens_predicted += slot.n_decoded;
  1676. t_tokens_generation += slot.t_token_generation;
  1677. t_tokens_generation_total += slot.t_token_generation;
  1678. }
  1679. void on_decoded(const std::vector<server_slot> & slots) {
  1680. n_decode_total++;
  1681. for (const auto & slot : slots) {
  1682. if (slot.is_processing()) {
  1683. n_busy_slots_total++;
  1684. }
  1685. if (slot.n_past > 0) {
  1686. n_past_max = std::max(n_past_max, (uint64_t) slot.n_past);
  1687. }
  1688. }
  1689. }
  1690. void reset_bucket() {
  1691. n_prompt_tokens_processed = 0;
  1692. t_prompt_processing = 0;
  1693. n_tokens_predicted = 0;
  1694. t_tokens_generation = 0;
  1695. }
  1696. };
  1697. struct server_queue {
  1698. int id = 0;
  1699. bool running;
  1700. // queues
  1701. std::deque<server_task> queue_tasks;
  1702. std::deque<server_task> queue_tasks_deferred;
  1703. std::mutex mutex_tasks;
  1704. std::condition_variable condition_tasks;
  1705. // callback functions
  1706. std::function<void(server_task &&)> callback_new_task;
  1707. std::function<void(void)> callback_update_slots;
  1708. // Add a new task to the end of the queue
  1709. int post(server_task && task, bool front = false) {
  1710. std::unique_lock<std::mutex> lock(mutex_tasks);
  1711. GGML_ASSERT(task.id != -1);
  1712. // if this is cancel task make sure to clean up pending tasks
  1713. if (task.type == SERVER_TASK_TYPE_CANCEL) {
  1714. cleanup_pending_task(task.id_target);
  1715. }
  1716. const int task_id = task.id;
  1717. QUE_DBG("new task, id = %d, front = %d\n", task_id, front);
  1718. if (front) {
  1719. queue_tasks.push_front(std::move(task));
  1720. } else {
  1721. queue_tasks.push_back(std::move(task));
  1722. }
  1723. condition_tasks.notify_one();
  1724. return task_id;
  1725. }
  1726. // multi-task version of post()
  1727. int post(std::vector<server_task> && tasks, bool front = false) {
  1728. std::unique_lock<std::mutex> lock(mutex_tasks);
  1729. for (auto & task : tasks) {
  1730. if (task.id == -1) {
  1731. task.id = id++;
  1732. }
  1733. // if this is cancel task make sure to clean up pending tasks
  1734. if (task.type == SERVER_TASK_TYPE_CANCEL) {
  1735. cleanup_pending_task(task.id_target);
  1736. }
  1737. QUE_DBG("new task, id = %d/%d, front = %d\n", task.id, (int) tasks.size(), front);
  1738. if (front) {
  1739. queue_tasks.push_front(std::move(task));
  1740. } else {
  1741. queue_tasks.push_back(std::move(task));
  1742. }
  1743. }
  1744. condition_tasks.notify_one();
  1745. return 0;
  1746. }
  1747. // Add a new task, but defer until one slot is available
  1748. void defer(server_task && task) {
  1749. std::unique_lock<std::mutex> lock(mutex_tasks);
  1750. QUE_DBG("defer task, id = %d\n", task.id);
  1751. queue_tasks_deferred.push_back(std::move(task));
  1752. condition_tasks.notify_one();
  1753. }
  1754. // Get the next id for creating a new task
  1755. int get_new_id() {
  1756. std::unique_lock<std::mutex> lock(mutex_tasks);
  1757. int new_id = id++;
  1758. return new_id;
  1759. }
  1760. // Register function to process a new task
  1761. void on_new_task(std::function<void(server_task &&)> callback) {
  1762. callback_new_task = std::move(callback);
  1763. }
  1764. // Register the function to be called when all slots data is ready to be processed
  1765. void on_update_slots(std::function<void(void)> callback) {
  1766. callback_update_slots = std::move(callback);
  1767. }
  1768. // Call when the state of one slot is changed, it will move one task from deferred to main queue
  1769. void pop_deferred_task() {
  1770. std::unique_lock<std::mutex> lock(mutex_tasks);
  1771. if (!queue_tasks_deferred.empty()) {
  1772. queue_tasks.emplace_front(std::move(queue_tasks_deferred.front()));
  1773. queue_tasks_deferred.pop_front();
  1774. }
  1775. condition_tasks.notify_one();
  1776. }
  1777. // end the start_loop routine
  1778. void terminate() {
  1779. std::unique_lock<std::mutex> lock(mutex_tasks);
  1780. running = false;
  1781. condition_tasks.notify_all();
  1782. }
  1783. /**
  1784. * Main loop consists of these steps:
  1785. * - Wait until a new task arrives
  1786. * - Process the task (i.e. maybe copy data into slot)
  1787. * - Check if multitask is finished
  1788. * - Update all slots
  1789. */
  1790. void start_loop() {
  1791. running = true;
  1792. while (true) {
  1793. QUE_DBG("%s", "processing new tasks\n");
  1794. while (true) {
  1795. std::unique_lock<std::mutex> lock(mutex_tasks);
  1796. if (!running) {
  1797. QUE_DBG("%s", "terminate\n");
  1798. return;
  1799. }
  1800. if (queue_tasks.empty()) {
  1801. lock.unlock();
  1802. break;
  1803. }
  1804. server_task task = std::move(queue_tasks.front());
  1805. queue_tasks.pop_front();
  1806. lock.unlock();
  1807. QUE_DBG("processing task, id = %d\n", task.id);
  1808. callback_new_task(std::move(task));
  1809. }
  1810. // all tasks in the current loop is processed, slots data is now ready
  1811. QUE_DBG("%s", "update slots\n");
  1812. callback_update_slots();
  1813. QUE_DBG("%s", "waiting for new tasks\n");
  1814. {
  1815. std::unique_lock<std::mutex> lock(mutex_tasks);
  1816. if (!running) {
  1817. QUE_DBG("%s", "terminate\n");
  1818. return;
  1819. }
  1820. if (queue_tasks.empty()) {
  1821. condition_tasks.wait(lock, [&]{
  1822. return (!queue_tasks.empty() || !running);
  1823. });
  1824. }
  1825. }
  1826. }
  1827. }
  1828. private:
  1829. void cleanup_pending_task(int id_target) {
  1830. // no need lock because this is called exclusively by post()
  1831. auto rm_func = [id_target](const server_task & task) {
  1832. return task.id == id_target;
  1833. };
  1834. queue_tasks.erase(
  1835. std::remove_if(queue_tasks.begin(), queue_tasks.end(), rm_func),
  1836. queue_tasks.end());
  1837. queue_tasks_deferred.erase(
  1838. std::remove_if(queue_tasks_deferred.begin(), queue_tasks_deferred.end(), rm_func),
  1839. queue_tasks_deferred.end());
  1840. }
  1841. };
  1842. struct server_response {
  1843. bool running = true;
  1844. // for keeping track of all tasks waiting for the result
  1845. std::unordered_set<int> waiting_task_ids;
  1846. // the main result queue (using ptr for polymorphism)
  1847. std::vector<server_task_result_ptr> queue_results;
  1848. std::mutex mutex_results;
  1849. std::condition_variable condition_results;
  1850. // add the id_task to the list of tasks waiting for response
  1851. void add_waiting_task_id(int id_task) {
  1852. SRV_DBG("add task %d to waiting list. current waiting = %d (before add)\n", id_task, (int) waiting_task_ids.size());
  1853. std::unique_lock<std::mutex> lock(mutex_results);
  1854. waiting_task_ids.insert(id_task);
  1855. }
  1856. void add_waiting_tasks(const std::vector<server_task> & tasks) {
  1857. std::unique_lock<std::mutex> lock(mutex_results);
  1858. for (const auto & task : tasks) {
  1859. SRV_DBG("add task %d to waiting list. current waiting = %d (before add)\n", task.id, (int) waiting_task_ids.size());
  1860. waiting_task_ids.insert(task.id);
  1861. }
  1862. }
  1863. // when the request is finished, we can remove task associated with it
  1864. void remove_waiting_task_id(int id_task) {
  1865. SRV_DBG("remove task %d from waiting list. current waiting = %d (before remove)\n", id_task, (int) waiting_task_ids.size());
  1866. std::unique_lock<std::mutex> lock(mutex_results);
  1867. waiting_task_ids.erase(id_task);
  1868. // make sure to clean up all pending results
  1869. queue_results.erase(
  1870. std::remove_if(queue_results.begin(), queue_results.end(), [id_task](const server_task_result_ptr & res) {
  1871. return res->id == id_task;
  1872. }),
  1873. queue_results.end());
  1874. }
  1875. void remove_waiting_task_ids(const std::unordered_set<int> & id_tasks) {
  1876. std::unique_lock<std::mutex> lock(mutex_results);
  1877. for (const auto & id_task : id_tasks) {
  1878. SRV_DBG("remove task %d from waiting list. current waiting = %d (before remove)\n", id_task, (int) waiting_task_ids.size());
  1879. waiting_task_ids.erase(id_task);
  1880. }
  1881. }
  1882. // This function blocks the thread until there is a response for one of the id_tasks
  1883. server_task_result_ptr recv(const std::unordered_set<int> & id_tasks) {
  1884. while (true) {
  1885. std::unique_lock<std::mutex> lock(mutex_results);
  1886. condition_results.wait(lock, [&]{
  1887. if (!running) {
  1888. SRV_DBG("%s : queue result stop\n", __func__);
  1889. std::terminate(); // we cannot return here since the caller is HTTP code
  1890. }
  1891. return !queue_results.empty();
  1892. });
  1893. for (size_t i = 0; i < queue_results.size(); i++) {
  1894. if (id_tasks.find(queue_results[i]->id) != id_tasks.end()) {
  1895. server_task_result_ptr res = std::move(queue_results[i]);
  1896. queue_results.erase(queue_results.begin() + i);
  1897. return res;
  1898. }
  1899. }
  1900. }
  1901. // should never reach here
  1902. }
  1903. // same as recv(), but have timeout in seconds
  1904. // if timeout is reached, nullptr is returned
  1905. server_task_result_ptr recv_with_timeout(const std::unordered_set<int> & id_tasks, int timeout) {
  1906. while (true) {
  1907. std::unique_lock<std::mutex> lock(mutex_results);
  1908. for (int i = 0; i < (int) queue_results.size(); i++) {
  1909. if (id_tasks.find(queue_results[i]->id) != id_tasks.end()) {
  1910. server_task_result_ptr res = std::move(queue_results[i]);
  1911. queue_results.erase(queue_results.begin() + i);
  1912. return res;
  1913. }
  1914. }
  1915. std::cv_status cr_res = condition_results.wait_for(lock, std::chrono::seconds(timeout));
  1916. if (!running) {
  1917. SRV_DBG("%s : queue result stop\n", __func__);
  1918. std::terminate(); // we cannot return here since the caller is HTTP code
  1919. }
  1920. if (cr_res == std::cv_status::timeout) {
  1921. return nullptr;
  1922. }
  1923. }
  1924. // should never reach here
  1925. }
  1926. // single-task version of recv()
  1927. server_task_result_ptr recv(int id_task) {
  1928. std::unordered_set<int> id_tasks = {id_task};
  1929. return recv(id_tasks);
  1930. }
  1931. // Send a new result to a waiting id_task
  1932. void send(server_task_result_ptr && result) {
  1933. SRV_DBG("sending result for task id = %d\n", result->id);
  1934. std::unique_lock<std::mutex> lock(mutex_results);
  1935. for (const auto & id_task : waiting_task_ids) {
  1936. if (result->id == id_task) {
  1937. SRV_DBG("task id = %d pushed to result queue\n", result->id);
  1938. queue_results.emplace_back(std::move(result));
  1939. condition_results.notify_all();
  1940. return;
  1941. }
  1942. }
  1943. }
  1944. // terminate the waiting loop
  1945. void terminate() {
  1946. running = false;
  1947. condition_results.notify_all();
  1948. }
  1949. };
  1950. struct server_context {
  1951. common_params params_base;
  1952. // note: keep these alive - they determine the lifetime of the model, context, etc.
  1953. common_init_result llama_init;
  1954. common_init_result llama_init_dft;
  1955. llama_model * model = nullptr;
  1956. llama_context * ctx = nullptr;
  1957. // multimodal
  1958. mtmd_context * mctx = nullptr;
  1959. const llama_vocab * vocab = nullptr;
  1960. bool vocab_dft_compatible = true;
  1961. llama_model * model_dft = nullptr;
  1962. llama_context_params cparams_dft;
  1963. llama_batch batch {};
  1964. bool clean_kv_cache = true;
  1965. bool add_bos_token = true;
  1966. int32_t n_ctx; // total context for all clients / slots
  1967. // slots / clients
  1968. std::vector<server_slot> slots;
  1969. int slots_debug = 0;
  1970. server_queue queue_tasks;
  1971. server_response queue_results;
  1972. std::unique_ptr<server_prompt_cache> prompt_cache;
  1973. server_metrics metrics;
  1974. // Necessary similarity of prompt for slot selection
  1975. float slot_prompt_similarity = 0.0f;
  1976. common_chat_templates_ptr chat_templates;
  1977. oaicompat_parser_options oai_parser_opt;
  1978. ~server_context() {
  1979. mtmd_free(mctx);
  1980. // Clear any sampling context
  1981. for (server_slot & slot : slots) {
  1982. common_sampler_free(slot.smpl);
  1983. slot.smpl = nullptr;
  1984. llama_free(slot.ctx_dft);
  1985. slot.ctx_dft = nullptr;
  1986. common_speculative_free(slot.spec);
  1987. slot.spec = nullptr;
  1988. llama_batch_free(slot.batch_spec);
  1989. }
  1990. llama_batch_free(batch);
  1991. }
  1992. bool load_model(const common_params & params) {
  1993. SRV_INF("loading model '%s'\n", params.model.path.c_str());
  1994. params_base = params;
  1995. llama_init = common_init_from_params(params_base);
  1996. model = llama_init.model.get();
  1997. ctx = llama_init.context.get();
  1998. if (model == nullptr) {
  1999. SRV_ERR("failed to load model, '%s'\n", params_base.model.path.c_str());
  2000. return false;
  2001. }
  2002. vocab = llama_model_get_vocab(model);
  2003. n_ctx = llama_n_ctx(ctx);
  2004. add_bos_token = llama_vocab_get_add_bos(vocab);
  2005. if (!params_base.speculative.model.path.empty() || !params_base.speculative.model.hf_repo.empty()) {
  2006. SRV_INF("loading draft model '%s'\n", params_base.speculative.model.path.c_str());
  2007. auto params_dft = params_base;
  2008. params_dft.devices = params_base.speculative.devices;
  2009. params_dft.model = params_base.speculative.model;
  2010. params_dft.n_ctx = params_base.speculative.n_ctx == 0 ? params_base.n_ctx / params_base.n_parallel : params_base.speculative.n_ctx;
  2011. params_dft.n_gpu_layers = params_base.speculative.n_gpu_layers;
  2012. params_dft.n_parallel = 1;
  2013. params_dft.cache_type_k = params_base.speculative.cache_type_k;
  2014. params_dft.cache_type_v = params_base.speculative.cache_type_v;
  2015. params_dft.cpuparams.n_threads = params_base.speculative.cpuparams.n_threads;
  2016. params_dft.cpuparams_batch.n_threads = params_base.speculative.cpuparams_batch.n_threads;
  2017. params_dft.tensor_buft_overrides = params_base.speculative.tensor_buft_overrides;
  2018. llama_init_dft = common_init_from_params(params_dft);
  2019. model_dft = llama_init_dft.model.get();
  2020. if (model_dft == nullptr) {
  2021. SRV_ERR("failed to load draft model, '%s'\n", params_base.speculative.model.path.c_str());
  2022. return false;
  2023. }
  2024. vocab_dft_compatible = common_speculative_are_compatible(ctx, llama_init_dft.context.get());
  2025. if (!vocab_dft_compatible) {
  2026. SRV_INF("the draft model '%s' is not compatible with the target model '%s'. tokens will be translated between the draft and target models.\n", params_base.speculative.model.path.c_str(), params_base.model.path.c_str());
  2027. }
  2028. const int n_ctx_dft = llama_n_ctx(llama_init_dft.context.get());
  2029. cparams_dft = common_context_params_to_llama(params_dft);
  2030. cparams_dft.n_batch = n_ctx_dft;
  2031. // the context is not needed - we will create one for each slot
  2032. llama_init_dft.context.reset();
  2033. }
  2034. chat_templates = common_chat_templates_init(model, params_base.chat_template);
  2035. try {
  2036. common_chat_format_example(chat_templates.get(), params.use_jinja, params.default_template_kwargs);
  2037. } catch (const std::exception & e) {
  2038. SRV_WRN("%s: Chat template parsing error: %s\n", __func__, e.what());
  2039. SRV_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__);
  2040. chat_templates = common_chat_templates_init(model, "chatml");
  2041. }
  2042. std::string & mmproj_path = params_base.mmproj.path;
  2043. if (!mmproj_path.empty()) {
  2044. mtmd_context_params mparams = mtmd_context_params_default();
  2045. mparams.use_gpu = params_base.mmproj_use_gpu;
  2046. mparams.print_timings = false;
  2047. mparams.n_threads = params_base.cpuparams.n_threads;
  2048. mparams.verbosity = params_base.verbosity > 0 ? GGML_LOG_LEVEL_DEBUG : GGML_LOG_LEVEL_INFO;
  2049. mctx = mtmd_init_from_file(mmproj_path.c_str(), model, mparams);
  2050. if (mctx == nullptr) {
  2051. SRV_ERR("failed to load multimodal model, '%s'\n", mmproj_path.c_str());
  2052. return false;
  2053. }
  2054. SRV_INF("loaded multimodal model, '%s'\n", mmproj_path.c_str());
  2055. if (params_base.ctx_shift) {
  2056. params_base.ctx_shift = false;
  2057. SRV_WRN("%s\n", "ctx_shift is not supported by multimodal, it will be disabled");
  2058. }
  2059. if (params_base.n_cache_reuse) {
  2060. params_base.n_cache_reuse = 0;
  2061. SRV_WRN("%s\n", "cache_reuse is not supported by multimodal, it will be disabled");
  2062. }
  2063. if (!params_base.speculative.model.path.empty()) {
  2064. SRV_ERR("%s\n", "err: speculative decode is not supported by multimodal");
  2065. return false;
  2066. }
  2067. }
  2068. if (!llama_memory_can_shift(llama_get_memory(ctx))) {
  2069. if (params_base.ctx_shift) {
  2070. params_base.ctx_shift = false;
  2071. SRV_WRN("%s\n", "ctx_shift is not supported by this context, it will be disabled");
  2072. }
  2073. if (params_base.n_cache_reuse) {
  2074. params_base.n_cache_reuse = 0;
  2075. SRV_WRN("%s\n", "cache_reuse is not supported by this context, it will be disabled");
  2076. }
  2077. }
  2078. return true;
  2079. }
  2080. void init() {
  2081. const int32_t n_ctx_slot = n_ctx / params_base.n_parallel;
  2082. SRV_INF("initializing slots, n_slots = %d\n", params_base.n_parallel);
  2083. for (int i = 0; i < params_base.n_parallel; i++) {
  2084. server_slot slot;
  2085. slot.id = i;
  2086. slot.ctx = ctx;
  2087. slot.n_ctx = n_ctx_slot;
  2088. slot.mctx = mctx;
  2089. slot.prompt.tokens.has_mtmd = mctx != nullptr;
  2090. if (model_dft) {
  2091. slot.batch_spec = llama_batch_init(params_base.speculative.n_max + 1, 0, 1);
  2092. slot.ctx_dft = llama_init_from_model(model_dft, cparams_dft);
  2093. if (slot.ctx_dft == nullptr) {
  2094. SRV_ERR("%s", "failed to create draft context\n");
  2095. return;
  2096. }
  2097. slot.spec = common_speculative_init(slot.ctx, slot.ctx_dft);
  2098. if (slot.spec == nullptr) {
  2099. SRV_ERR("%s", "failed to create speculator\n");
  2100. return;
  2101. }
  2102. for (auto & pair : params_base.speculative.replacements) {
  2103. common_speculative_add_replacement_tgt_dft(slot.spec, pair.first.c_str(), pair.second.c_str());
  2104. }
  2105. }
  2106. SLT_INF(slot, "new slot n_ctx_slot = %d\n", slot.n_ctx);
  2107. slot.callback_on_release = [this](int) {
  2108. queue_tasks.pop_deferred_task();
  2109. };
  2110. slot.reset();
  2111. slots.push_back(std::move(slot));
  2112. }
  2113. {
  2114. const char * LLAMA_SERVER_SLOTS_DEBUG = getenv("LLAMA_SERVER_SLOTS_DEBUG");
  2115. slots_debug = LLAMA_SERVER_SLOTS_DEBUG ? atoi(LLAMA_SERVER_SLOTS_DEBUG) : 0;
  2116. if (slots_debug) {
  2117. SRV_WRN("slots debug = %d\n", slots_debug);
  2118. }
  2119. }
  2120. // the update_slots() logic will always submit a maximum of n_batch or n_parallel tokens
  2121. // 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)
  2122. {
  2123. const int32_t n_batch = llama_n_batch(ctx);
  2124. batch = llama_batch_init(std::max(n_batch, params_base.n_parallel), 0, 1);
  2125. }
  2126. metrics.init();
  2127. if (params_base.cache_ram_mib != 0) {
  2128. if (params_base.cache_ram_mib < 0) {
  2129. SRV_WRN("prompt cache is enabled, size limit: %s\n", "no limit");
  2130. } else {
  2131. SRV_WRN("prompt cache is enabled, size limit: %d MiB\n", params_base.cache_ram_mib);
  2132. }
  2133. SRV_WRN("%s", "use `--cache-ram 0` to disable the prompt cache\n");
  2134. prompt_cache = std::make_unique<server_prompt_cache>(params_base.cache_ram_mib, n_ctx);
  2135. } else {
  2136. SRV_WRN("%s", "prompt cache is disabled - use `--cache-ram N` to enable it\n");
  2137. }
  2138. SRV_WRN("%s", "for more info see https://github.com/ggml-org/llama.cpp/pull/16391\n");
  2139. // thinking is enabled if:
  2140. // 1. It's not explicitly disabled (reasoning_budget == 0)
  2141. // 2. The chat template supports it
  2142. const bool enable_thinking = params_base.use_jinja && params_base.reasoning_budget != 0 && common_chat_templates_support_enable_thinking(chat_templates.get());
  2143. SRV_INF("thinking = %d\n", enable_thinking);
  2144. oai_parser_opt = {
  2145. /* use_jinja */ params_base.use_jinja,
  2146. /* prefill_assistant */ params_base.prefill_assistant,
  2147. /* reasoning_format */ params_base.reasoning_format,
  2148. /* chat_template_kwargs */ params_base.default_template_kwargs,
  2149. /* common_chat_templates */ chat_templates.get(),
  2150. /* allow_image */ mctx ? mtmd_support_vision(mctx) : false,
  2151. /* allow_audio */ mctx ? mtmd_support_audio (mctx) : false,
  2152. /* enable_thinking */ enable_thinking,
  2153. };
  2154. }
  2155. server_slot * get_slot_by_id(int id) {
  2156. for (server_slot & slot : slots) {
  2157. if (slot.id == id) {
  2158. return &slot;
  2159. }
  2160. }
  2161. return nullptr;
  2162. }
  2163. server_slot * get_available_slot(const server_task & task) {
  2164. server_slot * ret = nullptr;
  2165. bool update_cache = false;
  2166. // find the slot that has at least n% prompt similarity
  2167. if (ret == nullptr && slot_prompt_similarity != 0.0f) {
  2168. float sim_best = 0;
  2169. for (server_slot & slot : slots) {
  2170. // skip the slot if it is not available
  2171. if (slot.is_processing()) {
  2172. continue;
  2173. }
  2174. const auto & tokens = slot.prompt.tokens;
  2175. // skip the slot if it does not contains cached tokens
  2176. if (tokens.empty()) {
  2177. continue;
  2178. }
  2179. // fraction of the Longest Common Prefix length with respect to the input prompt length
  2180. const float sim_cur = float(tokens.get_common_prefix(task.tokens)) / task.tokens.size();
  2181. // select the current slot if the criteria match
  2182. if (sim_cur > sim_best && sim_cur > slot_prompt_similarity) {
  2183. sim_best = sim_cur;
  2184. ret = &slot;
  2185. }
  2186. }
  2187. if (ret != nullptr) {
  2188. const float f_keep = (sim_best*task.tokens.size()) / ret->prompt.tokens.size();
  2189. SLT_INF(*ret, "selected slot by LCP similarity, sim_best = %.3f (> %.3f thold), f_keep = %.3f\n",
  2190. sim_best, slot_prompt_similarity, f_keep);
  2191. // if we are about to lose a large portion of the existing context - save it in the prompt cache
  2192. if (f_keep < 0.5f) {
  2193. update_cache = true;
  2194. }
  2195. }
  2196. }
  2197. // find the slot that has been least recently used
  2198. if (ret == nullptr) {
  2199. int64_t t_last = -1;
  2200. for (server_slot & slot : slots) {
  2201. // skip the slot if it is not available
  2202. if (slot.is_processing()) {
  2203. continue;
  2204. }
  2205. // select the current slot if the criteria match
  2206. if (!ret || slot.t_last_used <= t_last) {
  2207. t_last = slot.t_last_used;
  2208. ret = &slot;
  2209. }
  2210. }
  2211. if (ret != nullptr) {
  2212. SLT_INF(*ret, "selected slot by LRU, t_last = %" PRId64 "\n", t_last);
  2213. update_cache = true;
  2214. }
  2215. }
  2216. if (ret) {
  2217. const auto & tokens = ret->prompt.tokens;
  2218. update_cache = update_cache && prompt_cache;
  2219. // cache prompts only for completion tasks
  2220. update_cache = update_cache && task.type == SERVER_TASK_TYPE_COMPLETION;
  2221. // don't update the cache if the slot's context is empty
  2222. update_cache = update_cache && tokens.size() > 0;
  2223. // TODO: mtmd does not support prompt cache
  2224. update_cache = update_cache && (ret->mctx == nullptr);
  2225. if (update_cache) {
  2226. SRV_WRN("%s", "updating prompt cache\n");
  2227. const int64_t t_start = ggml_time_us();
  2228. ret->prompt_save(*prompt_cache);
  2229. ret->prompt_load(*prompt_cache, task.tokens);
  2230. prompt_cache->update();
  2231. SRV_WRN("prompt cache update took %.2f ms\n", (ggml_time_us() - t_start) / 1000.0);
  2232. }
  2233. }
  2234. return ret;
  2235. }
  2236. bool launch_slot_with_task(server_slot & slot, server_task && task) {
  2237. slot.reset();
  2238. if (!are_lora_equal(task.params.lora, slot.lora)) {
  2239. // if lora has changed, check to see if the cache should be cleared
  2240. if (lora_should_clear_cache(slot.lora, task.params.lora)) {
  2241. SLT_INF(slot, "clearing cache for lora change. %zu loras -> %zu loras\n", slot.lora.size(), task.params.lora.size());
  2242. slot.prompt.tokens.clear();
  2243. } else {
  2244. SLT_INF(slot, "keeping cache for alora. %zu target loras\n", task.params.lora.size());
  2245. }
  2246. slot.lora = task.params.lora;
  2247. }
  2248. // if using alora, make sure it's only a single one requested and active
  2249. size_t alora_invocation_start = task.tokens.size();
  2250. if (lora_all_alora(slot.lora)) {
  2251. const auto & enabled_ids = lora_get_enabled_ids(slot.lora);
  2252. // TODO: This will error out if a user requests two aloras, but only
  2253. // provides the activation string for one. We could, instead search
  2254. // for all requested alora activation strings and then either keep
  2255. // only the last one, or reject if multiple are found.
  2256. if (enabled_ids.size() != 1) {
  2257. send_error(task, "Cannot run multiple aLoRAs in a single request", ERROR_TYPE_INVALID_REQUEST);
  2258. return false;
  2259. }
  2260. const auto & lora = slot.lora[enabled_ids[0]].ptr;
  2261. // get the pointer and count for the invocation tokens
  2262. const uint64_t n_invocation_tokens = llama_adapter_get_alora_n_invocation_tokens(lora);
  2263. const llama_token * invocation_tokens = llama_adapter_get_alora_invocation_tokens (lora);
  2264. // scan backwards through the prompt tokens to find the last
  2265. // occurrence of the invocation sequence
  2266. int match_idx = static_cast<int>(n_invocation_tokens) - 1;
  2267. for (int i = task.tokens.size() - 1; i >= 0; --i) {
  2268. // the token in this position matches the next token to find in
  2269. // the invocation sequence
  2270. if (task.tokens[i] == invocation_tokens[match_idx]) {
  2271. // if it's a full match, we've found the start
  2272. if (match_idx == 0) {
  2273. alora_invocation_start = i;
  2274. break;
  2275. }
  2276. // otherwise, check the next token in the sequence
  2277. --match_idx;
  2278. } else {
  2279. // no match in this position, so start looking over again
  2280. match_idx = static_cast<int>(n_invocation_tokens) - 1;
  2281. }
  2282. }
  2283. // if the activation string is not found, disable the alora
  2284. if (alora_invocation_start == task.tokens.size()) {
  2285. SLT_DBG(slot, "alora %zu requested, but not found. deactivating\n", enabled_ids[0]);
  2286. slot.lora[enabled_ids[0]].scale = 0.0f;
  2287. } else {
  2288. SLT_DBG(slot, "alora %zu activated starting at %zu\n", enabled_ids[0], alora_invocation_start);
  2289. slot.alora_invocation_start = alora_invocation_start;
  2290. }
  2291. }
  2292. if (!task.tokens.validate(ctx)) {
  2293. send_error(task, "Prompt contains invalid tokens", ERROR_TYPE_INVALID_REQUEST);
  2294. return false;
  2295. }
  2296. SLT_DBG(slot, "launching slot : %s\n", safe_json_to_str(slot.to_json()).c_str());
  2297. // initialize samplers
  2298. {
  2299. if (slot.smpl != nullptr) {
  2300. common_sampler_free(slot.smpl);
  2301. }
  2302. slot.smpl = common_sampler_init(model, task.params.sampling);
  2303. if (slot.smpl == nullptr) {
  2304. // for now, the only error that may happen here is invalid grammar
  2305. send_error(task, "Failed to parse grammar", ERROR_TYPE_INVALID_REQUEST);
  2306. return false;
  2307. }
  2308. }
  2309. // initialize draft batch
  2310. if (slot.ctx_dft) {
  2311. llama_batch_free(slot.batch_spec);
  2312. slot.batch_spec = llama_batch_init(task.params.speculative.n_max + 1, 0, 1);
  2313. }
  2314. slot.task = std::make_unique<const server_task>(std::move(task));
  2315. slot.state = SLOT_STATE_STARTED;
  2316. SLT_INF(slot, "%s", "processing task\n");
  2317. return true;
  2318. }
  2319. void kv_cache_clear() {
  2320. SRV_DBG("%s", "clearing KV cache\n");
  2321. // clear the entire KV cache
  2322. llama_memory_clear(llama_get_memory(ctx), true);
  2323. clean_kv_cache = false;
  2324. }
  2325. bool process_token(completion_token_output & result, server_slot & slot) {
  2326. // remember which tokens were sampled - used for repetition penalties during sampling
  2327. const std::string token_str = result.text_to_send;
  2328. slot.sampled = result.tok;
  2329. slot.generated_text += token_str;
  2330. if (slot.task->params.return_tokens) {
  2331. slot.generated_tokens.push_back(result.tok);
  2332. }
  2333. slot.has_next_token = true;
  2334. // check if there is incomplete UTF-8 character at the end
  2335. bool incomplete = validate_utf8(slot.generated_text) < slot.generated_text.size();
  2336. // search stop word and delete it
  2337. if (!incomplete) {
  2338. size_t pos = std::min(slot.n_sent_text, slot.generated_text.size());
  2339. const std::string str_test = slot.generated_text.substr(pos);
  2340. bool send_text = true;
  2341. size_t stop_pos = slot.find_stopping_strings(str_test, token_str.size(), true);
  2342. if (stop_pos != std::string::npos) {
  2343. slot.generated_text.erase(
  2344. slot.generated_text.begin() + pos + stop_pos,
  2345. slot.generated_text.end());
  2346. pos = std::min(slot.n_sent_text, slot.generated_text.size());
  2347. } else if (slot.has_next_token && !llama_vocab_is_eog(vocab, result.tok) ) {
  2348. stop_pos = slot.find_stopping_strings(str_test, token_str.size(), false);
  2349. send_text = stop_pos == std::string::npos;
  2350. }
  2351. // check if there is any token to predict
  2352. if (send_text) {
  2353. // no send the stop word in the response
  2354. result.text_to_send = slot.generated_text.substr(pos, std::string::npos);
  2355. slot.n_sent_text += result.text_to_send.size();
  2356. // add the token to slot queue and cache
  2357. } else {
  2358. result.text_to_send = "";
  2359. }
  2360. slot.add_token(result);
  2361. if (slot.task->params.stream) {
  2362. send_partial_response(slot, result, false);
  2363. }
  2364. }
  2365. if (incomplete) {
  2366. slot.has_next_token = true;
  2367. }
  2368. // if context shifting is disabled, make sure that we don't run out of context
  2369. if (!params_base.ctx_shift && slot.n_past + 1 >= slot.n_ctx) {
  2370. slot.stop = STOP_TYPE_LIMIT;
  2371. slot.has_next_token = false;
  2372. SLT_DBG(slot, "stopped due to running out of context, n_past = %d, n_ctx = %d\n", slot.n_past, slot.n_ctx);
  2373. }
  2374. // check the limits
  2375. if (slot.n_decoded > 0 && slot.has_next_token && !slot.has_budget(params_base)) {
  2376. slot.stop = STOP_TYPE_LIMIT;
  2377. slot.has_next_token = false;
  2378. SLT_DBG(slot, "stopped by limit, n_decoded = %d, n_predict = %d\n", slot.n_decoded, slot.task->params.n_predict);
  2379. }
  2380. if (slot.has_new_line) {
  2381. // require that each new line has a whitespace prefix (i.e. indentation) of at least slot.params.n_indent
  2382. if (slot.task->params.n_indent > 0) {
  2383. // check the current indentation
  2384. // TODO: improve by not doing it more than once for each new line
  2385. if (slot.last_nl_pos > 0) {
  2386. size_t pos = slot.last_nl_pos;
  2387. int n_indent = 0;
  2388. while (pos < slot.generated_text.size() && (slot.generated_text[pos] == ' ' || slot.generated_text[pos] == '\t')) {
  2389. n_indent++;
  2390. pos++;
  2391. }
  2392. if (pos < slot.generated_text.size() && n_indent < slot.task->params.n_indent) {
  2393. slot.stop = STOP_TYPE_LIMIT;
  2394. slot.has_next_token = false;
  2395. // cut the last line
  2396. slot.generated_text.erase(pos, std::string::npos);
  2397. SLT_DBG(slot, "stopped by indentation limit, n_decoded = %d, n_indent = %d\n", slot.n_decoded, n_indent);
  2398. }
  2399. }
  2400. // find the next new line
  2401. {
  2402. const size_t pos = slot.generated_text.find('\n', slot.last_nl_pos);
  2403. if (pos != std::string::npos) {
  2404. slot.last_nl_pos = pos + 1;
  2405. }
  2406. }
  2407. }
  2408. }
  2409. // check if there is a new line in the generated text
  2410. if (result.text_to_send.find('\n') != std::string::npos) {
  2411. slot.has_new_line = true;
  2412. // if we have seen a new line, we stop after a certain time limit, but only upon another new line
  2413. if (slot.task->params.t_max_predict_ms > 0 && (ggml_time_us() - slot.t_start_generation > 1000.0f*slot.task->params.t_max_predict_ms)) {
  2414. slot.stop = STOP_TYPE_LIMIT;
  2415. slot.has_next_token = false;
  2416. SLT_DBG(slot, "stopped by time limit, n_decoded = %d, t_max_predict_ms = %d ms\n", slot.n_decoded, (int) slot.task->params.t_max_predict_ms);
  2417. }
  2418. }
  2419. // if context shift is disabled, we stop when it reaches the context limit
  2420. if (slot.n_past >= slot.n_ctx) {
  2421. slot.truncated = true;
  2422. slot.stop = STOP_TYPE_LIMIT;
  2423. slot.has_next_token = false;
  2424. 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",
  2425. slot.n_decoded, slot.n_prompt_tokens(), slot.n_past, slot.n_ctx);
  2426. }
  2427. if (llama_vocab_is_eog(vocab, result.tok)) {
  2428. slot.stop = STOP_TYPE_EOS;
  2429. slot.has_next_token = false;
  2430. SLT_DBG(slot, "%s", "stopped by EOS\n");
  2431. }
  2432. const auto n_ctx_train = llama_model_n_ctx_train(model);
  2433. if (slot.task->params.n_predict < 1 && slot.n_prompt_tokens() + slot.n_decoded >= n_ctx_train) {
  2434. slot.truncated = true;
  2435. slot.stop = STOP_TYPE_LIMIT;
  2436. slot.has_next_token = false; // stop prediction
  2437. SLT_WRN(slot,
  2438. "n_predict (%d) is set for infinite generation. "
  2439. "Limiting generated tokens to n_ctx_train (%d) to avoid EOS-less generation infinite loop\n",
  2440. slot.task->params.n_predict, n_ctx_train);
  2441. }
  2442. 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());
  2443. return slot.has_next_token; // continue
  2444. }
  2445. void populate_token_probs(const server_slot & slot, completion_token_output & result, bool post_sampling, bool special, int idx) const {
  2446. size_t n_probs = slot.task->params.sampling.n_probs;
  2447. size_t n_vocab = llama_vocab_n_tokens(vocab);
  2448. if (post_sampling) {
  2449. const auto * cur_p = common_sampler_get_candidates(slot.smpl, true);
  2450. const size_t max_probs = cur_p->size;
  2451. // set probability for sampled token
  2452. for (size_t i = 0; i < max_probs; i++) {
  2453. if (cur_p->data[i].id == result.tok) {
  2454. result.prob = cur_p->data[i].p;
  2455. break;
  2456. }
  2457. }
  2458. // set probability for top n_probs tokens
  2459. result.probs.reserve(max_probs);
  2460. for (size_t i = 0; i < std::min(max_probs, n_probs); i++) {
  2461. result.probs.push_back({
  2462. cur_p->data[i].id,
  2463. common_token_to_piece(ctx, cur_p->data[i].id, special),
  2464. cur_p->data[i].p
  2465. });
  2466. }
  2467. } else {
  2468. // TODO: optimize this with min-p optimization
  2469. std::vector<llama_token_data> cur = get_token_probabilities(ctx, idx);
  2470. // set probability for sampled token
  2471. for (size_t i = 0; i < n_vocab; i++) {
  2472. // set probability for sampled token
  2473. if (cur[i].id == result.tok) {
  2474. result.prob = cur[i].p;
  2475. break;
  2476. }
  2477. }
  2478. // set probability for top n_probs tokens
  2479. result.probs.reserve(n_probs);
  2480. for (size_t i = 0; i < std::min(n_vocab, n_probs); i++) {
  2481. result.probs.push_back({
  2482. cur[i].id,
  2483. common_token_to_piece(ctx, cur[i].id, special),
  2484. cur[i].p
  2485. });
  2486. }
  2487. }
  2488. }
  2489. void send_error(const server_task & task, const std::string & error, const enum error_type type = ERROR_TYPE_SERVER) {
  2490. send_error(task.id, error, type);
  2491. }
  2492. void send_error(const server_slot & slot, const std::string & error, const enum error_type type = ERROR_TYPE_SERVER) {
  2493. send_error(slot.task->id, error, type, slot.n_prompt_tokens(), slot.n_ctx);
  2494. }
  2495. void send_error(const int id_task, const std::string & error, const enum error_type type = ERROR_TYPE_SERVER, const int32_t n_prompt_tokens = 0, const int32_t n_ctx = 0) {
  2496. SRV_ERR("task id = %d, error: %s\n", id_task, error.c_str());
  2497. if (type == ERROR_TYPE_EXCEED_CONTEXT_SIZE) {
  2498. GGML_ASSERT(n_ctx > 0 && n_prompt_tokens > 0);
  2499. }
  2500. auto res = std::make_unique<server_task_result_error>();
  2501. res->id = id_task;
  2502. res->err_type = type;
  2503. res->err_msg = error;
  2504. res->n_prompt_tokens = n_prompt_tokens;
  2505. res->n_ctx = n_ctx;
  2506. queue_results.send(std::move(res));
  2507. }
  2508. // if multimodal is enabled, send an error and return false
  2509. bool check_no_mtmd(const int id_task) {
  2510. if (mctx) {
  2511. send_error(id_task, "This feature is not supported by multimodal", ERROR_TYPE_NOT_SUPPORTED);
  2512. return false;
  2513. }
  2514. return true;
  2515. }
  2516. void send_partial_response(server_slot & slot, const completion_token_output & tkn, bool is_progress) {
  2517. auto res = std::make_unique<server_task_result_cmpl_partial>();
  2518. res->id = slot.task->id;
  2519. res->index = slot.task->index;
  2520. if (is_progress) {
  2521. res->is_progress = true;
  2522. res->progress.total = slot.n_prompt_tokens();
  2523. res->progress.cache = slot.n_prompt_tokens_cache;
  2524. res->progress.processed = slot.prompt.tokens.size();
  2525. res->progress.time_ms = (ggml_time_us() - slot.t_start_process_prompt / 1000);
  2526. } else {
  2527. res->content = tkn.text_to_send;
  2528. res->tokens = { tkn.tok };
  2529. slot.update_chat_msg(res->oaicompat_msg_diffs);
  2530. }
  2531. res->n_decoded = slot.n_decoded;
  2532. res->n_prompt_tokens = slot.n_prompt_tokens();
  2533. res->post_sampling_probs = slot.task->params.post_sampling_probs;
  2534. res->verbose = slot.task->params.verbose;
  2535. res->oaicompat = slot.task->params.oaicompat;
  2536. res->oaicompat_model = slot.task->params.oaicompat_model;
  2537. res->oaicompat_cmpl_id = slot.task->params.oaicompat_cmpl_id;
  2538. // populate res.probs_output
  2539. if (slot.task->params.sampling.n_probs > 0) {
  2540. res->prob_output = tkn; // copy the token probs
  2541. }
  2542. // populate timings if this is final response or timings_per_token is enabled
  2543. if (slot.stop != STOP_TYPE_NONE || slot.task->params.timings_per_token) {
  2544. res->timings = slot.get_timings();
  2545. }
  2546. queue_results.send(std::move(res));
  2547. }
  2548. void send_final_response(server_slot & slot) {
  2549. auto res = std::make_unique<server_task_result_cmpl_final>();
  2550. res->id = slot.task->id;
  2551. res->id_slot = slot.id;
  2552. res->index = slot.task->index;
  2553. res->content = slot.generated_text;
  2554. res->tokens = std::move(slot.generated_tokens);
  2555. res->timings = slot.get_timings();
  2556. res->prompt = slot.task->tokens.detokenize(ctx, true);
  2557. res->response_fields = std::move(slot.task->params.response_fields);
  2558. res->truncated = slot.truncated;
  2559. res->n_decoded = slot.n_decoded;
  2560. res->n_prompt_tokens = slot.n_prompt_tokens();
  2561. res->n_tokens_cached = slot.n_past;
  2562. res->has_new_line = slot.has_new_line;
  2563. res->stopping_word = slot.stopping_word;
  2564. res->stop = slot.stop;
  2565. res->post_sampling_probs = slot.task->params.post_sampling_probs;
  2566. res->verbose = slot.task->params.verbose;
  2567. res->stream = slot.task->params.stream;
  2568. res->include_usage = slot.task->params.include_usage;
  2569. res->oaicompat = slot.task->params.oaicompat;
  2570. res->oaicompat_model = slot.task->params.oaicompat_model;
  2571. res->oaicompat_cmpl_id = slot.task->params.oaicompat_cmpl_id;
  2572. res->oaicompat_msg = slot.update_chat_msg(res->oaicompat_msg_diffs);
  2573. // populate res.probs_output
  2574. if (slot.task->params.sampling.n_probs > 0) {
  2575. if (!slot.task->params.stream && slot.stop == STOP_TYPE_WORD) {
  2576. const llama_tokens stop_word_toks = common_tokenize(ctx, slot.stopping_word, false);
  2577. size_t safe_offset = std::min(slot.generated_token_probs.size(), stop_word_toks.size());
  2578. res->probs_output = std::vector<completion_token_output>(
  2579. slot.generated_token_probs.begin(),
  2580. slot.generated_token_probs.end() - safe_offset);
  2581. } else {
  2582. res->probs_output = std::vector<completion_token_output>(
  2583. slot.generated_token_probs.begin(),
  2584. slot.generated_token_probs.end());
  2585. }
  2586. }
  2587. res->generation_params = slot.task->params; // copy the parameters
  2588. queue_results.send(std::move(res));
  2589. }
  2590. void send_embedding(const server_slot & slot, const llama_batch & batch) {
  2591. auto res = std::make_unique<server_task_result_embd>();
  2592. res->id = slot.task->id;
  2593. res->index = slot.task->index;
  2594. res->n_tokens = slot.n_prompt_tokens();
  2595. res->oaicompat = slot.task->params.oaicompat;
  2596. const int n_embd = llama_model_n_embd(model);
  2597. std::vector<float> embd_res(n_embd, 0.0f);
  2598. for (int i = 0; i < batch.n_tokens; ++i) {
  2599. if (!batch.logits[i] || batch.seq_id[i][0] != slot.id) {
  2600. continue;
  2601. }
  2602. const float * embd = nullptr;
  2603. if (llama_pooling_type(slot.ctx) == LLAMA_POOLING_TYPE_NONE) {
  2604. embd = llama_get_embeddings_ith(ctx, i);
  2605. } else {
  2606. embd = llama_get_embeddings_seq(ctx, batch.seq_id[i][0]);
  2607. }
  2608. if (embd == nullptr) {
  2609. SLT_ERR(slot, "failed to get embeddings, token = %d, seq_id = %d\n", batch.token[i], batch.seq_id[i][0]);
  2610. res->embedding.push_back(std::vector<float>(n_embd, 0.0f));
  2611. continue;
  2612. }
  2613. // normalize only when there is pooling
  2614. if (llama_pooling_type(slot.ctx) != LLAMA_POOLING_TYPE_NONE) {
  2615. common_embd_normalize(embd, embd_res.data(), n_embd, slot.task->params.embd_normalize);
  2616. res->embedding.push_back(embd_res);
  2617. break;
  2618. }
  2619. res->embedding.emplace_back(embd, embd + n_embd);
  2620. }
  2621. SLT_DBG(slot, "%s", "sending embeddings\n");
  2622. queue_results.send(std::move(res));
  2623. }
  2624. void send_rerank(const server_slot & slot, const llama_batch & batch) {
  2625. auto res = std::make_unique<server_task_result_rerank>();
  2626. res->id = slot.task->id;
  2627. res->index = slot.task->index;
  2628. res->n_tokens = slot.n_prompt_tokens();
  2629. for (int i = 0; i < batch.n_tokens; ++i) {
  2630. if (!batch.logits[i] || batch.seq_id[i][0] != slot.id) {
  2631. continue;
  2632. }
  2633. const float * embd = llama_get_embeddings_seq(ctx, batch.seq_id[i][0]);
  2634. if (embd == NULL) {
  2635. embd = llama_get_embeddings_ith(ctx, i);
  2636. }
  2637. if (embd == NULL) {
  2638. SLT_ERR(slot, "failed to get embeddings, token = %d, seq_id = %d\n", batch.token[i], batch.seq_id[i][0]);
  2639. res->score = -1e6;
  2640. continue;
  2641. }
  2642. res->score = embd[0];
  2643. }
  2644. SLT_DBG(slot, "sending rerank result, res.score = %f\n", res->score);
  2645. queue_results.send(std::move(res));
  2646. }
  2647. //
  2648. // Functions to create new task(s) and receive result(s)
  2649. //
  2650. void cancel_tasks(const std::unordered_set<int> & id_tasks) {
  2651. std::vector<server_task> cancel_tasks;
  2652. cancel_tasks.reserve(id_tasks.size());
  2653. for (const auto & id_task : id_tasks) {
  2654. SRV_WRN("cancel task, id_task = %d\n", id_task);
  2655. server_task task(SERVER_TASK_TYPE_CANCEL);
  2656. task.id_target = id_task;
  2657. queue_results.remove_waiting_task_id(id_task);
  2658. cancel_tasks.push_back(std::move(task));
  2659. }
  2660. // push to beginning of the queue, so it has highest priority
  2661. queue_tasks.post(std::move(cancel_tasks), true);
  2662. }
  2663. // receive the results from task(s)
  2664. void receive_multi_results(
  2665. const std::unordered_set<int> & id_tasks,
  2666. const std::function<void(std::vector<server_task_result_ptr>&)> & result_handler,
  2667. const std::function<void(json)> & error_handler,
  2668. const std::function<bool()> & is_connection_closed) {
  2669. std::vector<server_task_result_ptr> results(id_tasks.size());
  2670. for (int i = 0; i < (int)id_tasks.size(); i++) {
  2671. server_task_result_ptr result = queue_results.recv_with_timeout(id_tasks, HTTP_POLLING_SECONDS);
  2672. if (is_connection_closed()) {
  2673. cancel_tasks(id_tasks);
  2674. return;
  2675. }
  2676. if (result == nullptr) {
  2677. i--; // retry
  2678. continue;
  2679. }
  2680. if (result->is_error()) {
  2681. error_handler(result->to_json());
  2682. cancel_tasks(id_tasks);
  2683. return;
  2684. }
  2685. GGML_ASSERT(
  2686. dynamic_cast<server_task_result_cmpl_final*>(result.get()) != nullptr
  2687. || dynamic_cast<server_task_result_embd*>(result.get()) != nullptr
  2688. || dynamic_cast<server_task_result_rerank*>(result.get()) != nullptr
  2689. );
  2690. const size_t idx = result->get_index();
  2691. GGML_ASSERT(idx < results.size() && "index out of range");
  2692. results[idx] = std::move(result);
  2693. }
  2694. result_handler(results);
  2695. }
  2696. // receive the results from task(s), in stream mode
  2697. void receive_cmpl_results_stream(
  2698. const std::unordered_set<int> & id_tasks,
  2699. const std::function<bool(server_task_result_ptr&)> & result_handler,
  2700. const std::function<void(json)> & error_handler,
  2701. const std::function<bool()> & is_connection_closed) {
  2702. size_t n_finished = 0;
  2703. while (true) {
  2704. server_task_result_ptr result = queue_results.recv_with_timeout(id_tasks, HTTP_POLLING_SECONDS);
  2705. if (is_connection_closed()) {
  2706. cancel_tasks(id_tasks);
  2707. return;
  2708. }
  2709. if (result == nullptr) {
  2710. continue; // retry
  2711. }
  2712. if (result->is_error()) {
  2713. error_handler(result->to_json());
  2714. cancel_tasks(id_tasks);
  2715. return;
  2716. }
  2717. GGML_ASSERT(
  2718. dynamic_cast<server_task_result_cmpl_partial*>(result.get()) != nullptr
  2719. || dynamic_cast<server_task_result_cmpl_final*>(result.get()) != nullptr
  2720. );
  2721. if (!result_handler(result)) {
  2722. cancel_tasks(id_tasks);
  2723. break;
  2724. }
  2725. if (result->is_stop()) {
  2726. if (++n_finished == id_tasks.size()) {
  2727. break;
  2728. }
  2729. }
  2730. }
  2731. }
  2732. //
  2733. // Functions to process the task
  2734. //
  2735. void process_single_task(server_task && task) {
  2736. switch (task.type) {
  2737. case SERVER_TASK_TYPE_COMPLETION:
  2738. case SERVER_TASK_TYPE_INFILL:
  2739. case SERVER_TASK_TYPE_EMBEDDING:
  2740. case SERVER_TASK_TYPE_RERANK:
  2741. {
  2742. const int id_slot = task.id_slot;
  2743. server_slot * slot = id_slot != -1 ? get_slot_by_id(id_slot) : get_available_slot(task);
  2744. if (slot == nullptr) {
  2745. // if no slot is available, we defer this task for processing later
  2746. SRV_DBG("no slot is available, defer task, id_task = %d\n", task.id);
  2747. queue_tasks.defer(std::move(task));
  2748. break;
  2749. }
  2750. if (slot->is_processing()) {
  2751. // if requested slot is unavailable, we defer this task for processing later
  2752. SRV_DBG("requested slot is unavailable, defer task, id_task = %d\n", task.id);
  2753. queue_tasks.defer(std::move(task));
  2754. break;
  2755. }
  2756. if (!launch_slot_with_task(*slot, std::move(task))) {
  2757. SRV_ERR("failed to launch slot with task, id_task = %d\n", task.id);
  2758. break;
  2759. }
  2760. } break;
  2761. case SERVER_TASK_TYPE_CANCEL:
  2762. {
  2763. // release slot linked with the task id
  2764. for (auto & slot : slots) {
  2765. if (slot.task && slot.task->id == task.id_target) {
  2766. slot.release();
  2767. break;
  2768. }
  2769. }
  2770. } break;
  2771. case SERVER_TASK_TYPE_NEXT_RESPONSE:
  2772. {
  2773. // do nothing
  2774. } break;
  2775. case SERVER_TASK_TYPE_METRICS:
  2776. {
  2777. json slots_data = json::array();
  2778. int n_idle_slots = 0;
  2779. int n_processing_slots = 0;
  2780. for (server_slot & slot : slots) {
  2781. json slot_data = slot.to_json(slots_debug == 0);
  2782. if (slot.is_processing()) {
  2783. n_processing_slots++;
  2784. } else {
  2785. n_idle_slots++;
  2786. }
  2787. slots_data.push_back(slot_data);
  2788. }
  2789. SRV_DBG("n_idle_slots = %d, n_processing_slots = %d\n", n_idle_slots, n_processing_slots);
  2790. auto res = std::make_unique<server_task_result_metrics>();
  2791. res->id = task.id;
  2792. res->slots_data = std::move(slots_data);
  2793. res->n_idle_slots = n_idle_slots;
  2794. res->n_processing_slots = n_processing_slots;
  2795. res->n_tasks_deferred = queue_tasks.queue_tasks_deferred.size();
  2796. res->t_start = metrics.t_start;
  2797. res->n_prompt_tokens_processed_total = metrics.n_prompt_tokens_processed_total;
  2798. res->t_prompt_processing_total = metrics.t_prompt_processing_total;
  2799. res->n_tokens_predicted_total = metrics.n_tokens_predicted_total;
  2800. res->t_tokens_generation_total = metrics.t_tokens_generation_total;
  2801. res->n_past_max = metrics.n_past_max;
  2802. res->n_prompt_tokens_processed = metrics.n_prompt_tokens_processed;
  2803. res->t_prompt_processing = metrics.t_prompt_processing;
  2804. res->n_tokens_predicted = metrics.n_tokens_predicted;
  2805. res->t_tokens_generation = metrics.t_tokens_generation;
  2806. res->n_decode_total = metrics.n_decode_total;
  2807. res->n_busy_slots_total = metrics.n_busy_slots_total;
  2808. if (task.metrics_reset_bucket) {
  2809. metrics.reset_bucket();
  2810. }
  2811. queue_results.send(std::move(res));
  2812. } break;
  2813. case SERVER_TASK_TYPE_SLOT_SAVE:
  2814. {
  2815. if (!check_no_mtmd(task.id)) {
  2816. break;
  2817. }
  2818. int id_slot = task.slot_action.slot_id;
  2819. server_slot * slot = get_slot_by_id(id_slot);
  2820. if (slot == nullptr) {
  2821. send_error(task, "Invalid slot ID", ERROR_TYPE_INVALID_REQUEST);
  2822. break;
  2823. }
  2824. if (slot->is_processing()) {
  2825. // if requested slot is unavailable, we defer this task for processing later
  2826. SRV_DBG("requested slot is unavailable, defer task, id_task = %d\n", task.id);
  2827. queue_tasks.defer(std::move(task));
  2828. break;
  2829. }
  2830. const size_t token_count = slot->prompt.tokens.size();
  2831. const int64_t t_start = ggml_time_us();
  2832. std::string filename = task.slot_action.filename;
  2833. std::string filepath = task.slot_action.filepath;
  2834. const llama_tokens & tokens = slot->prompt.tokens.get_text_tokens();
  2835. const size_t nwrite = llama_state_seq_save_file(ctx, filepath.c_str(), slot->id, tokens.data(), token_count);
  2836. const int64_t t_end = ggml_time_us();
  2837. const double t_save_ms = (t_end - t_start) / 1000.0;
  2838. auto res = std::make_unique<server_task_result_slot_save_load>();
  2839. res->id = task.id;
  2840. res->id_slot = id_slot;
  2841. res->filename = filename;
  2842. res->is_save = true;
  2843. res->n_tokens = token_count;
  2844. res->n_bytes = nwrite;
  2845. res->t_ms = t_save_ms;
  2846. queue_results.send(std::move(res));
  2847. } break;
  2848. case SERVER_TASK_TYPE_SLOT_RESTORE:
  2849. {
  2850. if (!check_no_mtmd(task.id)) break;
  2851. int id_slot = task.slot_action.slot_id;
  2852. server_slot * slot = get_slot_by_id(id_slot);
  2853. if (slot == nullptr) {
  2854. send_error(task, "Invalid slot ID", ERROR_TYPE_INVALID_REQUEST);
  2855. break;
  2856. }
  2857. if (slot->is_processing()) {
  2858. // if requested slot is unavailable, we defer this task for processing later
  2859. SRV_DBG("requested slot is unavailable, defer task, id_task = %d\n", task.id);
  2860. queue_tasks.defer(std::move(task));
  2861. break;
  2862. }
  2863. const int64_t t_start = ggml_time_us();
  2864. std::string filename = task.slot_action.filename;
  2865. std::string filepath = task.slot_action.filepath;
  2866. llama_tokens tokens;
  2867. tokens.resize(slot->n_ctx);
  2868. size_t token_count = 0;
  2869. size_t nread = llama_state_seq_load_file(ctx, filepath.c_str(), slot->id, tokens.data(), tokens.size(), &token_count);
  2870. if (nread == 0) {
  2871. slot->prompt.tokens.clear(); // KV may already been invalidated?
  2872. send_error(task, "Unable to restore slot, no available space in KV cache or invalid slot save file", ERROR_TYPE_INVALID_REQUEST);
  2873. break;
  2874. }
  2875. tokens.resize(token_count);
  2876. slot->prompt.tokens.clear();
  2877. slot->prompt.tokens.insert(tokens);
  2878. const int64_t t_end = ggml_time_us();
  2879. const double t_restore_ms = (t_end - t_start) / 1000.0;
  2880. auto res = std::make_unique<server_task_result_slot_save_load>();
  2881. res->id = task.id;
  2882. res->id_slot = id_slot;
  2883. res->filename = filename;
  2884. res->is_save = false;
  2885. res->n_tokens = token_count;
  2886. res->n_bytes = nread;
  2887. res->t_ms = t_restore_ms;
  2888. queue_results.send(std::move(res));
  2889. } break;
  2890. case SERVER_TASK_TYPE_SLOT_ERASE:
  2891. {
  2892. if (!check_no_mtmd(task.id)) {
  2893. break;
  2894. }
  2895. int id_slot = task.slot_action.slot_id;
  2896. server_slot * slot = get_slot_by_id(id_slot);
  2897. if (slot == nullptr) {
  2898. send_error(task, "Invalid slot ID", ERROR_TYPE_INVALID_REQUEST);
  2899. break;
  2900. }
  2901. if (slot->is_processing()) {
  2902. // if requested slot is unavailable, we defer this task for processing later
  2903. SRV_DBG("requested slot is unavailable, defer task, id_task = %d\n", task.id);
  2904. queue_tasks.defer(std::move(task));
  2905. break;
  2906. }
  2907. // Erase token cache
  2908. const size_t n_erased = slot->prompt.tokens.size();
  2909. llama_memory_seq_rm(llama_get_memory(ctx), slot->id, -1, -1);
  2910. slot->prompt.tokens.clear();
  2911. auto res = std::make_unique<server_task_result_slot_erase>();
  2912. res->id = task.id;
  2913. res->id_slot = id_slot;
  2914. res->n_erased = n_erased;
  2915. queue_results.send(std::move(res));
  2916. } break;
  2917. case SERVER_TASK_TYPE_SET_LORA:
  2918. {
  2919. params_base.lora_adapters = std::move(task.set_lora);
  2920. auto res = std::make_unique<server_task_result_apply_lora>();
  2921. res->id = task.id;
  2922. queue_results.send(std::move(res));
  2923. } break;
  2924. }
  2925. }
  2926. void update_slots() {
  2927. // check if all slots are idle
  2928. {
  2929. bool all_idle = true;
  2930. for (auto & slot : slots) {
  2931. if (slot.is_processing()) {
  2932. all_idle = false;
  2933. break;
  2934. }
  2935. }
  2936. if (all_idle) {
  2937. SRV_INF("%s", "all slots are idle\n");
  2938. if (clean_kv_cache) {
  2939. kv_cache_clear();
  2940. }
  2941. return;
  2942. }
  2943. }
  2944. {
  2945. SRV_DBG("%s", "posting NEXT_RESPONSE\n");
  2946. server_task task(SERVER_TASK_TYPE_NEXT_RESPONSE);
  2947. task.id = queue_tasks.get_new_id();
  2948. queue_tasks.post(std::move(task));
  2949. }
  2950. // apply context-shift if needed
  2951. // TODO: simplify and improve
  2952. for (server_slot & slot : slots) {
  2953. if (slot.is_processing() && slot.n_past + 1 >= slot.n_ctx) {
  2954. if (!params_base.ctx_shift) {
  2955. // this check is redundant (for good)
  2956. // we should never get here, because generation should already stopped in process_token()
  2957. send_error(slot, "context shift is disabled", ERROR_TYPE_SERVER);
  2958. slot.release();
  2959. continue;
  2960. }
  2961. if (mctx) {
  2962. // we should never reach this because params_base.ctx_shift is automatically disabled if mmproj is loaded
  2963. // we don't support ctx_shift because an image chunk may contains multiple tokens
  2964. GGML_ABORT("not supported by multimodal");
  2965. }
  2966. // Shift context
  2967. int n_keep = slot.task->params.n_keep < 0 ? slot.n_prompt_tokens() : slot.task->params.n_keep;
  2968. if (add_bos_token) {
  2969. n_keep += 1;
  2970. }
  2971. n_keep = std::min(slot.n_ctx - 4, n_keep);
  2972. const int n_left = slot.n_past - n_keep;
  2973. const int n_discard = slot.task->params.n_discard ? slot.task->params.n_discard : (n_left / 2);
  2974. SLT_WRN(slot, "slot context shift, n_keep = %d, n_left = %d, n_discard = %d\n", n_keep, n_left, n_discard);
  2975. llama_memory_seq_rm (llama_get_memory(ctx), slot.id, n_keep , n_keep + n_discard);
  2976. llama_memory_seq_add(llama_get_memory(ctx), slot.id, n_keep + n_discard, slot.n_past, -n_discard);
  2977. // add generated tokens to cache
  2978. {
  2979. llama_tokens new_tokens = slot.prompt.tokens.get_text_tokens(); // copy
  2980. for (size_t i = n_keep + n_discard; i < new_tokens.size(); i++) {
  2981. new_tokens[i - n_discard] = new_tokens[i];
  2982. }
  2983. new_tokens.resize(slot.prompt.tokens.size() - n_discard);
  2984. slot.prompt.tokens.clear();
  2985. slot.prompt.tokens.insert(new_tokens);
  2986. }
  2987. slot.n_past -= n_discard;
  2988. slot.truncated = true;
  2989. }
  2990. }
  2991. // start populating the batch for this iteration
  2992. common_batch_clear(batch);
  2993. // track if given slot can be batched with slots already in the batch
  2994. server_slot * slot_batched = nullptr;
  2995. auto accept_special_token = [&](server_slot & slot, llama_token token) {
  2996. return params_base.special ||
  2997. slot.task->params.sampling.preserved_tokens.find(token) != slot.task->params.sampling.preserved_tokens.end();
  2998. };
  2999. // frist, add sampled tokens from any ongoing sequences
  3000. for (auto & slot : slots) {
  3001. if (slot.state != SLOT_STATE_GENERATING) {
  3002. continue;
  3003. }
  3004. // check if we can batch this slot with the previous one
  3005. if (!slot_batched) {
  3006. slot_batched = &slot;
  3007. } else if (!slot_batched->can_batch_with(slot)) {
  3008. continue;
  3009. }
  3010. slot.i_batch = batch.n_tokens;
  3011. common_batch_add(batch, slot.sampled, slot.n_past, { slot.id }, true);
  3012. slot.n_past += 1;
  3013. slot.prompt.tokens.push_back(slot.sampled);
  3014. SLT_DBG(slot, "slot decode token, n_ctx = %d, n_past = %d, n_cache_tokens = %d, truncated = %d\n",
  3015. slot.n_ctx, slot.n_past, (int) slot.prompt.tokens.size(), slot.truncated);
  3016. }
  3017. // process in chunks of params.n_batch
  3018. int32_t n_batch = llama_n_batch(ctx);
  3019. int32_t n_ubatch = llama_n_ubatch(ctx);
  3020. // next, batch any pending prompts without exceeding n_batch
  3021. float alora_scale = -1.0f;
  3022. size_t alora_disabled_id = 0;
  3023. if (params_base.cont_batching || batch.n_tokens == 0) {
  3024. for (auto & slot : slots) {
  3025. // check if we can batch this slot with the previous one
  3026. if (slot.is_processing()) {
  3027. if (!slot_batched) {
  3028. slot_batched = &slot;
  3029. } else if (!slot_batched->can_batch_with(slot)) {
  3030. continue;
  3031. }
  3032. }
  3033. // this slot still has a prompt to be processed
  3034. if (slot.state == SLOT_STATE_PROCESSING_PROMPT || slot.state == SLOT_STATE_STARTED) {
  3035. const auto & input_tokens = slot.task->tokens;
  3036. // TODO: maybe move branch to outside of this loop in the future
  3037. if (slot.state == SLOT_STATE_STARTED) {
  3038. slot.t_start_process_prompt = ggml_time_us();
  3039. slot.t_start_generation = 0;
  3040. slot.n_past = 0;
  3041. slot.state = SLOT_STATE_PROCESSING_PROMPT;
  3042. SLT_INF(slot, "new prompt, n_ctx_slot = %d, n_keep = %d, n_prompt_tokens = %d\n",
  3043. slot.n_ctx, slot.task->params.n_keep, slot.n_prompt_tokens());
  3044. // print prompt tokens (for debugging)
  3045. /*if (1) {
  3046. // first 16 tokens (avoid flooding logs)
  3047. for (int i = 0; i < std::min<int>(16, input_tokens.size()); i++) {
  3048. SLT_DBG(slot, "prompt token %3d: %6d '%s'\n", i, input_tokens[i], common_token_to_piece(ctx, input_tokens[i]).c_str());
  3049. }
  3050. } else {
  3051. // all
  3052. for (int i = 0; i < (int) input_tokens.size(); i++) {
  3053. SLT_DBG(slot, "prompt token %3d: %6d '%s'\n", i, input_tokens[i], common_token_to_piece(ctx, input_tokens[i]).c_str());
  3054. }
  3055. }*/
  3056. // empty prompt passed -> release the slot and send empty response
  3057. if (input_tokens.empty()) {
  3058. SLT_WRN(slot, "%s", "empty prompt - releasing slot\n");
  3059. slot.print_timings();
  3060. send_final_response(slot);
  3061. slot.release();
  3062. continue;
  3063. }
  3064. // TODO: support memory-less logits computation
  3065. if (slot.need_logits() && !llama_get_memory(ctx)) {
  3066. send_error(slot, "the current context does not logits computation. skipping", ERROR_TYPE_SERVER);
  3067. slot.release();
  3068. continue;
  3069. }
  3070. if (!slot.can_split()) {
  3071. if (slot.n_prompt_tokens() > n_ubatch) {
  3072. send_error(slot, "input is too large to process. increase the physical batch size", ERROR_TYPE_SERVER);
  3073. slot.release();
  3074. continue;
  3075. }
  3076. if (slot.n_prompt_tokens() > slot.n_ctx) {
  3077. send_error(slot, "input is larger than the max context size. skipping", ERROR_TYPE_EXCEED_CONTEXT_SIZE);
  3078. slot.release();
  3079. continue;
  3080. }
  3081. } else {
  3082. if (slot.n_prompt_tokens() >= slot.n_ctx) {
  3083. send_error(slot, "the request exceeds the available context size, try increasing it", ERROR_TYPE_EXCEED_CONTEXT_SIZE);
  3084. slot.release();
  3085. continue;
  3086. }
  3087. if (slot.task->params.cache_prompt) {
  3088. // reuse any previously computed tokens that are common with the new prompt
  3089. slot.n_past = slot.prompt.tokens.get_common_prefix(input_tokens);
  3090. // if there is an alora invoked, don't cache after the invocation start
  3091. if (slot.alora_invocation_start >= 0) {
  3092. SLT_DBG(slot, "only caching to alora invocation start (n_past=%d, alora_invocation_start=%d)\n", slot.n_past, slot.alora_invocation_start);
  3093. slot.n_past = std::min(slot.n_past, slot.alora_invocation_start - 1);
  3094. }
  3095. // reuse chunks from the cached prompt by shifting their KV cache in the new position
  3096. if (params_base.n_cache_reuse > 0) {
  3097. size_t head_c = slot.n_past; // cache
  3098. size_t head_p = slot.n_past; // current prompt
  3099. if (mctx) {
  3100. // we should never reach this
  3101. GGML_ABORT("not supported by multimodal");
  3102. }
  3103. SLT_DBG(slot, "trying to reuse chunks with size > %d, slot.n_past = %d\n", params_base.n_cache_reuse, slot.n_past);
  3104. while (head_c < slot.prompt.tokens.size() &&
  3105. head_p < input_tokens.size()) {
  3106. size_t n_match = 0;
  3107. while (head_c + n_match < slot.prompt.tokens.size() &&
  3108. head_p + n_match < input_tokens.size() &&
  3109. slot.prompt.tokens[head_c + n_match] == input_tokens[head_p + n_match]) {
  3110. n_match++;
  3111. }
  3112. if (n_match >= (size_t) params_base.n_cache_reuse) {
  3113. 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);
  3114. //for (size_t i = head_p; i < head_p + n_match; i++) {
  3115. // SLT_DBG(slot, "cache token %3zu: %6d '%s'\n", i, prompt_tokens[i], common_token_to_piece(ctx, prompt_tokens[i]).c_str());
  3116. //}
  3117. const int64_t kv_shift = (int64_t) head_p - (int64_t) head_c;
  3118. llama_memory_seq_rm (llama_get_memory(ctx), slot.id, head_p, head_c);
  3119. llama_memory_seq_add(llama_get_memory(ctx), slot.id, head_c, head_c + n_match, kv_shift);
  3120. for (size_t i = 0; i < n_match; i++) {
  3121. slot.prompt.tokens.set_token(head_p + i, slot.prompt.tokens[head_c + i]);
  3122. slot.n_past++;
  3123. }
  3124. head_c += n_match;
  3125. head_p += n_match;
  3126. } else {
  3127. head_c += 1;
  3128. }
  3129. }
  3130. SLT_DBG(slot, "after context reuse, new slot.n_past = %d\n", slot.n_past);
  3131. }
  3132. } else {
  3133. // if we don't cache the prompt, we have to remove the entire KV cache
  3134. slot.n_past = 0;
  3135. }
  3136. // note: when n_swa == 0, the model does not use SWA, which is equivalent to a window of 1
  3137. const auto n_swa = std::max(1, llama_model_n_swa(model));
  3138. // the largest pos_min required for a checkpoint to be useful
  3139. const auto pos_min_thold = std::max(0, slot.n_past - n_swa);
  3140. if (slot.n_past > 0 && slot.n_past < (int) slot.prompt.tokens.size()) {
  3141. const auto pos_min = llama_memory_seq_pos_min(llama_get_memory(ctx), slot.id);
  3142. if (pos_min == -1) {
  3143. SLT_ERR(slot, "n_past = %d, slot.prompt.tokens.size() = %d, seq_id = %d, pos_min = %d\n", slot.n_past, (int) slot.prompt.tokens.size(), slot.id, pos_min);
  3144. GGML_ABORT("pos_min == -1, but n_past > 0 - should not happen: https://github.com/ggml-org/llama.cpp/pull/13833#discussion_r2116181237");
  3145. }
  3146. // when the prompt prefix does not match, print the tokens around the mismatch
  3147. // this is useful for debugging prompt caching
  3148. {
  3149. const int np0 = std::max<int>(slot.n_past - 4, 0);
  3150. const int np1 = std::min<int>(slot.n_past + 6, std::min(slot.prompt.tokens.size(), slot.task->tokens.size()));
  3151. std::stringstream ss0;
  3152. std::stringstream ss1;
  3153. std::stringstream st0;
  3154. std::stringstream st1;
  3155. ss0 << "old: ... ";
  3156. ss1 << "new: ... ";
  3157. for (int i = np0; i < np1; i++) {
  3158. if (i == slot.n_past) {
  3159. ss0 << " | ";
  3160. ss1 << " | ";
  3161. }
  3162. {
  3163. const auto token = slot.prompt.tokens[i];
  3164. const auto piece = token != LLAMA_TOKEN_NULL ? common_token_to_piece(ctx, token) : "[mtmd]";
  3165. ss0 << piece;
  3166. st0 << std::setw(8) << token;
  3167. }
  3168. {
  3169. const auto token = slot.task->tokens[i];
  3170. const auto piece = token != LLAMA_TOKEN_NULL ? common_token_to_piece(ctx, token) : "[mtmd]";
  3171. ss1 << piece;
  3172. st1 << std::setw(8) << token;
  3173. }
  3174. }
  3175. SLT_WRN(slot, "%s\n", ss0.str().c_str());
  3176. SLT_WRN(slot, "%s\n", ss1.str().c_str());
  3177. SLT_WRN(slot, "%s\n", st0.str().c_str());
  3178. SLT_WRN(slot, "%s\n", st1.str().c_str());
  3179. }
  3180. if (pos_min > pos_min_thold) {
  3181. SLT_WRN(slot, "n_past = %d, slot.prompt.tokens.size() = %d, seq_id = %d, pos_min = %d, n_swa = %d\n", slot.n_past, (int) slot.prompt.tokens.size(), slot.id, pos_min, n_swa);
  3182. // search for a context checkpoint
  3183. const auto it = std::find_if(
  3184. slot.prompt.checkpoints.rbegin(),
  3185. slot.prompt.checkpoints.rend(),
  3186. [&](const auto & cur) {
  3187. // guarantee that a checkpoint will result in at least one token being processed [TAG_PROMPT_LOGITS]
  3188. return cur.pos_min < pos_min_thold;
  3189. }
  3190. );
  3191. bool do_reset = it == slot.prompt.checkpoints.rend();
  3192. if (!do_reset) {
  3193. // restore the context checkpoint
  3194. const size_t checkpoint_size = it->data.size();
  3195. const size_t n = llama_state_seq_set_data_ext(ctx, it->data.data(), checkpoint_size, slot.id, LLAMA_STATE_SEQ_FLAGS_PARTIAL_ONLY);
  3196. if (n != checkpoint_size) {
  3197. SLT_ERR(slot, "failed to restore context checkpoint (pos_min = %d, pos_max = %d, size = %.3f MiB)\n", it->pos_min, it->pos_max, (float) checkpoint_size / 1024 / 1024);
  3198. do_reset = true;
  3199. //printf("[DEBUG] `do_reset` was set to `true` after failing to restore a checkpoint");
  3200. } else {
  3201. slot.n_past = std::min(slot.n_past, std::max(it->pos_min + 1, it->pos_max));
  3202. SLT_WRN(slot, "restored context checkpoint (pos_min = %d, pos_max = %d, size = %.3f MiB)\n", it->pos_min, it->pos_max, (float) checkpoint_size / 1024 / 1024);
  3203. }
  3204. }
  3205. if (do_reset) {
  3206. SLT_WRN(slot, "forcing full prompt re-processing due to lack of cache data (likely due to SWA or hybrid/recurrent memory, see %s)\n",
  3207. "https://github.com/ggml-org/llama.cpp/pull/13194#issuecomment-2868343055");
  3208. slot.n_past = 0;
  3209. }
  3210. }
  3211. }
  3212. {
  3213. // erase any checkpoints with pos_min > pos_min_thold
  3214. for (auto it = slot.prompt.checkpoints.begin(); it != slot.prompt.checkpoints.end();) {
  3215. const auto & cur = *it;
  3216. if (cur.pos_min > pos_min_thold) {
  3217. SLT_WRN(slot, "erased invalidated context checkpoint (pos_min = %d, pos_max = %d, n_swa = %d, size = %.3f MiB)\n", cur.pos_min, cur.pos_max, n_swa, (float) cur.data.size() / 1024 / 1024);
  3218. it = slot.prompt.checkpoints.erase(it);
  3219. } else {
  3220. ++it;
  3221. }
  3222. }
  3223. }
  3224. }
  3225. // [TAG_PROMPT_LOGITS]
  3226. if (slot.n_past == slot.n_prompt_tokens() && slot.n_past > 0) {
  3227. SLT_WRN(slot, "need to evaluate at least 1 token for each active slot (n_past = %d, n_prompt_tokens = %d)\n", slot.n_past, slot.n_prompt_tokens());
  3228. slot.n_past--;
  3229. SLT_WRN(slot, "n_past was set to %d\n", slot.n_past);
  3230. }
  3231. slot.n_prompt_tokens_cache = slot.n_past;
  3232. slot.n_prompt_tokens_processed = 0;
  3233. }
  3234. if (!slot.can_split()) {
  3235. // cannot fit the prompt in the current batch - will try next iter
  3236. if (batch.n_tokens + slot.n_prompt_tokens() > n_batch) {
  3237. continue;
  3238. }
  3239. }
  3240. // truncate any tokens that are beyond n_past for this slot
  3241. if (!llama_memory_seq_rm(llama_get_memory(ctx), slot.id, slot.n_past, -1)) {
  3242. SLT_WRN(slot, "failed to truncate tokens beyond n_past = %d\n", slot.n_past);
  3243. llama_memory_seq_rm(llama_get_memory(ctx), slot.id, -1, -1);
  3244. // there is no common part left
  3245. slot.n_past = 0;
  3246. slot.n_prompt_tokens_cache = 0;
  3247. }
  3248. SLT_INF(slot, "n_past = %d, memory_seq_rm [%d, end)\n", slot.n_past, slot.n_past);
  3249. // remove the non-common part from the cache
  3250. slot.prompt.tokens.keep_first(slot.n_past);
  3251. // check if we should process the image
  3252. if (slot.n_past < slot.n_prompt_tokens() && input_tokens[slot.n_past] == LLAMA_TOKEN_NULL) {
  3253. // process the image
  3254. int32_t new_n_past;
  3255. int32_t res = input_tokens.process_chunk(ctx, mctx, slot.n_past, slot.id, new_n_past);
  3256. if (res != 0) {
  3257. SLT_ERR(slot, "failed to process image, res = %d\n", res);
  3258. send_error(slot, "failed to process image", ERROR_TYPE_SERVER);
  3259. slot.release();
  3260. continue;
  3261. }
  3262. // add the image chunk to cache
  3263. {
  3264. const auto & chunk = input_tokens.find_chunk(slot.n_past);
  3265. slot.prompt.tokens.push_back(chunk.get()); // copy
  3266. }
  3267. const int32_t n_pos = new_n_past - slot.n_past;
  3268. slot.n_past += n_pos;
  3269. slot.n_prompt_tokens_processed += n_pos;
  3270. }
  3271. // If using an alora, there may be uncached tokens that come
  3272. // before the invocation sequence. When this happens, the
  3273. // tokens before the invocation sequence need to be
  3274. // processed without the adpter in a separate batch, then
  3275. // the adapter needs to be enabled for the remaining tokens.
  3276. if (lora_all_alora(slot.lora) && slot.alora_invocation_start - 1 > slot.n_past) {
  3277. SLT_DBG(slot, "processing pre-alora tokens without the adapter (n_past = %d, alora_invocation_start = %d)\n", slot.n_past, slot.alora_invocation_start);
  3278. const auto & enabled_loras = lora_get_enabled_ids(slot.lora);
  3279. GGML_ASSERT(enabled_loras.size() == 1);
  3280. alora_scale = slot.lora[enabled_loras[0]].scale;
  3281. slot.lora[enabled_loras[0]].scale = 0.0f;
  3282. alora_disabled_id = enabled_loras[0];
  3283. }
  3284. bool do_checkpoint = params_base.n_ctx_checkpoints > 0;
  3285. // make checkpoints only for completion tasks
  3286. do_checkpoint = do_checkpoint && slot.task->type == SERVER_TASK_TYPE_COMPLETION;
  3287. // make a checkpoint of the parts of the memory that cannot be rolled back.
  3288. // checkpoints are created only if:
  3289. // - the model uses SWA and we are not using `swa_full`
  3290. // - the model architecture is marked as recurrent or hybrid
  3291. //
  3292. // TODO: try to make this conditional on the context or the memory module, instead of the model type
  3293. do_checkpoint = do_checkpoint && (
  3294. llama_model_is_recurrent(model) ||
  3295. llama_model_is_hybrid(model) ||
  3296. (llama_model_n_swa(model) > 0 && !params_base.swa_full)
  3297. );
  3298. // add prompt tokens for processing in the current batch
  3299. while (slot.n_past < slot.n_prompt_tokens() && batch.n_tokens < n_batch) {
  3300. // get next token to process
  3301. llama_token cur_tok = input_tokens[slot.n_past];
  3302. if (cur_tok == LLAMA_TOKEN_NULL) {
  3303. break; // end of text chunk
  3304. }
  3305. // if this is an alora request with pre-invocation
  3306. // tokens that are not cached, we need to stop filling
  3307. // this batch at those pre-invocation tokens.
  3308. if (alora_scale > 0 && slot.n_past == slot.alora_invocation_start - 1) {
  3309. SLT_DBG(slot, "stop prompt batch filling at (n_past = %d, alora_invocation_start = %d)\n", slot.n_past, slot.alora_invocation_start);
  3310. break;
  3311. }
  3312. // embedding requires all tokens in the batch to be output
  3313. common_batch_add(batch, cur_tok, slot.n_past, { slot.id }, slot.need_embd());
  3314. slot.prompt.tokens.push_back(cur_tok);
  3315. slot.n_prompt_tokens_processed++;
  3316. slot.n_past++;
  3317. // process the last few tokens of the prompt separately in order to allow for a checkpoint to be created.
  3318. if (do_checkpoint && slot.n_prompt_tokens() - slot.n_past == 64) {
  3319. break;
  3320. }
  3321. }
  3322. // SLT_INF(slot, "new slot.prompt.tokens: %s\n", slot.slot.prompt.tokens.str().c_str());
  3323. SLT_INF(slot, "prompt processing progress, n_past = %d, n_tokens = %d, progress = %f\n", slot.n_past, batch.n_tokens, (float) slot.n_past / slot.n_prompt_tokens());
  3324. // entire prompt has been processed
  3325. if (slot.n_past == slot.n_prompt_tokens()) {
  3326. slot.state = SLOT_STATE_DONE_PROMPT;
  3327. GGML_ASSERT(batch.n_tokens > 0);
  3328. common_sampler_reset(slot.smpl);
  3329. // Process all prompt tokens through sampler system
  3330. for (int i = 0; i < slot.n_prompt_tokens(); ++i) {
  3331. llama_token id = input_tokens[i];
  3332. if (id != LLAMA_TOKEN_NULL) {
  3333. common_sampler_accept(slot.smpl, id, false);
  3334. }
  3335. }
  3336. // extract the logits only for the last token
  3337. batch.logits[batch.n_tokens - 1] = true;
  3338. slot.n_decoded = 0;
  3339. slot.i_batch = batch.n_tokens - 1;
  3340. SLT_INF(slot, "prompt done, n_past = %d, n_tokens = %d\n", slot.n_past, batch.n_tokens);
  3341. const auto pos_min = llama_memory_seq_pos_min(llama_get_memory(ctx), slot.id);
  3342. const auto pos_max = llama_memory_seq_pos_max(llama_get_memory(ctx), slot.id);
  3343. // no need for empty or small checkpoints
  3344. do_checkpoint = do_checkpoint && (pos_min >= 0 && pos_max >= 64);
  3345. // no need to create checkpoints that are too close together
  3346. do_checkpoint = do_checkpoint && (slot.prompt.checkpoints.empty() || pos_max > slot.prompt.checkpoints.back().pos_max + 64);
  3347. if (do_checkpoint) {
  3348. while (slot.prompt.checkpoints.size() >= (size_t) params_base.n_ctx_checkpoints) {
  3349. // make room for the new checkpoint, if needed
  3350. const auto & cur = slot.prompt.checkpoints.front();
  3351. SLT_WRN(slot, "erasing old context checkpoint (pos_min = %d, pos_max = %d, size = %.3f MiB)\n",
  3352. cur.pos_min, cur.pos_max, (float) cur.data.size() / 1024 / 1024);
  3353. slot.prompt.checkpoints.erase(slot.prompt.checkpoints.begin());
  3354. }
  3355. const size_t checkpoint_size = llama_state_seq_get_size_ext(ctx, slot.id, LLAMA_STATE_SEQ_FLAGS_PARTIAL_ONLY);
  3356. auto & cur = slot.prompt.checkpoints.emplace_back(server_prompt_checkpoint{
  3357. /*.pos_min = */ pos_min,
  3358. /*.pos_max = */ pos_max,
  3359. /*.data = */ std::vector<uint8_t>(checkpoint_size),
  3360. });
  3361. llama_state_seq_get_data_ext(ctx, cur.data.data(), checkpoint_size, slot.id, LLAMA_STATE_SEQ_FLAGS_PARTIAL_ONLY);
  3362. SLT_WRN(slot, "created context checkpoint %d of %d (pos_min = %d, pos_max = %d, size = %.3f MiB)\n",
  3363. (int) slot.prompt.checkpoints.size(), params_base.n_ctx_checkpoints, cur.pos_min, cur.pos_max, (float) cur.data.size() / 1024 / 1024);
  3364. }
  3365. }
  3366. }
  3367. if (batch.n_tokens >= n_batch) {
  3368. break;
  3369. }
  3370. }
  3371. }
  3372. if (batch.n_tokens == 0) {
  3373. SRV_WRN("%s", "no tokens to decode\n");
  3374. return;
  3375. }
  3376. SRV_DBG("decoding batch, n_tokens = %d\n", batch.n_tokens);
  3377. if (slot_batched) {
  3378. // apply lora, only need to do it once per batch
  3379. common_set_adapter_lora(ctx, slot_batched->lora);
  3380. // if the lora is temporarily disabled for an alora, re-enable it
  3381. // for next time
  3382. if (alora_scale > 0.0f) {
  3383. SRV_DBG("re-enabling alora with scale %f\n", alora_scale);
  3384. slot_batched->lora[alora_disabled_id].scale = alora_scale;
  3385. }
  3386. llama_set_embeddings(ctx, slot_batched->need_embd());
  3387. }
  3388. int32_t i_next = 0;
  3389. // process the created batch of tokens
  3390. for (int32_t i = 0; i < batch.n_tokens; i = i_next) {
  3391. const int32_t n_tokens = std::min(n_batch, batch.n_tokens - i);
  3392. llama_batch batch_view = {
  3393. n_tokens,
  3394. batch.token + i,
  3395. nullptr,
  3396. batch.pos + i,
  3397. batch.n_seq_id + i,
  3398. batch.seq_id + i,
  3399. batch.logits + i,
  3400. };
  3401. const int ret = llama_decode(ctx, batch_view);
  3402. metrics.on_decoded(slots);
  3403. if (ret != 0) {
  3404. {
  3405. std::string err;
  3406. if (n_batch == 1 && ret == 1) {
  3407. err = "Context size has been exceeded.";
  3408. }
  3409. if (ret == -1) {
  3410. err = "Invalid input batch.";
  3411. }
  3412. if (ret < -1) {
  3413. // TODO: update slot state based on llama_memory_seq_pos_min() and llama_memory_seq_pos_max()
  3414. err = "Compute error.";
  3415. }
  3416. // TODO: handle ret == 2 (abort) when we start aborting
  3417. if (!err.empty()) {
  3418. SRV_ERR("%s, i = %d, n_batch = %d, ret = %d\n", err.c_str(), i, n_batch, ret);
  3419. for (auto & slot : slots) {
  3420. send_error(slot, err);
  3421. slot.release();
  3422. }
  3423. break;
  3424. }
  3425. }
  3426. // retry with half the batch size to try to find a free slot in the KV cache
  3427. n_batch /= 2;
  3428. SRV_WRN("failed to find free space in the KV cache, retrying with smaller batch size, i = %d, n_batch = %d, ret = %d\n", i, n_batch, ret);
  3429. continue; // continue loop of n_batch
  3430. }
  3431. // move the head of the batch forward with the number of tokens we just processed
  3432. i_next = i + n_tokens;
  3433. // on successful decode, restore the original batch size
  3434. n_batch = llama_n_batch(ctx);
  3435. for (auto & slot : slots) {
  3436. // optionally send prompt processing progress
  3437. if (slot.state == SLOT_STATE_PROCESSING_PROMPT || slot.state == SLOT_STATE_DONE_PROMPT) {
  3438. if (slot.task->params.stream && slot.task->params.return_progress) {
  3439. send_partial_response(slot, {}, true);
  3440. }
  3441. }
  3442. if (slot.i_batch < (int) i || slot.i_batch >= (int) (i + n_tokens)) {
  3443. continue; // continue loop of slots
  3444. }
  3445. if (slot.state == SLOT_STATE_DONE_PROMPT) {
  3446. if (slot.task->type == SERVER_TASK_TYPE_EMBEDDING) {
  3447. // prompt evaluated for embedding
  3448. send_embedding(slot, batch_view);
  3449. slot.release();
  3450. slot.i_batch = -1;
  3451. continue; // continue loop of slots
  3452. }
  3453. if (slot.task->type == SERVER_TASK_TYPE_RERANK) {
  3454. send_rerank(slot, batch_view);
  3455. slot.release();
  3456. slot.i_batch = -1;
  3457. continue; // continue loop of slots
  3458. }
  3459. // prompt evaluated for next-token prediction
  3460. slot.state = SLOT_STATE_GENERATING;
  3461. } else if (slot.state != SLOT_STATE_GENERATING) {
  3462. continue; // continue loop of slots
  3463. }
  3464. const int tok_idx = slot.i_batch - i;
  3465. llama_token id = common_sampler_sample(slot.smpl, ctx, tok_idx);
  3466. slot.i_batch = -1;
  3467. common_sampler_accept(slot.smpl, id, true);
  3468. slot.n_decoded += 1;
  3469. const int64_t t_current = ggml_time_us();
  3470. if (slot.n_decoded == 1) {
  3471. slot.t_start_generation = t_current;
  3472. slot.t_prompt_processing = (slot.t_start_generation - slot.t_start_process_prompt) / 1e3;
  3473. metrics.on_prompt_eval(slot);
  3474. }
  3475. slot.t_token_generation = std::max<int64_t>(1, t_current - slot.t_start_generation) / 1e3;
  3476. completion_token_output result;
  3477. result.tok = id;
  3478. result.text_to_send = common_token_to_piece(ctx, result.tok, accept_special_token(slot, result.tok));
  3479. result.prob = 1.0f; // TODO: set it here instead of doing inside populate_token_probs
  3480. if (slot.task->params.sampling.n_probs > 0) {
  3481. populate_token_probs(slot, result, slot.task->params.post_sampling_probs, params_base.special, tok_idx);
  3482. }
  3483. if (!process_token(result, slot)) {
  3484. // release slot because of stop condition
  3485. slot.print_timings();
  3486. send_final_response(slot);
  3487. metrics.on_prediction(slot);
  3488. slot.release();
  3489. continue;
  3490. }
  3491. }
  3492. // do speculative decoding
  3493. for (auto & slot : slots) {
  3494. if (!slot.is_processing() || !slot.can_speculate()) {
  3495. continue;
  3496. }
  3497. if (slot.state != SLOT_STATE_GENERATING) {
  3498. continue;
  3499. }
  3500. if (mctx) {
  3501. // we should never reach this, as speculative is automatically disabled if mmproj is loaded
  3502. GGML_ABORT("not supported by multimodal");
  3503. }
  3504. // determine the max draft that fits the current slot state
  3505. int n_draft_max = slot.task->params.speculative.n_max;
  3506. // note: n_past is not yet increased for the `id` token sampled above
  3507. // also, need to leave space for 1 extra token to allow context shifts
  3508. n_draft_max = std::min(n_draft_max, slot.n_ctx - slot.n_past - 2);
  3509. if (slot.n_remaining > 0) {
  3510. n_draft_max = std::min(n_draft_max, slot.n_remaining - 1);
  3511. }
  3512. SLT_DBG(slot, "max possible draft: %d\n", n_draft_max);
  3513. if (n_draft_max < slot.task->params.speculative.n_min) {
  3514. SLT_DBG(slot, "the max possible draft is too small: %d < %d - skipping speculative decoding\n", n_draft_max, slot.task->params.speculative.n_min);
  3515. continue;
  3516. }
  3517. llama_token id = slot.sampled;
  3518. struct common_speculative_params params_spec;
  3519. params_spec.n_draft = n_draft_max;
  3520. params_spec.n_reuse = llama_n_ctx(slot.ctx_dft) - slot.task->params.speculative.n_max;
  3521. params_spec.p_min = slot.task->params.speculative.p_min;
  3522. const llama_tokens & cached_text_tokens = slot.prompt.tokens.get_text_tokens();
  3523. llama_tokens draft = common_speculative_gen_draft(slot.spec, params_spec, cached_text_tokens, id);
  3524. // ignore small drafts
  3525. if (slot.task->params.speculative.n_min > (int) draft.size()) {
  3526. SLT_DBG(slot, "ignoring small draft: %d < %d\n", (int) draft.size(), slot.task->params.speculative.n_min);
  3527. continue;
  3528. }
  3529. // keep track of total number of drafted tokens tested
  3530. slot.n_draft_total += draft.size();
  3531. // construct the speculation batch
  3532. common_batch_clear(slot.batch_spec);
  3533. common_batch_add (slot.batch_spec, id, slot.n_past, { slot.id }, true);
  3534. for (size_t i = 0; i < draft.size(); ++i) {
  3535. common_batch_add(slot.batch_spec, draft[i], slot.n_past + 1 + i, { slot.id }, true);
  3536. }
  3537. SLT_DBG(slot, "decoding speculative batch, size = %d\n", slot.batch_spec.n_tokens);
  3538. llama_decode(ctx, slot.batch_spec);
  3539. // the accepted tokens from the speculation
  3540. const auto ids = common_sampler_sample_and_accept_n(slot.smpl, ctx, draft);
  3541. slot.n_past += ids.size();
  3542. slot.n_decoded += ids.size();
  3543. // update how many tokens out of those tested were accepted
  3544. slot.n_draft_accepted += ids.size() - 1;
  3545. slot.prompt.tokens.push_back(id);
  3546. slot.prompt.tokens.insert({ids.begin(), ids.end() - 1});
  3547. llama_memory_seq_rm(llama_get_memory(ctx), slot.id, slot.n_past, -1);
  3548. for (size_t i = 0; i < ids.size(); ++i) {
  3549. completion_token_output result;
  3550. result.tok = ids[i];
  3551. result.text_to_send = common_token_to_piece(ctx, result.tok, accept_special_token(slot, result.tok));
  3552. result.prob = 1.0f; // set later
  3553. // TODO: set result.probs
  3554. if (!process_token(result, slot)) {
  3555. slot.print_timings();
  3556. send_final_response(slot);
  3557. metrics.on_prediction(slot);
  3558. slot.release();
  3559. break;
  3560. }
  3561. }
  3562. SLT_DBG(slot, "accepted %d/%d draft tokens, new n_past = %d\n", (int) ids.size() - 1, (int) draft.size(), slot.n_past);
  3563. }
  3564. }
  3565. SRV_DBG("%s", "run slots completed\n");
  3566. }
  3567. json model_meta() const {
  3568. return json {
  3569. {"vocab_type", llama_vocab_type (vocab)},
  3570. {"n_vocab", llama_vocab_n_tokens (vocab)},
  3571. {"n_ctx_train", llama_model_n_ctx_train(model)},
  3572. {"n_embd", llama_model_n_embd (model)},
  3573. {"n_params", llama_model_n_params (model)},
  3574. {"size", llama_model_size (model)},
  3575. };
  3576. }
  3577. };
  3578. static void log_server_request(const httplib::Request & req, const httplib::Response & res) {
  3579. // skip GH copilot requests when using default port
  3580. if (req.path == "/v1/health") {
  3581. return;
  3582. }
  3583. // reminder: this function is not covered by httplib's exception handler; if someone does more complicated stuff, think about wrapping it in try-catch
  3584. SRV_INF("request: %s %s %s %d\n", req.method.c_str(), req.path.c_str(), req.remote_addr.c_str(), res.status);
  3585. SRV_DBG("request: %s\n", req.body.c_str());
  3586. SRV_DBG("response: %s\n", res.body.c_str());
  3587. }
  3588. std::function<void(int)> shutdown_handler;
  3589. std::atomic_flag is_terminating = ATOMIC_FLAG_INIT;
  3590. inline void signal_handler(int signal) {
  3591. if (is_terminating.test_and_set()) {
  3592. // in case it hangs, we can force terminate the server by hitting Ctrl+C twice
  3593. // this is for better developer experience, we can remove when the server is stable enough
  3594. fprintf(stderr, "Received second interrupt, terminating immediately.\n");
  3595. exit(1);
  3596. }
  3597. shutdown_handler(signal);
  3598. }
  3599. int main(int argc, char ** argv) {
  3600. // own arguments required by this example
  3601. common_params params;
  3602. if (!common_params_parse(argc, argv, params, LLAMA_EXAMPLE_SERVER)) {
  3603. return 1;
  3604. }
  3605. common_init();
  3606. // struct that contains llama context and inference
  3607. server_context ctx_server;
  3608. llama_backend_init();
  3609. llama_numa_init(params.numa);
  3610. 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());
  3611. LOG_INF("\n");
  3612. LOG_INF("%s\n", common_params_get_system_info(params).c_str());
  3613. LOG_INF("\n");
  3614. std::unique_ptr<httplib::Server> svr;
  3615. #ifdef CPPHTTPLIB_OPENSSL_SUPPORT
  3616. if (params.ssl_file_key != "" && params.ssl_file_cert != "") {
  3617. LOG_INF("Running with SSL: key = %s, cert = %s\n", params.ssl_file_key.c_str(), params.ssl_file_cert.c_str());
  3618. svr.reset(
  3619. new httplib::SSLServer(params.ssl_file_cert.c_str(), params.ssl_file_key.c_str())
  3620. );
  3621. } else {
  3622. LOG_INF("Running without SSL\n");
  3623. svr.reset(new httplib::Server());
  3624. }
  3625. #else
  3626. if (params.ssl_file_key != "" && params.ssl_file_cert != "") {
  3627. LOG_ERR("Server is built without SSL support\n");
  3628. return 1;
  3629. }
  3630. svr.reset(new httplib::Server());
  3631. #endif
  3632. std::atomic<server_state> state{SERVER_STATE_LOADING_MODEL};
  3633. svr->set_default_headers({{"Server", "llama.cpp"}});
  3634. svr->set_logger(log_server_request);
  3635. auto res_error = [](httplib::Response & res, const json & error_data) {
  3636. json final_response {{"error", error_data}};
  3637. res.set_content(safe_json_to_str(final_response), MIMETYPE_JSON);
  3638. res.status = json_value(error_data, "code", 500);
  3639. };
  3640. auto res_ok = [](httplib::Response & res, const json & data) {
  3641. res.set_content(safe_json_to_str(data), MIMETYPE_JSON);
  3642. res.status = 200;
  3643. };
  3644. svr->set_exception_handler([&res_error](const httplib::Request &, httplib::Response & res, const std::exception_ptr & ep) {
  3645. std::string message;
  3646. try {
  3647. std::rethrow_exception(ep);
  3648. } catch (const std::exception & e) {
  3649. message = e.what();
  3650. } catch (...) {
  3651. message = "Unknown Exception";
  3652. }
  3653. try {
  3654. json formatted_error = format_error_response(message, ERROR_TYPE_SERVER);
  3655. LOG_WRN("got exception: %s\n", formatted_error.dump().c_str());
  3656. res_error(res, formatted_error);
  3657. } catch (const std::exception & e) {
  3658. LOG_ERR("got another exception: %s | while hanlding exception: %s\n", e.what(), message.c_str());
  3659. }
  3660. });
  3661. svr->set_error_handler([&res_error](const httplib::Request &, httplib::Response & res) {
  3662. if (res.status == 404) {
  3663. res_error(res, format_error_response("File Not Found", ERROR_TYPE_NOT_FOUND));
  3664. }
  3665. // for other error codes, we skip processing here because it's already done by res_error()
  3666. });
  3667. // set timeouts and change hostname and port
  3668. svr->set_read_timeout (params.timeout_read);
  3669. svr->set_write_timeout(params.timeout_write);
  3670. std::unordered_map<std::string, std::string> log_data;
  3671. log_data["hostname"] = params.hostname;
  3672. log_data["port"] = std::to_string(params.port);
  3673. if (params.api_keys.size() == 1) {
  3674. auto key = params.api_keys[0];
  3675. log_data["api_key"] = "api_key: ****" + key.substr(std::max((int)(key.length() - 4), 0));
  3676. } else if (params.api_keys.size() > 1) {
  3677. log_data["api_key"] = "api_key: " + std::to_string(params.api_keys.size()) + " keys loaded";
  3678. }
  3679. // Necessary similarity of prompt for slot selection
  3680. ctx_server.slot_prompt_similarity = params.slot_prompt_similarity;
  3681. //
  3682. // Middlewares
  3683. //
  3684. auto middleware_validate_api_key = [&params, &res_error](const httplib::Request & req, httplib::Response & res) {
  3685. static const std::unordered_set<std::string> public_endpoints = {
  3686. "/health",
  3687. "/v1/health",
  3688. "/models",
  3689. "/v1/models",
  3690. "/api/tags"
  3691. };
  3692. // If API key is not set, skip validation
  3693. if (params.api_keys.empty()) {
  3694. return true;
  3695. }
  3696. // If path is public or is static file, skip validation
  3697. if (public_endpoints.find(req.path) != public_endpoints.end() || req.path == "/") {
  3698. return true;
  3699. }
  3700. // Check for API key in the header
  3701. auto auth_header = req.get_header_value("Authorization");
  3702. std::string prefix = "Bearer ";
  3703. if (auth_header.substr(0, prefix.size()) == prefix) {
  3704. std::string received_api_key = auth_header.substr(prefix.size());
  3705. if (std::find(params.api_keys.begin(), params.api_keys.end(), received_api_key) != params.api_keys.end()) {
  3706. return true; // API key is valid
  3707. }
  3708. }
  3709. // API key is invalid or not provided
  3710. res_error(res, format_error_response("Invalid API Key", ERROR_TYPE_AUTHENTICATION));
  3711. LOG_WRN("Unauthorized: Invalid API Key\n");
  3712. return false;
  3713. };
  3714. auto middleware_server_state = [&res_error, &state](const httplib::Request & req, httplib::Response & res) {
  3715. server_state current_state = state.load();
  3716. if (current_state == SERVER_STATE_LOADING_MODEL) {
  3717. auto tmp = string_split<std::string>(req.path, '.');
  3718. if (req.path == "/" || tmp.back() == "html") {
  3719. res.set_content(reinterpret_cast<const char*>(loading_html), loading_html_len, "text/html; charset=utf-8");
  3720. res.status = 503;
  3721. } else if (req.path == "/models" || req.path == "/v1/models" || req.path == "/api/tags") {
  3722. // allow the models endpoint to be accessed during loading
  3723. return true;
  3724. } else {
  3725. res_error(res, format_error_response("Loading model", ERROR_TYPE_UNAVAILABLE));
  3726. }
  3727. return false;
  3728. }
  3729. return true;
  3730. };
  3731. // register server middlewares
  3732. svr->set_pre_routing_handler([&middleware_validate_api_key, &middleware_server_state](const httplib::Request & req, httplib::Response & res) {
  3733. res.set_header("Access-Control-Allow-Origin", req.get_header_value("Origin"));
  3734. // If this is OPTIONS request, skip validation because browsers don't include Authorization header
  3735. if (req.method == "OPTIONS") {
  3736. res.set_header("Access-Control-Allow-Credentials", "true");
  3737. res.set_header("Access-Control-Allow-Methods", "GET, POST");
  3738. res.set_header("Access-Control-Allow-Headers", "*");
  3739. res.set_content("", "text/html"); // blank response, no data
  3740. return httplib::Server::HandlerResponse::Handled; // skip further processing
  3741. }
  3742. if (!middleware_server_state(req, res)) {
  3743. return httplib::Server::HandlerResponse::Handled;
  3744. }
  3745. if (!middleware_validate_api_key(req, res)) {
  3746. return httplib::Server::HandlerResponse::Handled;
  3747. }
  3748. return httplib::Server::HandlerResponse::Unhandled;
  3749. });
  3750. //
  3751. // Route handlers (or controllers)
  3752. //
  3753. const auto handle_health = [&](const httplib::Request &, httplib::Response & res) {
  3754. // error and loading states are handled by middleware
  3755. json health = {{"status", "ok"}};
  3756. res_ok(res, health);
  3757. };
  3758. const auto handle_slots = [&](const httplib::Request & req, httplib::Response & res) {
  3759. if (!params.endpoint_slots) {
  3760. res_error(res, format_error_response("This server does not support slots endpoint. Start it with `--slots`", ERROR_TYPE_NOT_SUPPORTED));
  3761. return;
  3762. }
  3763. // request slots data using task queue
  3764. int task_id = ctx_server.queue_tasks.get_new_id();
  3765. {
  3766. server_task task(SERVER_TASK_TYPE_METRICS);
  3767. task.id = task_id;
  3768. ctx_server.queue_results.add_waiting_task_id(task_id);
  3769. ctx_server.queue_tasks.post(std::move(task), true); // high-priority task
  3770. }
  3771. // get the result
  3772. server_task_result_ptr result = ctx_server.queue_results.recv(task_id);
  3773. ctx_server.queue_results.remove_waiting_task_id(task_id);
  3774. if (result->is_error()) {
  3775. res_error(res, result->to_json());
  3776. return;
  3777. }
  3778. // TODO: get rid of this dynamic_cast
  3779. auto res_task = dynamic_cast<server_task_result_metrics*>(result.get());
  3780. GGML_ASSERT(res_task != nullptr);
  3781. // optionally return "fail_on_no_slot" error
  3782. if (req.has_param("fail_on_no_slot")) {
  3783. if (res_task->n_idle_slots == 0) {
  3784. res_error(res, format_error_response("no slot available", ERROR_TYPE_UNAVAILABLE));
  3785. return;
  3786. }
  3787. }
  3788. res_ok(res, res_task->slots_data);
  3789. };
  3790. const auto handle_metrics = [&](const httplib::Request &, httplib::Response & res) {
  3791. if (!params.endpoint_metrics) {
  3792. res_error(res, format_error_response("This server does not support metrics endpoint. Start it with `--metrics`", ERROR_TYPE_NOT_SUPPORTED));
  3793. return;
  3794. }
  3795. // request slots data using task queue
  3796. int task_id = ctx_server.queue_tasks.get_new_id();
  3797. {
  3798. server_task task(SERVER_TASK_TYPE_METRICS);
  3799. task.id = task_id;
  3800. ctx_server.queue_results.add_waiting_task_id(task_id);
  3801. ctx_server.queue_tasks.post(std::move(task), true); // high-priority task
  3802. }
  3803. // get the result
  3804. server_task_result_ptr result = ctx_server.queue_results.recv(task_id);
  3805. ctx_server.queue_results.remove_waiting_task_id(task_id);
  3806. if (result->is_error()) {
  3807. res_error(res, result->to_json());
  3808. return;
  3809. }
  3810. // TODO: get rid of this dynamic_cast
  3811. auto res_task = dynamic_cast<server_task_result_metrics*>(result.get());
  3812. GGML_ASSERT(res_task != nullptr);
  3813. // metrics definition: https://prometheus.io/docs/practices/naming/#metric-names
  3814. json all_metrics_def = json {
  3815. {"counter", {{
  3816. {"name", "prompt_tokens_total"},
  3817. {"help", "Number of prompt tokens processed."},
  3818. {"value", (uint64_t) res_task->n_prompt_tokens_processed_total}
  3819. }, {
  3820. {"name", "prompt_seconds_total"},
  3821. {"help", "Prompt process time"},
  3822. {"value", (uint64_t) res_task->t_prompt_processing_total / 1.e3}
  3823. }, {
  3824. {"name", "tokens_predicted_total"},
  3825. {"help", "Number of generation tokens processed."},
  3826. {"value", (uint64_t) res_task->n_tokens_predicted_total}
  3827. }, {
  3828. {"name", "tokens_predicted_seconds_total"},
  3829. {"help", "Predict process time"},
  3830. {"value", (uint64_t) res_task->t_tokens_generation_total / 1.e3}
  3831. }, {
  3832. {"name", "n_decode_total"},
  3833. {"help", "Total number of llama_decode() calls"},
  3834. {"value", res_task->n_decode_total}
  3835. }, {
  3836. {"name", "n_past_max"},
  3837. {"help", "Largest observed n_past."},
  3838. {"value", res_task->n_past_max}
  3839. }, {
  3840. {"name", "n_busy_slots_per_decode"},
  3841. {"help", "Average number of busy slots per llama_decode() call"},
  3842. {"value", (float) res_task->n_busy_slots_total / std::max((float) res_task->n_decode_total, 1.f)}
  3843. }}},
  3844. {"gauge", {{
  3845. {"name", "prompt_tokens_seconds"},
  3846. {"help", "Average prompt throughput in tokens/s."},
  3847. {"value", res_task->n_prompt_tokens_processed ? 1.e3 / res_task->t_prompt_processing * res_task->n_prompt_tokens_processed : 0.}
  3848. },{
  3849. {"name", "predicted_tokens_seconds"},
  3850. {"help", "Average generation throughput in tokens/s."},
  3851. {"value", res_task->n_tokens_predicted ? 1.e3 / res_task->t_tokens_generation * res_task->n_tokens_predicted : 0.}
  3852. },{
  3853. {"name", "requests_processing"},
  3854. {"help", "Number of requests processing."},
  3855. {"value", (uint64_t) res_task->n_processing_slots}
  3856. },{
  3857. {"name", "requests_deferred"},
  3858. {"help", "Number of requests deferred."},
  3859. {"value", (uint64_t) res_task->n_tasks_deferred}
  3860. }}}
  3861. };
  3862. std::stringstream prometheus;
  3863. for (const auto & el : all_metrics_def.items()) {
  3864. const auto & type = el.key();
  3865. const auto & metrics_def = el.value();
  3866. for (const auto & metric_def : metrics_def) {
  3867. const std::string name = metric_def.at("name");
  3868. const std::string help = metric_def.at("help");
  3869. auto value = json_value(metric_def, "value", 0.);
  3870. prometheus << "# HELP llamacpp:" << name << " " << help << "\n"
  3871. << "# TYPE llamacpp:" << name << " " << type << "\n"
  3872. << "llamacpp:" << name << " " << value << "\n";
  3873. }
  3874. }
  3875. res.set_header("Process-Start-Time-Unix", std::to_string(res_task->t_start));
  3876. res.set_content(prometheus.str(), "text/plain; version=0.0.4");
  3877. res.status = 200; // HTTP OK
  3878. };
  3879. const auto handle_slots_save = [&ctx_server, &res_error, &res_ok, &params](const httplib::Request & req, httplib::Response & res, int id_slot) {
  3880. json request_data = json::parse(req.body);
  3881. std::string filename = request_data.at("filename");
  3882. if (!fs_validate_filename(filename)) {
  3883. res_error(res, format_error_response("Invalid filename", ERROR_TYPE_INVALID_REQUEST));
  3884. return;
  3885. }
  3886. std::string filepath = params.slot_save_path + filename;
  3887. int task_id = ctx_server.queue_tasks.get_new_id();
  3888. {
  3889. server_task task(SERVER_TASK_TYPE_SLOT_SAVE);
  3890. task.id = task_id;
  3891. task.slot_action.slot_id = id_slot;
  3892. task.slot_action.filename = filename;
  3893. task.slot_action.filepath = filepath;
  3894. ctx_server.queue_results.add_waiting_task_id(task_id);
  3895. ctx_server.queue_tasks.post(std::move(task));
  3896. }
  3897. server_task_result_ptr result = ctx_server.queue_results.recv(task_id);
  3898. ctx_server.queue_results.remove_waiting_task_id(task_id);
  3899. if (result->is_error()) {
  3900. res_error(res, result->to_json());
  3901. return;
  3902. }
  3903. res_ok(res, result->to_json());
  3904. };
  3905. const auto handle_slots_restore = [&ctx_server, &res_error, &res_ok, &params](const httplib::Request & req, httplib::Response & res, int id_slot) {
  3906. json request_data = json::parse(req.body);
  3907. std::string filename = request_data.at("filename");
  3908. if (!fs_validate_filename(filename)) {
  3909. res_error(res, format_error_response("Invalid filename", ERROR_TYPE_INVALID_REQUEST));
  3910. return;
  3911. }
  3912. std::string filepath = params.slot_save_path + filename;
  3913. int task_id = ctx_server.queue_tasks.get_new_id();
  3914. {
  3915. server_task task(SERVER_TASK_TYPE_SLOT_RESTORE);
  3916. task.id = task_id;
  3917. task.slot_action.slot_id = id_slot;
  3918. task.slot_action.filename = filename;
  3919. task.slot_action.filepath = filepath;
  3920. ctx_server.queue_results.add_waiting_task_id(task_id);
  3921. ctx_server.queue_tasks.post(std::move(task));
  3922. }
  3923. server_task_result_ptr result = ctx_server.queue_results.recv(task_id);
  3924. ctx_server.queue_results.remove_waiting_task_id(task_id);
  3925. if (result->is_error()) {
  3926. res_error(res, result->to_json());
  3927. return;
  3928. }
  3929. GGML_ASSERT(dynamic_cast<server_task_result_slot_save_load*>(result.get()) != nullptr);
  3930. res_ok(res, result->to_json());
  3931. };
  3932. const auto handle_slots_erase = [&ctx_server, &res_error, &res_ok](const httplib::Request & /* req */, httplib::Response & res, int id_slot) {
  3933. int task_id = ctx_server.queue_tasks.get_new_id();
  3934. {
  3935. server_task task(SERVER_TASK_TYPE_SLOT_ERASE);
  3936. task.id = task_id;
  3937. task.slot_action.slot_id = id_slot;
  3938. ctx_server.queue_results.add_waiting_task_id(task_id);
  3939. ctx_server.queue_tasks.post(std::move(task));
  3940. }
  3941. server_task_result_ptr result = ctx_server.queue_results.recv(task_id);
  3942. ctx_server.queue_results.remove_waiting_task_id(task_id);
  3943. if (result->is_error()) {
  3944. res_error(res, result->to_json());
  3945. return;
  3946. }
  3947. GGML_ASSERT(dynamic_cast<server_task_result_slot_erase*>(result.get()) != nullptr);
  3948. res_ok(res, result->to_json());
  3949. };
  3950. const auto handle_slots_action = [&params, &res_error, &handle_slots_save, &handle_slots_restore, &handle_slots_erase](const httplib::Request & req, httplib::Response & res) {
  3951. if (params.slot_save_path.empty()) {
  3952. res_error(res, format_error_response("This server does not support slots action. Start it with `--slot-save-path`", ERROR_TYPE_NOT_SUPPORTED));
  3953. return;
  3954. }
  3955. std::string id_slot_str = req.path_params.at("id_slot");
  3956. int id_slot;
  3957. try {
  3958. id_slot = std::stoi(id_slot_str);
  3959. } catch (const std::exception &) {
  3960. res_error(res, format_error_response("Invalid slot ID", ERROR_TYPE_INVALID_REQUEST));
  3961. return;
  3962. }
  3963. std::string action = req.get_param_value("action");
  3964. if (action == "save") {
  3965. handle_slots_save(req, res, id_slot);
  3966. } else if (action == "restore") {
  3967. handle_slots_restore(req, res, id_slot);
  3968. } else if (action == "erase") {
  3969. handle_slots_erase(req, res, id_slot);
  3970. } else {
  3971. res_error(res, format_error_response("Invalid action", ERROR_TYPE_INVALID_REQUEST));
  3972. }
  3973. };
  3974. const auto handle_props = [&params, &ctx_server, &res_ok](const httplib::Request &, httplib::Response & res) {
  3975. json default_generation_settings_for_props;
  3976. {
  3977. slot_params params;
  3978. params.sampling = ctx_server.params_base.sampling;
  3979. default_generation_settings_for_props = json {
  3980. {"params", params.to_json(true)},
  3981. {"n_ctx", ctx_server.slots[0].n_ctx},
  3982. };
  3983. }
  3984. // this endpoint is publicly available, please only return what is safe to be exposed
  3985. json data = {
  3986. { "default_generation_settings", default_generation_settings_for_props },
  3987. { "total_slots", ctx_server.params_base.n_parallel },
  3988. { "model_path", ctx_server.params_base.model.path },
  3989. { "modalities", json {
  3990. {"vision", ctx_server.oai_parser_opt.allow_image},
  3991. {"audio", ctx_server.oai_parser_opt.allow_audio},
  3992. } },
  3993. { "endpoint_slots", params.endpoint_slots },
  3994. { "endpoint_props", params.endpoint_props },
  3995. { "endpoint_metrics", params.endpoint_metrics },
  3996. { "webui", params.webui },
  3997. { "chat_template", common_chat_templates_source(ctx_server.chat_templates.get()) },
  3998. { "bos_token", common_token_to_piece(ctx_server.ctx, llama_vocab_bos(ctx_server.vocab), /* special= */ true)},
  3999. { "eos_token", common_token_to_piece(ctx_server.ctx, llama_vocab_eos(ctx_server.vocab), /* special= */ true)},
  4000. { "build_info", build_info },
  4001. };
  4002. if (ctx_server.params_base.use_jinja) {
  4003. if (auto tool_use_src = common_chat_templates_source(ctx_server.chat_templates.get(), "tool_use")) {
  4004. data["chat_template_tool_use"] = tool_use_src;
  4005. }
  4006. }
  4007. res_ok(res, data);
  4008. };
  4009. const auto handle_props_change = [&ctx_server, &res_error, &res_ok](const httplib::Request & req, httplib::Response & res) {
  4010. if (!ctx_server.params_base.endpoint_props) {
  4011. res_error(res, format_error_response("This server does not support changing global properties. Start it with `--props`", ERROR_TYPE_NOT_SUPPORTED));
  4012. return;
  4013. }
  4014. json data = json::parse(req.body);
  4015. // update any props here
  4016. res_ok(res, {{ "success", true }});
  4017. };
  4018. const auto handle_api_show = [&ctx_server, &res_ok](const httplib::Request &, httplib::Response & res) {
  4019. bool has_mtmd = ctx_server.mctx != nullptr;
  4020. json data = {
  4021. {
  4022. "template", common_chat_templates_source(ctx_server.chat_templates.get()),
  4023. },
  4024. {
  4025. "model_info", {
  4026. { "llama.context_length", ctx_server.slots.back().n_ctx, },
  4027. }
  4028. },
  4029. {"modelfile", ""},
  4030. {"parameters", ""},
  4031. {"template", common_chat_templates_source(ctx_server.chat_templates.get())},
  4032. {"details", {
  4033. {"parent_model", ""},
  4034. {"format", "gguf"},
  4035. {"family", ""},
  4036. {"families", {""}},
  4037. {"parameter_size", ""},
  4038. {"quantization_level", ""}
  4039. }},
  4040. {"model_info", ""},
  4041. {"capabilities", has_mtmd ? json({"completion","multimodal"}) : json({"completion"})}
  4042. };
  4043. res_ok(res, data);
  4044. };
  4045. // handle completion-like requests (completion, chat, infill)
  4046. // we can optionally provide a custom format for partial results and final results
  4047. const auto handle_completions_impl = [&ctx_server, &res_error, &res_ok](
  4048. server_task_type type,
  4049. json & data,
  4050. const std::vector<raw_buffer> & files,
  4051. const std::function<bool()> & is_connection_closed,
  4052. httplib::Response & res,
  4053. oaicompat_type oaicompat) -> void {
  4054. GGML_ASSERT(type == SERVER_TASK_TYPE_COMPLETION || type == SERVER_TASK_TYPE_INFILL);
  4055. auto completion_id = gen_chatcmplid();
  4056. std::unordered_set<int> task_ids;
  4057. try {
  4058. std::vector<server_task> tasks;
  4059. const auto & prompt = data.at("prompt");
  4060. // TODO: this log can become very long, put it behind a flag or think about a more compact format
  4061. //SRV_DBG("Prompt: %s\n", prompt.is_string() ? prompt.get<std::string>().c_str() : prompt.dump(2).c_str());
  4062. // process prompt
  4063. std::vector<server_tokens> inputs;
  4064. if (oaicompat && ctx_server.mctx != nullptr) {
  4065. // This is the case used by OAI compatible chat path with MTMD. TODO It can be moved to the path below.
  4066. inputs.push_back(process_mtmd_prompt(ctx_server.mctx, prompt.get<std::string>(), files));
  4067. } else {
  4068. // Everything else, including multimodal completions.
  4069. inputs = tokenize_input_prompts(ctx_server.vocab, ctx_server.mctx, prompt, true, true);
  4070. }
  4071. const size_t n_ctx_slot = ctx_server.n_ctx / ctx_server.params_base.n_parallel;
  4072. tasks.reserve(inputs.size());
  4073. for (size_t i = 0; i < inputs.size(); i++) {
  4074. auto n_prompt_tokens = inputs[i].size();
  4075. if (n_prompt_tokens >= n_ctx_slot) {
  4076. json error_data = format_error_response("the request exceeds the available context size, try increasing it", ERROR_TYPE_EXCEED_CONTEXT_SIZE);
  4077. error_data["n_prompt_tokens"] = n_prompt_tokens;
  4078. error_data["n_ctx"] = n_ctx_slot;
  4079. res_error(res, error_data);
  4080. return;
  4081. }
  4082. server_task task = server_task(type);
  4083. task.id = ctx_server.queue_tasks.get_new_id();
  4084. task.index = i;
  4085. task.tokens = std::move(inputs[i]);
  4086. task.params = server_task::params_from_json_cmpl(
  4087. ctx_server.ctx,
  4088. ctx_server.params_base,
  4089. data);
  4090. task.id_slot = json_value(data, "id_slot", -1);
  4091. // OAI-compat
  4092. task.params.oaicompat = oaicompat;
  4093. task.params.oaicompat_cmpl_id = completion_id;
  4094. // oaicompat_model is already populated by params_from_json_cmpl
  4095. tasks.push_back(std::move(task));
  4096. }
  4097. task_ids = server_task::get_list_id(tasks);
  4098. ctx_server.queue_results.add_waiting_tasks(tasks);
  4099. ctx_server.queue_tasks.post(std::move(tasks));
  4100. } catch (const std::exception & e) {
  4101. res_error(res, format_error_response(e.what(), ERROR_TYPE_INVALID_REQUEST));
  4102. return;
  4103. }
  4104. bool stream = json_value(data, "stream", false);
  4105. if (!stream) {
  4106. ctx_server.receive_multi_results(task_ids, [&](std::vector<server_task_result_ptr> & results) {
  4107. if (results.size() == 1) {
  4108. // single result
  4109. res_ok(res, results[0]->to_json());
  4110. } else {
  4111. // multiple results (multitask)
  4112. json arr = json::array();
  4113. for (auto & res : results) {
  4114. arr.push_back(res->to_json());
  4115. }
  4116. res_ok(res, arr);
  4117. }
  4118. }, [&](const json & error_data) {
  4119. res_error(res, error_data);
  4120. }, is_connection_closed);
  4121. ctx_server.queue_results.remove_waiting_task_ids(task_ids);
  4122. } else {
  4123. const auto chunked_content_provider = [task_ids, &ctx_server, oaicompat](size_t, httplib::DataSink & sink) {
  4124. ctx_server.receive_cmpl_results_stream(task_ids, [&](server_task_result_ptr & result) -> bool {
  4125. json res_json = result->to_json();
  4126. if (res_json.is_array()) {
  4127. for (const auto & res : res_json) {
  4128. if (!server_sent_event(sink, res)) {
  4129. // sending failed (HTTP connection closed), cancel the generation
  4130. return false;
  4131. }
  4132. }
  4133. return true;
  4134. } else {
  4135. return server_sent_event(sink, res_json);
  4136. }
  4137. }, [&](const json & error_data) {
  4138. server_sent_event(sink, json{{"error", error_data}});
  4139. }, [&sink]() {
  4140. // note: do not use req.is_connection_closed here because req is already destroyed
  4141. return !sink.is_writable();
  4142. });
  4143. if (oaicompat != OAICOMPAT_TYPE_NONE) {
  4144. static const std::string ev_done = "data: [DONE]\n\n";
  4145. sink.write(ev_done.data(), ev_done.size());
  4146. }
  4147. sink.done();
  4148. return false;
  4149. };
  4150. auto on_complete = [task_ids, &ctx_server] (bool) {
  4151. ctx_server.queue_results.remove_waiting_task_ids(task_ids);
  4152. };
  4153. res.set_chunked_content_provider("text/event-stream", chunked_content_provider, on_complete);
  4154. }
  4155. };
  4156. const auto handle_completions = [&handle_completions_impl](const httplib::Request & req, httplib::Response & res) {
  4157. json data = json::parse(req.body);
  4158. std::vector<raw_buffer> files; // dummy
  4159. handle_completions_impl(
  4160. SERVER_TASK_TYPE_COMPLETION,
  4161. data,
  4162. files,
  4163. req.is_connection_closed,
  4164. res,
  4165. OAICOMPAT_TYPE_NONE);
  4166. };
  4167. const auto handle_completions_oai = [&handle_completions_impl](const httplib::Request & req, httplib::Response & res) {
  4168. json data = oaicompat_completion_params_parse(json::parse(req.body));
  4169. std::vector<raw_buffer> files; // dummy
  4170. handle_completions_impl(
  4171. SERVER_TASK_TYPE_COMPLETION,
  4172. data,
  4173. files,
  4174. req.is_connection_closed,
  4175. res,
  4176. OAICOMPAT_TYPE_COMPLETION);
  4177. };
  4178. const auto handle_infill = [&ctx_server, &res_error, &handle_completions_impl](const httplib::Request & req, httplib::Response & res) {
  4179. // check model compatibility
  4180. std::string err;
  4181. if (llama_vocab_fim_pre(ctx_server.vocab) == LLAMA_TOKEN_NULL) {
  4182. err += "prefix token is missing. ";
  4183. }
  4184. if (llama_vocab_fim_suf(ctx_server.vocab) == LLAMA_TOKEN_NULL) {
  4185. err += "suffix token is missing. ";
  4186. }
  4187. if (llama_vocab_fim_mid(ctx_server.vocab) == LLAMA_TOKEN_NULL) {
  4188. err += "middle token is missing. ";
  4189. }
  4190. if (!err.empty()) {
  4191. res_error(res, format_error_response(string_format("Infill is not supported by this model: %s", err.c_str()), ERROR_TYPE_NOT_SUPPORTED));
  4192. return;
  4193. }
  4194. json data = json::parse(req.body);
  4195. // validate input
  4196. if (data.contains("prompt") && !data.at("prompt").is_string()) {
  4197. // prompt is optional
  4198. res_error(res, format_error_response("\"prompt\" must be a string", ERROR_TYPE_INVALID_REQUEST));
  4199. }
  4200. if (!data.contains("input_prefix")) {
  4201. res_error(res, format_error_response("\"input_prefix\" is required", ERROR_TYPE_INVALID_REQUEST));
  4202. }
  4203. if (!data.contains("input_suffix")) {
  4204. res_error(res, format_error_response("\"input_suffix\" is required", ERROR_TYPE_INVALID_REQUEST));
  4205. }
  4206. if (data.contains("input_extra") && !data.at("input_extra").is_array()) {
  4207. // input_extra is optional
  4208. res_error(res, format_error_response("\"input_extra\" must be an array of {\"filename\": string, \"text\": string}", ERROR_TYPE_INVALID_REQUEST));
  4209. return;
  4210. }
  4211. json input_extra = json_value(data, "input_extra", json::array());
  4212. for (const auto & chunk : input_extra) {
  4213. // { "text": string, "filename": string }
  4214. if (!chunk.contains("text") || !chunk.at("text").is_string()) {
  4215. res_error(res, format_error_response("extra_context chunk must contain a \"text\" field with a string value", ERROR_TYPE_INVALID_REQUEST));
  4216. return;
  4217. }
  4218. // filename is optional
  4219. if (chunk.contains("filename") && !chunk.at("filename").is_string()) {
  4220. res_error(res, format_error_response("extra_context chunk's \"filename\" field must be a string", ERROR_TYPE_INVALID_REQUEST));
  4221. return;
  4222. }
  4223. }
  4224. data["input_extra"] = input_extra; // default to empty array if it's not exist
  4225. std::string prompt = json_value(data, "prompt", std::string());
  4226. std::vector<server_tokens> tokenized_prompts = tokenize_input_prompts(ctx_server.vocab, ctx_server.mctx, prompt, false, true);
  4227. SRV_DBG("creating infill tasks, n_prompts = %d\n", (int) tokenized_prompts.size());
  4228. data["prompt"] = format_infill(
  4229. ctx_server.vocab,
  4230. data.at("input_prefix"),
  4231. data.at("input_suffix"),
  4232. data.at("input_extra"),
  4233. ctx_server.params_base.n_batch,
  4234. ctx_server.params_base.n_predict,
  4235. ctx_server.slots[0].n_ctx, // TODO: there should be a better way
  4236. ctx_server.params_base.spm_infill,
  4237. tokenized_prompts[0].get_text_tokens() // TODO: this could maybe be multimodal.
  4238. );
  4239. std::vector<raw_buffer> files; // dummy
  4240. handle_completions_impl(
  4241. SERVER_TASK_TYPE_INFILL,
  4242. data,
  4243. files,
  4244. req.is_connection_closed,
  4245. res,
  4246. OAICOMPAT_TYPE_NONE); // infill is not OAI compatible
  4247. };
  4248. const auto handle_chat_completions = [&ctx_server, &handle_completions_impl](const httplib::Request & req, httplib::Response & res) {
  4249. LOG_DBG("request: %s\n", req.body.c_str());
  4250. auto body = json::parse(req.body);
  4251. std::vector<raw_buffer> files;
  4252. json data = oaicompat_chat_params_parse(
  4253. body,
  4254. ctx_server.oai_parser_opt,
  4255. files);
  4256. handle_completions_impl(
  4257. SERVER_TASK_TYPE_COMPLETION,
  4258. data,
  4259. files,
  4260. req.is_connection_closed,
  4261. res,
  4262. OAICOMPAT_TYPE_CHAT);
  4263. };
  4264. // same with handle_chat_completions, but without inference part
  4265. const auto handle_apply_template = [&ctx_server, &res_ok](const httplib::Request & req, httplib::Response & res) {
  4266. auto body = json::parse(req.body);
  4267. std::vector<raw_buffer> files; // dummy, unused
  4268. json data = oaicompat_chat_params_parse(
  4269. body,
  4270. ctx_server.oai_parser_opt,
  4271. files);
  4272. res_ok(res, {{ "prompt", std::move(data.at("prompt")) }});
  4273. };
  4274. const auto handle_models = [&params, &ctx_server, &state, &res_ok](const httplib::Request &, httplib::Response & res) {
  4275. server_state current_state = state.load();
  4276. json model_meta = nullptr;
  4277. if (current_state == SERVER_STATE_READY) {
  4278. model_meta = ctx_server.model_meta();
  4279. }
  4280. bool has_mtmd = ctx_server.mctx != nullptr;
  4281. json models = {
  4282. {"models", {
  4283. {
  4284. {"name", params.model_alias.empty() ? params.model.path : params.model_alias},
  4285. {"model", params.model_alias.empty() ? params.model.path : params.model_alias},
  4286. {"modified_at", ""},
  4287. {"size", ""},
  4288. {"digest", ""}, // dummy value, llama.cpp does not support managing model file's hash
  4289. {"type", "model"},
  4290. {"description", ""},
  4291. {"tags", {""}},
  4292. {"capabilities", has_mtmd ? json({"completion","multimodal"}) : json({"completion"})},
  4293. {"parameters", ""},
  4294. {"details", {
  4295. {"parent_model", ""},
  4296. {"format", "gguf"},
  4297. {"family", ""},
  4298. {"families", {""}},
  4299. {"parameter_size", ""},
  4300. {"quantization_level", ""}
  4301. }}
  4302. }
  4303. }},
  4304. {"object", "list"},
  4305. {"data", {
  4306. {
  4307. {"id", params.model_alias.empty() ? params.model.path : params.model_alias},
  4308. {"object", "model"},
  4309. {"created", std::time(0)},
  4310. {"owned_by", "llamacpp"},
  4311. {"meta", model_meta},
  4312. },
  4313. }}
  4314. };
  4315. res_ok(res, models);
  4316. };
  4317. const auto handle_tokenize = [&ctx_server, &res_ok](const httplib::Request & req, httplib::Response & res) {
  4318. const json body = json::parse(req.body);
  4319. json tokens_response = json::array();
  4320. if (body.count("content") != 0) {
  4321. const bool add_special = json_value(body, "add_special", false);
  4322. const bool parse_special = json_value(body, "parse_special", true);
  4323. const bool with_pieces = json_value(body, "with_pieces", false);
  4324. llama_tokens tokens = tokenize_mixed(ctx_server.vocab, body.at("content"), add_special, parse_special);
  4325. if (with_pieces) {
  4326. for (const auto& token : tokens) {
  4327. std::string piece = common_token_to_piece(ctx_server.ctx, token);
  4328. json piece_json;
  4329. // Check if the piece is valid UTF-8
  4330. if (is_valid_utf8(piece)) {
  4331. piece_json = piece;
  4332. } else {
  4333. // If not valid UTF-8, store as array of byte values
  4334. piece_json = json::array();
  4335. for (unsigned char c : piece) {
  4336. piece_json.push_back(static_cast<int>(c));
  4337. }
  4338. }
  4339. tokens_response.push_back({
  4340. {"id", token},
  4341. {"piece", piece_json}
  4342. });
  4343. }
  4344. } else {
  4345. tokens_response = tokens;
  4346. }
  4347. }
  4348. const json data = format_tokenizer_response(tokens_response);
  4349. res_ok(res, data);
  4350. };
  4351. const auto handle_detokenize = [&ctx_server, &res_ok](const httplib::Request & req, httplib::Response & res) {
  4352. const json body = json::parse(req.body);
  4353. std::string content;
  4354. if (body.count("tokens") != 0) {
  4355. const llama_tokens tokens = body.at("tokens");
  4356. content = tokens_to_str(ctx_server.ctx, tokens.cbegin(), tokens.cend());
  4357. }
  4358. const json data = format_detokenized_response(content);
  4359. res_ok(res, data);
  4360. };
  4361. const auto handle_embeddings_impl = [&ctx_server, &res_error, &res_ok](const httplib::Request & req, httplib::Response & res, oaicompat_type oaicompat) {
  4362. if (!ctx_server.params_base.embedding) {
  4363. res_error(res, format_error_response("This server does not support embeddings. Start it with `--embeddings`", ERROR_TYPE_NOT_SUPPORTED));
  4364. return;
  4365. }
  4366. if (oaicompat != OAICOMPAT_TYPE_NONE && llama_pooling_type(ctx_server.ctx) == LLAMA_POOLING_TYPE_NONE) {
  4367. res_error(res, format_error_response("Pooling type 'none' is not OAI compatible. Please use a different pooling type", ERROR_TYPE_INVALID_REQUEST));
  4368. return;
  4369. }
  4370. const json body = json::parse(req.body);
  4371. // for the shape of input/content, see tokenize_input_prompts()
  4372. json prompt;
  4373. if (body.count("input") != 0) {
  4374. prompt = body.at("input");
  4375. } else if (body.contains("content")) {
  4376. oaicompat = OAICOMPAT_TYPE_NONE; // "content" field is not OAI compatible
  4377. prompt = body.at("content");
  4378. } else {
  4379. res_error(res, format_error_response("\"input\" or \"content\" must be provided", ERROR_TYPE_INVALID_REQUEST));
  4380. return;
  4381. }
  4382. bool use_base64 = false;
  4383. if (body.count("encoding_format") != 0) {
  4384. const std::string& format = body.at("encoding_format");
  4385. if (format == "base64") {
  4386. use_base64 = true;
  4387. } else if (format != "float") {
  4388. res_error(res, format_error_response("The format to return the embeddings in. Can be either float or base64", ERROR_TYPE_INVALID_REQUEST));
  4389. return;
  4390. }
  4391. }
  4392. auto tokenized_prompts = tokenize_input_prompts(ctx_server.vocab, ctx_server.mctx, prompt, true, true);
  4393. for (const auto & tokens : tokenized_prompts) {
  4394. // this check is necessary for models that do not add BOS token to the input
  4395. if (tokens.empty()) {
  4396. res_error(res, format_error_response("Input content cannot be empty", ERROR_TYPE_INVALID_REQUEST));
  4397. return;
  4398. }
  4399. }
  4400. int embd_normalize = 2; // default to Euclidean/L2 norm
  4401. if (body.count("embd_normalize") != 0) {
  4402. embd_normalize = body.at("embd_normalize");
  4403. if (llama_pooling_type(ctx_server.ctx) == LLAMA_POOLING_TYPE_NONE) {
  4404. SRV_DBG("embd_normalize is not supported by pooling type %d, ignoring it\n", llama_pooling_type(ctx_server.ctx));
  4405. }
  4406. }
  4407. // create and queue the task
  4408. json responses = json::array();
  4409. bool error = false;
  4410. std::unordered_set<int> task_ids;
  4411. {
  4412. std::vector<server_task> tasks;
  4413. for (size_t i = 0; i < tokenized_prompts.size(); i++) {
  4414. server_task task = server_task(SERVER_TASK_TYPE_EMBEDDING);
  4415. task.id = ctx_server.queue_tasks.get_new_id();
  4416. task.index = i;
  4417. task.tokens = std::move(tokenized_prompts[i]);
  4418. // OAI-compat
  4419. task.params.oaicompat = oaicompat;
  4420. task.params.embd_normalize = embd_normalize;
  4421. tasks.push_back(std::move(task));
  4422. }
  4423. task_ids = server_task::get_list_id(tasks);
  4424. ctx_server.queue_results.add_waiting_tasks(tasks);
  4425. ctx_server.queue_tasks.post(std::move(tasks));
  4426. }
  4427. // get the result
  4428. ctx_server.receive_multi_results(task_ids, [&](std::vector<server_task_result_ptr> & results) {
  4429. for (auto & res : results) {
  4430. GGML_ASSERT(dynamic_cast<server_task_result_embd*>(res.get()) != nullptr);
  4431. responses.push_back(res->to_json());
  4432. }
  4433. }, [&](const json & error_data) {
  4434. res_error(res, error_data);
  4435. error = true;
  4436. }, req.is_connection_closed);
  4437. ctx_server.queue_results.remove_waiting_task_ids(task_ids);
  4438. if (error) {
  4439. return;
  4440. }
  4441. // write JSON response
  4442. json root = oaicompat == OAICOMPAT_TYPE_EMBEDDING
  4443. ? format_embeddings_response_oaicompat(body, responses, use_base64)
  4444. : json(responses);
  4445. res_ok(res, root);
  4446. };
  4447. const auto handle_embeddings = [&handle_embeddings_impl](const httplib::Request & req, httplib::Response & res) {
  4448. handle_embeddings_impl(req, res, OAICOMPAT_TYPE_NONE);
  4449. };
  4450. const auto handle_embeddings_oai = [&handle_embeddings_impl](const httplib::Request & req, httplib::Response & res) {
  4451. handle_embeddings_impl(req, res, OAICOMPAT_TYPE_EMBEDDING);
  4452. };
  4453. const auto handle_rerank = [&ctx_server, &res_error, &res_ok](const httplib::Request & req, httplib::Response & res) {
  4454. if (!ctx_server.params_base.embedding || ctx_server.params_base.pooling_type != LLAMA_POOLING_TYPE_RANK) {
  4455. res_error(res, format_error_response("This server does not support reranking. Start it with `--reranking`", ERROR_TYPE_NOT_SUPPORTED));
  4456. return;
  4457. }
  4458. const json body = json::parse(req.body);
  4459. // if true, use TEI API format, otherwise use Jina API format
  4460. // Jina: https://jina.ai/reranker/
  4461. // TEI: https://huggingface.github.io/text-embeddings-inference/#/Text%20Embeddings%20Inference/rerank
  4462. bool is_tei_format = body.contains("texts");
  4463. json query;
  4464. if (body.count("query") == 1) {
  4465. query = body.at("query");
  4466. if (!query.is_string()) {
  4467. res_error(res, format_error_response("\"query\" must be a string", ERROR_TYPE_INVALID_REQUEST));
  4468. return;
  4469. }
  4470. } else {
  4471. res_error(res, format_error_response("\"query\" must be provided", ERROR_TYPE_INVALID_REQUEST));
  4472. return;
  4473. }
  4474. std::vector<std::string> documents = json_value(body, "documents",
  4475. json_value(body, "texts", std::vector<std::string>()));
  4476. if (documents.empty()) {
  4477. res_error(res, format_error_response("\"documents\" must be a non-empty string array", ERROR_TYPE_INVALID_REQUEST));
  4478. return;
  4479. }
  4480. int top_n = json_value(body, "top_n", (int)documents.size());
  4481. // create and queue the task
  4482. json responses = json::array();
  4483. bool error = false;
  4484. std::unordered_set<int> task_ids;
  4485. {
  4486. std::vector<server_task> tasks;
  4487. tasks.reserve(documents.size());
  4488. for (size_t i = 0; i < documents.size(); i++) {
  4489. auto tmp = format_rerank(ctx_server.model, ctx_server.vocab, ctx_server.mctx, query, documents[i]);
  4490. server_task task = server_task(SERVER_TASK_TYPE_RERANK);
  4491. task.id = ctx_server.queue_tasks.get_new_id();
  4492. task.index = i;
  4493. task.tokens = std::move(tmp);
  4494. tasks.push_back(std::move(task));
  4495. }
  4496. task_ids = server_task::get_list_id(tasks);
  4497. ctx_server.queue_results.add_waiting_tasks(tasks);
  4498. ctx_server.queue_tasks.post(std::move(tasks));
  4499. }
  4500. ctx_server.receive_multi_results(task_ids, [&](std::vector<server_task_result_ptr> & results) {
  4501. for (auto & res : results) {
  4502. GGML_ASSERT(dynamic_cast<server_task_result_rerank*>(res.get()) != nullptr);
  4503. responses.push_back(res->to_json());
  4504. }
  4505. }, [&](const json & error_data) {
  4506. res_error(res, error_data);
  4507. error = true;
  4508. }, req.is_connection_closed);
  4509. if (error) {
  4510. return;
  4511. }
  4512. // write JSON response
  4513. json root = format_response_rerank(
  4514. body,
  4515. responses,
  4516. is_tei_format,
  4517. documents,
  4518. top_n);
  4519. res_ok(res, root);
  4520. };
  4521. const auto handle_lora_adapters_list = [&](const httplib::Request &, httplib::Response & res) {
  4522. json result = json::array();
  4523. const auto & loras = ctx_server.params_base.lora_adapters;
  4524. for (size_t i = 0; i < loras.size(); ++i) {
  4525. auto & lora = loras[i];
  4526. json entry = {
  4527. {"id", i},
  4528. {"path", lora.path},
  4529. {"scale", lora.scale},
  4530. {"task_name", lora.task_name},
  4531. {"prompt_prefix", lora.prompt_prefix},
  4532. };
  4533. std::string alora_invocation_string = "";
  4534. const uint64_t n_alora_tokens = llama_adapter_get_alora_n_invocation_tokens(lora.ptr);
  4535. std::vector<llama_token> alora_invocation_tokens;
  4536. if (n_alora_tokens) {
  4537. const llama_token * alora_tokens = llama_adapter_get_alora_invocation_tokens(lora.ptr);
  4538. for (uint64_t i = 0; i < n_alora_tokens; ++i) {
  4539. alora_invocation_string += common_token_to_piece(ctx_server.ctx, alora_tokens[i]);
  4540. alora_invocation_tokens.push_back(alora_tokens[i]);
  4541. }
  4542. entry["alora_invocation_string"] = alora_invocation_string;
  4543. entry["alora_invocation_tokens"] = alora_invocation_tokens;
  4544. }
  4545. result.push_back(std::move(entry));
  4546. }
  4547. res_ok(res, result);
  4548. res.status = 200; // HTTP OK
  4549. };
  4550. const auto handle_lora_adapters_apply = [&](const httplib::Request & req, httplib::Response & res) {
  4551. const json body = json::parse(req.body);
  4552. if (!body.is_array()) {
  4553. res_error(res, format_error_response("Request body must be an array", ERROR_TYPE_INVALID_REQUEST));
  4554. return;
  4555. }
  4556. int task_id = ctx_server.queue_tasks.get_new_id();
  4557. {
  4558. server_task task(SERVER_TASK_TYPE_SET_LORA);
  4559. task.id = task_id;
  4560. task.set_lora = parse_lora_request(ctx_server.params_base.lora_adapters, body);
  4561. ctx_server.queue_results.add_waiting_task_id(task_id);
  4562. ctx_server.queue_tasks.post(std::move(task));
  4563. }
  4564. // get the result
  4565. server_task_result_ptr result = ctx_server.queue_results.recv(task_id);
  4566. ctx_server.queue_results.remove_waiting_task_id(task_id);
  4567. if (result->is_error()) {
  4568. res_error(res, result->to_json());
  4569. return;
  4570. }
  4571. GGML_ASSERT(dynamic_cast<server_task_result_apply_lora*>(result.get()) != nullptr);
  4572. res_ok(res, result->to_json());
  4573. };
  4574. //
  4575. // Router
  4576. //
  4577. if (!params.webui) {
  4578. LOG_INF("Web UI is disabled\n");
  4579. } else {
  4580. // register static assets routes
  4581. if (!params.public_path.empty()) {
  4582. // Set the base directory for serving static files
  4583. bool is_found = svr->set_mount_point(params.api_prefix + "/", params.public_path);
  4584. if (!is_found) {
  4585. LOG_ERR("%s: static assets path not found: %s\n", __func__, params.public_path.c_str());
  4586. return 1;
  4587. }
  4588. } else {
  4589. // using embedded static index.html
  4590. svr->Get(params.api_prefix + "/", [](const httplib::Request & req, httplib::Response & res) {
  4591. if (req.get_header_value("Accept-Encoding").find("gzip") == std::string::npos) {
  4592. res.set_content("Error: gzip is not supported by this browser", "text/plain");
  4593. } else {
  4594. res.set_header("Content-Encoding", "gzip");
  4595. // COEP and COOP headers, required by pyodide (python interpreter)
  4596. res.set_header("Cross-Origin-Embedder-Policy", "require-corp");
  4597. res.set_header("Cross-Origin-Opener-Policy", "same-origin");
  4598. res.set_content(reinterpret_cast<const char*>(index_html_gz), index_html_gz_len, "text/html; charset=utf-8");
  4599. }
  4600. return false;
  4601. });
  4602. }
  4603. }
  4604. // register API routes
  4605. svr->Get (params.api_prefix + "/health", handle_health); // public endpoint (no API key check)
  4606. svr->Get (params.api_prefix + "/v1/health", handle_health); // public endpoint (no API key check)
  4607. svr->Get (params.api_prefix + "/metrics", handle_metrics);
  4608. svr->Get (params.api_prefix + "/props", handle_props);
  4609. svr->Post(params.api_prefix + "/props", handle_props_change);
  4610. svr->Post(params.api_prefix + "/api/show", handle_api_show);
  4611. svr->Get (params.api_prefix + "/models", handle_models); // public endpoint (no API key check)
  4612. svr->Get (params.api_prefix + "/v1/models", handle_models); // public endpoint (no API key check)
  4613. svr->Get (params.api_prefix + "/api/tags", handle_models); // ollama specific endpoint. public endpoint (no API key check)
  4614. svr->Post(params.api_prefix + "/completion", handle_completions); // legacy
  4615. svr->Post(params.api_prefix + "/completions", handle_completions);
  4616. svr->Post(params.api_prefix + "/v1/completions", handle_completions_oai);
  4617. svr->Post(params.api_prefix + "/chat/completions", handle_chat_completions);
  4618. svr->Post(params.api_prefix + "/v1/chat/completions", handle_chat_completions);
  4619. svr->Post(params.api_prefix + "/api/chat", handle_chat_completions); // ollama specific endpoint
  4620. svr->Post(params.api_prefix + "/infill", handle_infill);
  4621. svr->Post(params.api_prefix + "/embedding", handle_embeddings); // legacy
  4622. svr->Post(params.api_prefix + "/embeddings", handle_embeddings);
  4623. svr->Post(params.api_prefix + "/v1/embeddings", handle_embeddings_oai);
  4624. svr->Post(params.api_prefix + "/rerank", handle_rerank);
  4625. svr->Post(params.api_prefix + "/reranking", handle_rerank);
  4626. svr->Post(params.api_prefix + "/v1/rerank", handle_rerank);
  4627. svr->Post(params.api_prefix + "/v1/reranking", handle_rerank);
  4628. svr->Post(params.api_prefix + "/tokenize", handle_tokenize);
  4629. svr->Post(params.api_prefix + "/detokenize", handle_detokenize);
  4630. svr->Post(params.api_prefix + "/apply-template", handle_apply_template);
  4631. // LoRA adapters hotswap
  4632. svr->Get (params.api_prefix + "/lora-adapters", handle_lora_adapters_list);
  4633. svr->Post(params.api_prefix + "/lora-adapters", handle_lora_adapters_apply);
  4634. // Save & load slots
  4635. svr->Get (params.api_prefix + "/slots", handle_slots);
  4636. svr->Post(params.api_prefix + "/slots/:id_slot", handle_slots_action);
  4637. //
  4638. // Start the server
  4639. //
  4640. if (params.n_threads_http < 1) {
  4641. // +2 threads for monitoring endpoints
  4642. params.n_threads_http = std::max(params.n_parallel + 2, (int32_t) std::thread::hardware_concurrency() - 1);
  4643. }
  4644. log_data["n_threads_http"] = std::to_string(params.n_threads_http);
  4645. svr->new_task_queue = [&params] { return new httplib::ThreadPool(params.n_threads_http); };
  4646. // clean up function, to be called before exit
  4647. auto clean_up = [&svr, &ctx_server]() {
  4648. SRV_INF("%s: cleaning up before exit...\n", __func__);
  4649. svr->stop();
  4650. ctx_server.queue_results.terminate();
  4651. llama_backend_free();
  4652. };
  4653. bool was_bound = false;
  4654. bool is_sock = false;
  4655. if (string_ends_with(std::string(params.hostname), ".sock")) {
  4656. is_sock = true;
  4657. LOG_INF("%s: setting address family to AF_UNIX\n", __func__);
  4658. svr->set_address_family(AF_UNIX);
  4659. // bind_to_port requires a second arg, any value other than 0 should
  4660. // simply get ignored
  4661. was_bound = svr->bind_to_port(params.hostname, 8080);
  4662. } else {
  4663. LOG_INF("%s: binding port with default address family\n", __func__);
  4664. // bind HTTP listen port
  4665. if (params.port == 0) {
  4666. int bound_port = svr->bind_to_any_port(params.hostname);
  4667. if ((was_bound = (bound_port >= 0))) {
  4668. params.port = bound_port;
  4669. }
  4670. } else {
  4671. was_bound = svr->bind_to_port(params.hostname, params.port);
  4672. }
  4673. }
  4674. if (!was_bound) {
  4675. LOG_ERR("%s: couldn't bind HTTP server socket, hostname: %s, port: %d\n", __func__, params.hostname.c_str(), params.port);
  4676. clean_up();
  4677. return 1;
  4678. }
  4679. // run the HTTP server in a thread
  4680. std::thread t([&]() { svr->listen_after_bind(); });
  4681. svr->wait_until_ready();
  4682. 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);
  4683. // load the model
  4684. LOG_INF("%s: loading model\n", __func__);
  4685. if (!ctx_server.load_model(params)) {
  4686. clean_up();
  4687. t.join();
  4688. LOG_ERR("%s: exiting due to model loading error\n", __func__);
  4689. return 1;
  4690. }
  4691. ctx_server.init();
  4692. state.store(SERVER_STATE_READY);
  4693. LOG_INF("%s: model loaded\n", __func__);
  4694. // print sample chat example to make it clear which template is used
  4695. LOG_INF("%s: chat template, chat_template: %s, example_format: '%s'\n", __func__,
  4696. common_chat_templates_source(ctx_server.chat_templates.get()),
  4697. common_chat_format_example(ctx_server.chat_templates.get(), ctx_server.params_base.use_jinja, ctx_server.params_base.default_template_kwargs).c_str());
  4698. ctx_server.queue_tasks.on_new_task([&ctx_server](server_task && task) {
  4699. ctx_server.process_single_task(std::move(task));
  4700. });
  4701. ctx_server.queue_tasks.on_update_slots([&ctx_server]() {
  4702. ctx_server.update_slots();
  4703. });
  4704. shutdown_handler = [&](int) {
  4705. // this will unblock start_loop()
  4706. ctx_server.queue_tasks.terminate();
  4707. };
  4708. #if defined (__unix__) || (defined (__APPLE__) && defined (__MACH__))
  4709. struct sigaction sigint_action;
  4710. sigint_action.sa_handler = signal_handler;
  4711. sigemptyset (&sigint_action.sa_mask);
  4712. sigint_action.sa_flags = 0;
  4713. sigaction(SIGINT, &sigint_action, NULL);
  4714. sigaction(SIGTERM, &sigint_action, NULL);
  4715. #elif defined (_WIN32)
  4716. auto console_ctrl_handler = +[](DWORD ctrl_type) -> BOOL {
  4717. return (ctrl_type == CTRL_C_EVENT) ? (signal_handler(SIGINT), true) : false;
  4718. };
  4719. SetConsoleCtrlHandler(reinterpret_cast<PHANDLER_ROUTINE>(console_ctrl_handler), true);
  4720. #endif
  4721. LOG_INF("%s: server is listening on %s - starting the main loop\n", __func__,
  4722. is_sock ? string_format("unix://%s", params.hostname.c_str()).c_str() :
  4723. string_format("http://%s:%d", params.hostname.c_str(), params.port).c_str());
  4724. // this call blocks the main thread until queue_tasks.terminate() is called
  4725. ctx_server.queue_tasks.start_loop();
  4726. clean_up();
  4727. t.join();
  4728. llama_memory_breakdown_print(ctx_server.ctx);
  4729. return 0;
  4730. }