arg.cpp 153 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489
  1. #include "arg.h"
  2. #include "chat.h"
  3. #include "common.h"
  4. #include "json-schema-to-grammar.h"
  5. #include "log.h"
  6. #include "sampling.h"
  7. #include "download.h"
  8. // fix problem with std::min and std::max
  9. #if defined(_WIN32)
  10. #define WIN32_LEAN_AND_MEAN
  11. #ifndef NOMINMAX
  12. # define NOMINMAX
  13. #endif
  14. #include <windows.h>
  15. #endif
  16. #define JSON_ASSERT GGML_ASSERT
  17. #include <nlohmann/json.hpp>
  18. #include <algorithm>
  19. #include <cinttypes>
  20. #include <climits>
  21. #include <cstdarg>
  22. #include <fstream>
  23. #include <list>
  24. #include <regex>
  25. #include <set>
  26. #include <string>
  27. #include <thread> // for hardware_concurrency
  28. #include <vector>
  29. #ifndef __EMSCRIPTEN__
  30. #ifdef __linux__
  31. #include <linux/limits.h>
  32. #elif defined(_WIN32)
  33. # if !defined(PATH_MAX)
  34. # define PATH_MAX MAX_PATH
  35. # endif
  36. #elif defined(_AIX)
  37. #include <sys/limits.h>
  38. #else
  39. #include <sys/syslimits.h>
  40. #endif
  41. #endif
  42. #define LLAMA_MAX_URL_LENGTH 2084 // Maximum URL Length in Chrome: 2083
  43. using json = nlohmann::ordered_json;
  44. using namespace common_arg_utils;
  45. static std::initializer_list<enum llama_example> mmproj_examples = {
  46. LLAMA_EXAMPLE_MTMD,
  47. LLAMA_EXAMPLE_SERVER,
  48. LLAMA_EXAMPLE_CLI,
  49. };
  50. static std::string read_file(const std::string & fname) {
  51. std::ifstream file(fname);
  52. if (!file) {
  53. throw std::runtime_error(string_format("error: failed to open file '%s'\n", fname.c_str()));
  54. }
  55. std::string content((std::istreambuf_iterator<char>(file)), std::istreambuf_iterator<char>());
  56. file.close();
  57. return content;
  58. }
  59. static const std::vector<common_arg> & get_common_arg_defs() {
  60. static const std::vector<common_arg> options = [] {
  61. common_params params;
  62. auto ctx = common_params_parser_init(params, LLAMA_EXAMPLE_SERVER, nullptr);
  63. return ctx.options;
  64. }();
  65. return options;
  66. }
  67. common_arg & common_arg::set_examples(std::initializer_list<enum llama_example> examples) {
  68. this->examples = examples;
  69. return *this;
  70. }
  71. common_arg & common_arg::set_excludes(std::initializer_list<enum llama_example> excludes) {
  72. this->excludes = excludes;
  73. return *this;
  74. }
  75. common_arg & common_arg::set_env(const char * env) {
  76. help = help + "\n(env: " + env + ")";
  77. this->env = env;
  78. return *this;
  79. }
  80. common_arg & common_arg::set_sparam() {
  81. is_sparam = true;
  82. return *this;
  83. }
  84. bool common_arg::in_example(enum llama_example ex) {
  85. return examples.find(ex) != examples.end();
  86. }
  87. bool common_arg::is_exclude(enum llama_example ex) {
  88. return excludes.find(ex) != excludes.end();
  89. }
  90. bool common_arg::get_value_from_env(std::string & output) const {
  91. if (env == nullptr) return false;
  92. if (!args_neg.empty()) {
  93. // for compatibility, we need to check LLAMA_ARG_NO_ env as well
  94. std::string neg_env = env;
  95. string_replace_all(neg_env, "LLAMA_ARG_", "LLAMA_ARG_NO_");
  96. char * neg_value = std::getenv(neg_env.c_str());
  97. if (neg_value) {
  98. output = "0"; // falsey
  99. return true;
  100. }
  101. }
  102. char * value = std::getenv(env);
  103. if (value) {
  104. output = value;
  105. return true;
  106. }
  107. return false;
  108. }
  109. bool common_arg::has_value_from_env() const {
  110. if (env != nullptr && !args_neg.empty()) {
  111. // for compatibility, we need to check LLAMA_ARG_NO_ env as well
  112. std::string neg_env = env;
  113. string_replace_all(neg_env, "LLAMA_ARG_", "LLAMA_ARG_NO_");
  114. if (std::getenv(neg_env.c_str())) {
  115. return true;
  116. }
  117. }
  118. return env != nullptr && std::getenv(env);
  119. }
  120. static std::vector<std::string> break_str_into_lines(std::string input, size_t max_char_per_line) {
  121. std::vector<std::string> result;
  122. std::istringstream iss(input);
  123. std::string line;
  124. auto add_line = [&](const std::string& l) {
  125. if (l.length() <= max_char_per_line) {
  126. result.push_back(l);
  127. } else {
  128. std::istringstream line_stream(l);
  129. std::string word, current_line;
  130. while (line_stream >> word) {
  131. if (current_line.length() + !current_line.empty() + word.length() > max_char_per_line) {
  132. if (!current_line.empty()) result.push_back(current_line);
  133. current_line = word;
  134. } else {
  135. current_line += (!current_line.empty() ? " " : "") + word;
  136. }
  137. }
  138. if (!current_line.empty()) result.push_back(current_line);
  139. }
  140. };
  141. while (std::getline(iss, line)) {
  142. add_line(line);
  143. }
  144. return result;
  145. }
  146. std::string common_arg::to_string() const {
  147. // params for printing to console
  148. const static int n_leading_spaces = 40;
  149. const static int n_char_per_line_help = 70; // TODO: detect this based on current console
  150. std::string leading_spaces(n_leading_spaces, ' ');
  151. std::ostringstream ss;
  152. auto all_args = get_args(); // also contains args_neg
  153. for (const auto & arg : all_args) {
  154. if (arg == all_args.front()) {
  155. if (all_args.size() == 1) {
  156. ss << arg;
  157. } else {
  158. // first arg is usually abbreviation, we need padding to make it more beautiful
  159. auto tmp = std::string(arg) + ", ";
  160. auto spaces = std::string(std::max(0, 7 - (int)tmp.size()), ' ');
  161. ss << tmp << spaces;
  162. }
  163. } else {
  164. ss << arg << (arg != all_args.back() ? ", " : "");
  165. }
  166. }
  167. if (value_hint) ss << " " << value_hint;
  168. if (value_hint_2) ss << " " << value_hint_2;
  169. if (ss.tellp() > n_leading_spaces - 3) {
  170. // current line is too long, add new line
  171. ss << "\n" << leading_spaces;
  172. } else {
  173. // padding between arg and help, same line
  174. ss << std::string(leading_spaces.size() - ss.tellp(), ' ');
  175. }
  176. const auto help_lines = break_str_into_lines(help, n_char_per_line_help);
  177. for (const auto & line : help_lines) {
  178. ss << (&line == &help_lines.front() ? "" : leading_spaces) << line << "\n";
  179. }
  180. return ss.str();
  181. }
  182. std::vector<std::string> common_arg::get_args() const {
  183. std::vector<std::string> result;
  184. for (const auto & arg : args) {
  185. result.push_back(std::string(arg));
  186. }
  187. for (const auto & arg : args_neg) {
  188. result.push_back(std::string(arg));
  189. }
  190. return result;
  191. }
  192. std::vector<std::string> common_arg::get_env() const {
  193. std::vector<std::string> result;
  194. if (env) {
  195. result.push_back(std::string(env));
  196. }
  197. if (!args_neg.empty() && env) {
  198. // for compatibility, we need to add LLAMA_ARG_NO_ variant
  199. std::string neg_env = env;
  200. string_replace_all(neg_env, "LLAMA_ARG_", "LLAMA_ARG_NO_");
  201. result.push_back(neg_env);
  202. }
  203. return result;
  204. }
  205. //
  206. // utils
  207. //
  208. // Helper function to parse tensor buffer override strings
  209. static void parse_tensor_buffer_overrides(const std::string & value, std::vector<llama_model_tensor_buft_override> & overrides) {
  210. std::map<std::string, ggml_backend_buffer_type_t> buft_list;
  211. for (size_t i = 0; i < ggml_backend_dev_count(); ++i) {
  212. auto * dev = ggml_backend_dev_get(i);
  213. auto * buft = ggml_backend_dev_buffer_type(dev);
  214. if (buft) {
  215. buft_list[ggml_backend_buft_name(buft)] = buft;
  216. }
  217. }
  218. for (const auto & override : string_split<std::string>(value, ',')) {
  219. std::string::size_type pos = override.find('=');
  220. if (pos == std::string::npos) {
  221. throw std::invalid_argument("invalid value");
  222. }
  223. std::string tensor_name = override.substr(0, pos);
  224. std::string buffer_type = override.substr(pos + 1);
  225. if (buft_list.find(buffer_type) == buft_list.end()) {
  226. printf("Available buffer types:\n");
  227. for (const auto & it : buft_list) {
  228. printf(" %s\n", ggml_backend_buft_name(it.second));
  229. }
  230. throw std::invalid_argument("unknown buffer type");
  231. }
  232. // keep strings alive and avoid leaking memory by storing them in a static vector
  233. static std::list<std::string> buft_overrides;
  234. buft_overrides.push_back(tensor_name);
  235. overrides.push_back({buft_overrides.back().c_str(), buft_list.at(buffer_type)});
  236. }
  237. }
  238. struct handle_model_result {
  239. bool found_mmproj = false;
  240. common_params_model mmproj;
  241. };
  242. static handle_model_result common_params_handle_model(
  243. struct common_params_model & model,
  244. const std::string & bearer_token,
  245. bool offline) {
  246. handle_model_result result;
  247. // handle pre-fill default model path and url based on hf_repo and hf_file
  248. {
  249. if (!model.docker_repo.empty()) { // Handle Docker URLs by resolving them to local paths
  250. model.path = common_docker_resolve_model(model.docker_repo);
  251. model.name = model.docker_repo; // set name for consistency
  252. } else if (!model.hf_repo.empty()) {
  253. // short-hand to avoid specifying --hf-file -> default it to --model
  254. if (model.hf_file.empty()) {
  255. if (model.path.empty()) {
  256. auto auto_detected = common_get_hf_file(model.hf_repo, bearer_token, offline);
  257. if (auto_detected.repo.empty() || auto_detected.ggufFile.empty()) {
  258. exit(1); // built without CURL, error message already printed
  259. }
  260. model.name = model.hf_repo; // repo name with tag
  261. model.hf_repo = auto_detected.repo; // repo name without tag
  262. model.hf_file = auto_detected.ggufFile;
  263. if (!auto_detected.mmprojFile.empty()) {
  264. result.found_mmproj = true;
  265. result.mmproj.hf_repo = model.hf_repo;
  266. result.mmproj.hf_file = auto_detected.mmprojFile;
  267. }
  268. } else {
  269. model.hf_file = model.path;
  270. }
  271. }
  272. std::string model_endpoint = get_model_endpoint();
  273. model.url = model_endpoint + model.hf_repo + "/resolve/main/" + model.hf_file;
  274. // make sure model path is present (for caching purposes)
  275. if (model.path.empty()) {
  276. // this is to avoid different repo having same file name, or same file name in different subdirs
  277. std::string filename = model.hf_repo + "_" + model.hf_file;
  278. // to make sure we don't have any slashes in the filename
  279. string_replace_all(filename, "/", "_");
  280. model.path = fs_get_cache_file(filename);
  281. }
  282. } else if (!model.url.empty()) {
  283. if (model.path.empty()) {
  284. auto f = string_split<std::string>(model.url, '#').front();
  285. f = string_split<std::string>(f, '?').front();
  286. model.path = fs_get_cache_file(string_split<std::string>(f, '/').back());
  287. }
  288. }
  289. }
  290. // then, download it if needed
  291. if (!model.url.empty()) {
  292. bool ok = common_download_model(model, bearer_token, offline);
  293. if (!ok) {
  294. LOG_ERR("error: failed to download model from %s\n", model.url.c_str());
  295. exit(1);
  296. }
  297. }
  298. return result;
  299. }
  300. const std::vector<ggml_type> kv_cache_types = {
  301. GGML_TYPE_F32,
  302. GGML_TYPE_F16,
  303. GGML_TYPE_BF16,
  304. GGML_TYPE_Q8_0,
  305. GGML_TYPE_Q4_0,
  306. GGML_TYPE_Q4_1,
  307. GGML_TYPE_IQ4_NL,
  308. GGML_TYPE_Q5_0,
  309. GGML_TYPE_Q5_1,
  310. };
  311. static ggml_type kv_cache_type_from_str(const std::string & s) {
  312. for (const auto & type : kv_cache_types) {
  313. if (ggml_type_name(type) == s) {
  314. return type;
  315. }
  316. }
  317. throw std::runtime_error("Unsupported cache type: " + s);
  318. }
  319. static std::string get_all_kv_cache_types() {
  320. std::ostringstream msg;
  321. for (const auto & type : kv_cache_types) {
  322. msg << ggml_type_name(type) << (&type == &kv_cache_types.back() ? "" : ", ");
  323. }
  324. return msg.str();
  325. }
  326. static bool parse_bool_value(const std::string & value) {
  327. if (is_truthy(value)) {
  328. return true;
  329. } else if (is_falsey(value)) {
  330. return false;
  331. } else {
  332. throw std::invalid_argument("invalid boolean value");
  333. }
  334. }
  335. //
  336. // CLI argument parsing functions
  337. //
  338. static bool common_params_parse_ex(int argc, char ** argv, common_params_context & ctx_arg) {
  339. common_params & params = ctx_arg.params;
  340. std::unordered_map<std::string, std::pair<common_arg *, bool>> arg_to_options;
  341. for (auto & opt : ctx_arg.options) {
  342. for (const auto & arg : opt.args) {
  343. arg_to_options[arg] = {&opt, /* is_positive */ true};
  344. }
  345. for (const auto & arg : opt.args_neg) {
  346. arg_to_options[arg] = {&opt, /* is_positive */ false};
  347. }
  348. }
  349. // handle environment variables
  350. for (auto & opt : ctx_arg.options) {
  351. std::string value;
  352. if (opt.get_value_from_env(value)) {
  353. try {
  354. if (opt.handler_void && is_truthy(value)) {
  355. opt.handler_void(params);
  356. }
  357. if (opt.handler_int) {
  358. opt.handler_int(params, std::stoi(value));
  359. }
  360. if (opt.handler_bool) {
  361. opt.handler_bool(params, parse_bool_value(value));
  362. }
  363. if (opt.handler_string) {
  364. opt.handler_string(params, value);
  365. continue;
  366. }
  367. } catch (std::exception & e) {
  368. throw std::invalid_argument(string_format(
  369. "error while handling environment variable \"%s\": %s\n\n", opt.env, e.what()));
  370. }
  371. }
  372. }
  373. // handle command line arguments
  374. auto check_arg = [&](int i) {
  375. if (i+1 >= argc) {
  376. throw std::invalid_argument("expected value for argument");
  377. }
  378. };
  379. std::set<std::string> seen_args;
  380. for (int i = 1; i < argc; i++) {
  381. const std::string arg_prefix = "--";
  382. std::string arg = argv[i];
  383. if (arg.compare(0, arg_prefix.size(), arg_prefix) == 0) {
  384. std::replace(arg.begin(), arg.end(), '_', '-');
  385. }
  386. if (arg_to_options.find(arg) == arg_to_options.end()) {
  387. throw std::invalid_argument(string_format("error: invalid argument: %s", arg.c_str()));
  388. }
  389. if (!seen_args.insert(arg).second) {
  390. LOG_WRN("DEPRECATED: argument '%s' specified multiple times, use comma-separated values instead (only last value will be used)\n", arg.c_str());
  391. }
  392. auto & tmp = arg_to_options[arg];
  393. auto opt = *tmp.first;
  394. bool is_positive = tmp.second;
  395. if (opt.has_value_from_env()) {
  396. fprintf(stderr, "warn: %s environment variable is set, but will be overwritten by command line argument %s\n", opt.env, arg.c_str());
  397. }
  398. try {
  399. if (opt.handler_void) {
  400. opt.handler_void(params);
  401. continue;
  402. }
  403. if (opt.handler_bool) {
  404. opt.handler_bool(params, is_positive);
  405. continue;
  406. }
  407. // arg with single value
  408. check_arg(i);
  409. std::string val = argv[++i];
  410. if (opt.handler_int) {
  411. opt.handler_int(params, std::stoi(val));
  412. continue;
  413. }
  414. if (opt.handler_string) {
  415. opt.handler_string(params, val);
  416. continue;
  417. }
  418. // arg with 2 values
  419. check_arg(i);
  420. std::string val2 = argv[++i];
  421. if (opt.handler_str_str) {
  422. opt.handler_str_str(params, val, val2);
  423. continue;
  424. }
  425. } catch (std::exception & e) {
  426. throw std::invalid_argument(string_format(
  427. "error while handling argument \"%s\": %s\n\n"
  428. "usage:\n%s\n\nto show complete usage, run with -h",
  429. arg.c_str(), e.what(), opt.to_string().c_str()));
  430. }
  431. }
  432. postprocess_cpu_params(params.cpuparams, nullptr);
  433. postprocess_cpu_params(params.cpuparams_batch, &params.cpuparams);
  434. postprocess_cpu_params(params.speculative.cpuparams, &params.cpuparams);
  435. postprocess_cpu_params(params.speculative.cpuparams_batch, &params.cpuparams_batch);
  436. if (params.prompt_cache_all && (params.interactive || params.interactive_first)) {
  437. throw std::invalid_argument("error: --prompt-cache-all not supported in interactive mode yet\n");
  438. }
  439. // handle model and download
  440. {
  441. auto res = common_params_handle_model(params.model, params.hf_token, params.offline);
  442. if (params.no_mmproj) {
  443. params.mmproj = {};
  444. } else if (res.found_mmproj && params.mmproj.path.empty() && params.mmproj.url.empty()) {
  445. // optionally, handle mmproj model when -hf is specified
  446. params.mmproj = res.mmproj;
  447. }
  448. // only download mmproj if the current example is using it
  449. for (auto & ex : mmproj_examples) {
  450. if (ctx_arg.ex == ex) {
  451. common_params_handle_model(params.mmproj, params.hf_token, params.offline);
  452. break;
  453. }
  454. }
  455. common_params_handle_model(params.speculative.model, params.hf_token, params.offline);
  456. common_params_handle_model(params.vocoder.model, params.hf_token, params.offline);
  457. }
  458. // model is required (except for server)
  459. // TODO @ngxson : maybe show a list of available models in CLI in this case
  460. if (params.model.path.empty() && ctx_arg.ex != LLAMA_EXAMPLE_SERVER && !params.usage && !params.completion) {
  461. throw std::invalid_argument("error: --model is required\n");
  462. }
  463. if (params.escape) {
  464. string_process_escapes(params.prompt);
  465. string_process_escapes(params.input_prefix);
  466. string_process_escapes(params.input_suffix);
  467. for (auto & antiprompt : params.antiprompt) {
  468. string_process_escapes(antiprompt);
  469. }
  470. for (auto & seq_breaker : params.sampling.dry_sequence_breakers) {
  471. string_process_escapes(seq_breaker);
  472. }
  473. for (auto & pair : params.speculative.replacements) {
  474. string_process_escapes(pair.first);
  475. string_process_escapes(pair.second);
  476. }
  477. }
  478. if (!params.kv_overrides.empty()) {
  479. params.kv_overrides.emplace_back();
  480. params.kv_overrides.back().key[0] = 0;
  481. }
  482. // pad tensor_buft_overrides for llama_params_fit:
  483. const size_t ntbo = llama_max_tensor_buft_overrides();
  484. while (params.tensor_buft_overrides.size() < ntbo) {
  485. params.tensor_buft_overrides.push_back({nullptr, nullptr});
  486. }
  487. if (!params.speculative.tensor_buft_overrides.empty()) {
  488. params.speculative.tensor_buft_overrides.push_back({nullptr, nullptr});
  489. }
  490. if (!params.chat_template.empty() && !common_chat_verify_template(params.chat_template, params.use_jinja)) {
  491. throw std::runtime_error(string_format(
  492. "error: the supplied chat template is not supported: %s%s\n",
  493. params.chat_template.c_str(),
  494. params.use_jinja ? "" : "\nnote: llama.cpp was started without --jinja, we only support commonly used templates"
  495. ));
  496. }
  497. common_log_set_verbosity_thold(params.verbosity);
  498. return true;
  499. }
  500. static void common_params_print_usage(common_params_context & ctx_arg) {
  501. auto print_options = [](std::vector<common_arg *> & options) {
  502. for (common_arg * opt : options) {
  503. printf("%s", opt->to_string().c_str());
  504. }
  505. };
  506. std::vector<common_arg *> common_options;
  507. std::vector<common_arg *> sparam_options;
  508. std::vector<common_arg *> specific_options;
  509. for (auto & opt : ctx_arg.options) {
  510. // in case multiple LLAMA_EXAMPLE_* are set, we prioritize the LLAMA_EXAMPLE_* matching current example
  511. if (opt.is_sparam) {
  512. sparam_options.push_back(&opt);
  513. } else if (opt.in_example(ctx_arg.ex)) {
  514. specific_options.push_back(&opt);
  515. } else {
  516. common_options.push_back(&opt);
  517. }
  518. }
  519. printf("----- common params -----\n\n");
  520. print_options(common_options);
  521. printf("\n\n----- sampling params -----\n\n");
  522. print_options(sparam_options);
  523. // TODO: maybe convert enum llama_example to string
  524. printf("\n\n----- example-specific params -----\n\n");
  525. print_options(specific_options);
  526. }
  527. static void common_params_print_completion(common_params_context & ctx_arg) {
  528. std::vector<common_arg *> common_options;
  529. std::vector<common_arg *> sparam_options;
  530. std::vector<common_arg *> specific_options;
  531. for (auto & opt : ctx_arg.options) {
  532. if (opt.is_sparam) {
  533. sparam_options.push_back(&opt);
  534. } else if (opt.in_example(ctx_arg.ex)) {
  535. specific_options.push_back(&opt);
  536. } else {
  537. common_options.push_back(&opt);
  538. }
  539. }
  540. printf("_llama_completions() {\n");
  541. printf(" local cur prev opts\n");
  542. printf(" COMPREPLY=()\n");
  543. printf(" cur=\"${COMP_WORDS[COMP_CWORD]}\"\n");
  544. printf(" prev=\"${COMP_WORDS[COMP_CWORD-1]}\"\n\n");
  545. printf(" opts=\"");
  546. auto print_options = [](const std::vector<common_arg *> & options) {
  547. for (const common_arg * opt : options) {
  548. for (const char * arg : opt->args) {
  549. printf("%s ", arg);
  550. }
  551. }
  552. };
  553. print_options(common_options);
  554. print_options(sparam_options);
  555. print_options(specific_options);
  556. printf("\"\n\n");
  557. printf(" case \"$prev\" in\n");
  558. printf(" --model|-m)\n");
  559. printf(" COMPREPLY=( $(compgen -f -X '!*.gguf' -- \"$cur\") $(compgen -d -- \"$cur\") )\n");
  560. printf(" return 0\n");
  561. printf(" ;;\n");
  562. printf(" --grammar-file)\n");
  563. printf(" COMPREPLY=( $(compgen -f -X '!*.gbnf' -- \"$cur\") $(compgen -d -- \"$cur\") )\n");
  564. printf(" return 0\n");
  565. printf(" ;;\n");
  566. printf(" --chat-template-file)\n");
  567. printf(" COMPREPLY=( $(compgen -f -X '!*.jinja' -- \"$cur\") $(compgen -d -- \"$cur\") )\n");
  568. printf(" return 0\n");
  569. printf(" ;;\n");
  570. printf(" *)\n");
  571. printf(" COMPREPLY=( $(compgen -W \"${opts}\" -- \"$cur\") )\n");
  572. printf(" return 0\n");
  573. printf(" ;;\n");
  574. printf(" esac\n");
  575. printf("}\n\n");
  576. std::set<std::string> executables = {
  577. "llama-batched",
  578. "llama-batched-bench",
  579. "llama-bench",
  580. "llama-cli",
  581. "llama-completion",
  582. "llama-convert-llama2c-to-ggml",
  583. "llama-cvector-generator",
  584. "llama-embedding",
  585. "llama-eval-callback",
  586. "llama-export-lora",
  587. "llama-gen-docs",
  588. "llama-gguf",
  589. "llama-gguf-hash",
  590. "llama-gguf-split",
  591. "llama-gritlm",
  592. "llama-imatrix",
  593. "llama-infill",
  594. "llama-mtmd-cli",
  595. "llama-llava-clip-quantize-cli",
  596. "llama-lookahead",
  597. "llama-lookup",
  598. "llama-lookup-create",
  599. "llama-lookup-merge",
  600. "llama-lookup-stats",
  601. "llama-parallel",
  602. "llama-passkey",
  603. "llama-perplexity",
  604. "llama-q8dot",
  605. "llama-quantize",
  606. "llama-qwen2vl-cli",
  607. "llama-retrieval",
  608. "llama-run",
  609. "llama-save-load-state",
  610. "llama-server",
  611. "llama-simple",
  612. "llama-simple-chat",
  613. "llama-speculative",
  614. "llama-speculative-simple",
  615. "llama-tokenize",
  616. "llama-tts",
  617. "llama-vdot"
  618. };
  619. for (const auto& exe : executables) {
  620. printf("complete -F _llama_completions %s\n", exe.c_str());
  621. }
  622. }
  623. static std::vector<ggml_backend_dev_t> parse_device_list(const std::string & value) {
  624. std::vector<ggml_backend_dev_t> devices;
  625. auto dev_names = string_split<std::string>(value, ',');
  626. if (dev_names.empty()) {
  627. throw std::invalid_argument("no devices specified");
  628. }
  629. if (dev_names.size() == 1 && dev_names[0] == "none") {
  630. devices.push_back(nullptr);
  631. } else {
  632. for (const auto & device : dev_names) {
  633. auto * dev = ggml_backend_dev_by_name(device.c_str());
  634. if (!dev || ggml_backend_dev_type(dev) == GGML_BACKEND_DEVICE_TYPE_CPU) {
  635. throw std::invalid_argument(string_format("invalid device: %s", device.c_str()));
  636. }
  637. devices.push_back(dev);
  638. }
  639. devices.push_back(nullptr);
  640. }
  641. return devices;
  642. }
  643. static void add_rpc_devices(const std::string & servers) {
  644. auto rpc_servers = string_split<std::string>(servers, ',');
  645. if (rpc_servers.empty()) {
  646. throw std::invalid_argument("no RPC servers specified");
  647. }
  648. ggml_backend_reg_t rpc_reg = ggml_backend_reg_by_name("RPC");
  649. if (!rpc_reg) {
  650. throw std::invalid_argument("failed to find RPC backend");
  651. }
  652. typedef ggml_backend_reg_t (*ggml_backend_rpc_add_server_t)(const char * endpoint);
  653. ggml_backend_rpc_add_server_t ggml_backend_rpc_add_server_fn = (ggml_backend_rpc_add_server_t) ggml_backend_reg_get_proc_address(rpc_reg, "ggml_backend_rpc_add_server");
  654. if (!ggml_backend_rpc_add_server_fn) {
  655. throw std::invalid_argument("failed to find RPC add server function");
  656. }
  657. for (const auto & server : rpc_servers) {
  658. auto reg = ggml_backend_rpc_add_server_fn(server.c_str());
  659. ggml_backend_register(reg);
  660. }
  661. }
  662. bool common_params_to_map(int argc, char ** argv, llama_example ex, std::map<common_arg, std::string> & out_map) {
  663. common_params dummy_params;
  664. common_params_context ctx_arg = common_params_parser_init(dummy_params, ex, nullptr);
  665. std::unordered_map<std::string, common_arg *> arg_to_options;
  666. for (auto & opt : ctx_arg.options) {
  667. for (const auto & arg : opt.args) {
  668. arg_to_options[arg] = &opt;
  669. }
  670. for (const auto & arg : opt.args_neg) {
  671. arg_to_options[arg] = &opt;
  672. }
  673. }
  674. // TODO @ngxson : find a way to deduplicate this code
  675. // handle command line arguments
  676. auto check_arg = [&](int i) {
  677. if (i+1 >= argc) {
  678. throw std::invalid_argument("expected value for argument");
  679. }
  680. };
  681. std::set<std::string> seen_args;
  682. for (int i = 1; i < argc; i++) {
  683. const std::string arg_prefix = "--";
  684. std::string arg = argv[i];
  685. if (arg.compare(0, arg_prefix.size(), arg_prefix) == 0) {
  686. std::replace(arg.begin(), arg.end(), '_', '-');
  687. }
  688. if (arg_to_options.find(arg) == arg_to_options.end()) {
  689. throw std::invalid_argument(string_format("error: invalid argument: %s", arg.c_str()));
  690. }
  691. if (!seen_args.insert(arg).second) {
  692. LOG_WRN("DEPRECATED: argument '%s' specified multiple times, use comma-separated values instead (only last value will be used)\n", arg.c_str());
  693. }
  694. auto opt = *arg_to_options[arg];
  695. std::string val;
  696. if (opt.value_hint != nullptr) {
  697. // arg with single value
  698. check_arg(i);
  699. val = argv[++i];
  700. }
  701. if (opt.value_hint_2 != nullptr) {
  702. // TODO: support arg with 2 values
  703. throw std::invalid_argument("error: argument with 2 values is not yet supported\n");
  704. }
  705. out_map[opt] = val;
  706. }
  707. return true;
  708. }
  709. bool common_params_parse(int argc, char ** argv, common_params & params, llama_example ex, void(*print_usage)(int, char **)) {
  710. auto ctx_arg = common_params_parser_init(params, ex, print_usage);
  711. const common_params params_org = ctx_arg.params; // the example can modify the default params
  712. try {
  713. if (!common_params_parse_ex(argc, argv, ctx_arg)) {
  714. ctx_arg.params = params_org;
  715. return false;
  716. }
  717. if (ctx_arg.params.usage) {
  718. common_params_print_usage(ctx_arg);
  719. if (ctx_arg.print_usage) {
  720. ctx_arg.print_usage(argc, argv);
  721. }
  722. exit(0);
  723. }
  724. if (ctx_arg.params.completion) {
  725. common_params_print_completion(ctx_arg);
  726. exit(0);
  727. }
  728. params.lr.init();
  729. } catch (const std::invalid_argument & ex) {
  730. fprintf(stderr, "%s\n", ex.what());
  731. ctx_arg.params = params_org;
  732. return false;
  733. } catch (std::exception & ex) {
  734. fprintf(stderr, "%s\n", ex.what());
  735. exit(1); // for other exceptions, we exit with status code 1
  736. }
  737. return true;
  738. }
  739. static std::string list_builtin_chat_templates() {
  740. std::vector<const char *> supported_tmpl;
  741. int32_t res = llama_chat_builtin_templates(nullptr, 0);
  742. supported_tmpl.resize(res);
  743. res = llama_chat_builtin_templates(supported_tmpl.data(), supported_tmpl.size());
  744. std::ostringstream msg;
  745. for (auto & tmpl : supported_tmpl) {
  746. msg << tmpl << (&tmpl == &supported_tmpl.back() ? "" : ", ");
  747. }
  748. return msg.str();
  749. }
  750. bool common_arg_utils::is_truthy(const std::string & value) {
  751. return value == "on" || value == "enabled" || value == "true" || value == "1";
  752. }
  753. bool common_arg_utils::is_falsey(const std::string & value) {
  754. return value == "off" || value == "disabled" || value == "false" || value == "0";
  755. }
  756. bool common_arg_utils::is_autoy(const std::string & value) {
  757. return value == "auto" || value == "-1";
  758. }
  759. common_params_context common_params_parser_init(common_params & params, llama_example ex, void(*print_usage)(int, char **)) {
  760. // per-example default params
  761. // we define here to make sure it's included in llama-gen-docs
  762. if (ex == LLAMA_EXAMPLE_COMPLETION) {
  763. params.use_jinja = false; // disable jinja by default
  764. } else if (ex == LLAMA_EXAMPLE_MTMD) {
  765. params.use_jinja = false; // disable jinja by default
  766. params.sampling.temp = 0.2; // lower temp by default for better quality
  767. } else if (ex == LLAMA_EXAMPLE_SERVER) {
  768. params.n_parallel = -1; // auto by default
  769. }
  770. params.use_color = tty_can_use_colors();
  771. // load dynamic backends
  772. ggml_backend_load_all();
  773. common_params_context ctx_arg(params);
  774. ctx_arg.print_usage = print_usage;
  775. ctx_arg.ex = ex;
  776. std::string sampler_type_chars;
  777. std::string sampler_type_names;
  778. for (const auto & sampler : params.sampling.samplers) {
  779. sampler_type_chars += common_sampler_type_to_chr(sampler);
  780. sampler_type_names += common_sampler_type_to_str(sampler) + ";";
  781. }
  782. sampler_type_names.pop_back();
  783. /**
  784. * filter options by example
  785. * rules:
  786. * - all examples inherit options from LLAMA_EXAMPLE_COMMON
  787. * - if LLAMA_EXAMPLE_* is set (other than COMMON), we only show the option in the corresponding example
  788. * - if both {LLAMA_EXAMPLE_COMMON, LLAMA_EXAMPLE_*,} are set, we will prioritize the LLAMA_EXAMPLE_* matching current example
  789. */
  790. auto add_opt = [&](common_arg arg) {
  791. if ((arg.in_example(ex) || arg.in_example(LLAMA_EXAMPLE_COMMON)) && !arg.is_exclude(ex)) {
  792. ctx_arg.options.push_back(std::move(arg));
  793. }
  794. };
  795. add_opt(common_arg(
  796. {"-h", "--help", "--usage"},
  797. "print usage and exit",
  798. [](common_params & params) {
  799. params.usage = true;
  800. }
  801. ));
  802. add_opt(common_arg(
  803. {"--version"},
  804. "show version and build info",
  805. [](common_params &) {
  806. fprintf(stderr, "version: %d (%s)\n", LLAMA_BUILD_NUMBER, LLAMA_COMMIT);
  807. fprintf(stderr, "built with %s for %s\n", LLAMA_COMPILER, LLAMA_BUILD_TARGET);
  808. exit(0);
  809. }
  810. ));
  811. add_opt(common_arg(
  812. {"-cl", "--cache-list"},
  813. "show list of models in cache",
  814. [](common_params &) {
  815. printf("model cache directory: %s\n", fs_get_cache_directory().c_str());
  816. auto models = common_list_cached_models();
  817. printf("number of models in cache: %zu\n", models.size());
  818. for (size_t i = 0; i < models.size(); i++) {
  819. auto & model = models[i];
  820. printf("%4d. %s\n", (int) i + 1, model.to_string().c_str());
  821. }
  822. exit(0);
  823. }
  824. ));
  825. add_opt(common_arg(
  826. {"--completion-bash"},
  827. "print source-able bash completion script for llama.cpp",
  828. [](common_params & params) {
  829. params.completion = true;
  830. }
  831. ));
  832. add_opt(common_arg(
  833. {"--verbose-prompt"},
  834. string_format("print a verbose prompt before generation (default: %s)", params.verbose_prompt ? "true" : "false"),
  835. [](common_params & params) {
  836. params.verbose_prompt = true;
  837. }
  838. ));
  839. add_opt(common_arg(
  840. {"--display-prompt"},
  841. {"--no-display-prompt"},
  842. string_format("whether to print prompt at generation (default: %s)", params.display_prompt ? "true" : "false"),
  843. [](common_params & params, bool value) {
  844. params.display_prompt = value;
  845. }
  846. ).set_examples({LLAMA_EXAMPLE_COMPLETION, LLAMA_EXAMPLE_CLI}));
  847. add_opt(common_arg(
  848. {"-co", "--color"}, "[on|off|auto]",
  849. "Colorize output to distinguish prompt and user input from generations ('on', 'off', or 'auto', default: 'auto')\n"
  850. "'auto' enables colors when output is to a terminal",
  851. [](common_params & params, const std::string & value) {
  852. if (is_truthy(value)) {
  853. params.use_color = true;
  854. } else if (is_falsey(value)) {
  855. params.use_color = false;
  856. } else if (is_autoy(value)) {
  857. params.use_color = tty_can_use_colors();
  858. } else {
  859. throw std::invalid_argument(
  860. string_format("error: unknown value for --color: '%s'\n", value.c_str()));
  861. }
  862. }
  863. ).set_examples({LLAMA_EXAMPLE_COMPLETION, LLAMA_EXAMPLE_CLI, LLAMA_EXAMPLE_SPECULATIVE, LLAMA_EXAMPLE_LOOKUP}));
  864. add_opt(common_arg(
  865. {"-t", "--threads"}, "N",
  866. string_format("number of CPU threads to use during generation (default: %d)", params.cpuparams.n_threads),
  867. [](common_params & params, int value) {
  868. params.cpuparams.n_threads = value;
  869. if (params.cpuparams.n_threads <= 0) {
  870. params.cpuparams.n_threads = std::thread::hardware_concurrency();
  871. }
  872. }
  873. ).set_env("LLAMA_ARG_THREADS"));
  874. add_opt(common_arg(
  875. {"-tb", "--threads-batch"}, "N",
  876. "number of threads to use during batch and prompt processing (default: same as --threads)",
  877. [](common_params & params, int value) {
  878. params.cpuparams_batch.n_threads = value;
  879. if (params.cpuparams_batch.n_threads <= 0) {
  880. params.cpuparams_batch.n_threads = std::thread::hardware_concurrency();
  881. }
  882. }
  883. ));
  884. add_opt(common_arg(
  885. {"-C", "--cpu-mask"}, "M",
  886. "CPU affinity mask: arbitrarily long hex. Complements cpu-range (default: \"\")",
  887. [](common_params & params, const std::string & mask) {
  888. params.cpuparams.mask_valid = true;
  889. if (!parse_cpu_mask(mask, params.cpuparams.cpumask)) {
  890. throw std::invalid_argument("invalid cpumask");
  891. }
  892. }
  893. ));
  894. add_opt(common_arg(
  895. {"-Cr", "--cpu-range"}, "lo-hi",
  896. "range of CPUs for affinity. Complements --cpu-mask",
  897. [](common_params & params, const std::string & range) {
  898. params.cpuparams.mask_valid = true;
  899. if (!parse_cpu_range(range, params.cpuparams.cpumask)) {
  900. throw std::invalid_argument("invalid range");
  901. }
  902. }
  903. ));
  904. add_opt(common_arg(
  905. {"--cpu-strict"}, "<0|1>",
  906. string_format("use strict CPU placement (default: %u)\n", (unsigned) params.cpuparams.strict_cpu),
  907. [](common_params & params, const std::string & value) {
  908. params.cpuparams.strict_cpu = std::stoul(value);
  909. }
  910. ));
  911. add_opt(common_arg(
  912. {"--prio"}, "N",
  913. string_format("set process/thread priority : low(-1), normal(0), medium(1), high(2), realtime(3) (default: %d)\n", params.cpuparams.priority),
  914. [](common_params & params, int prio) {
  915. if (prio < GGML_SCHED_PRIO_LOW || prio > GGML_SCHED_PRIO_REALTIME) {
  916. throw std::invalid_argument("invalid value");
  917. }
  918. params.cpuparams.priority = (enum ggml_sched_priority) prio;
  919. }
  920. ));
  921. add_opt(common_arg(
  922. {"--poll"}, "<0...100>",
  923. string_format("use polling level to wait for work (0 - no polling, default: %u)\n", (unsigned) params.cpuparams.poll),
  924. [](common_params & params, const std::string & value) {
  925. params.cpuparams.poll = std::stoul(value);
  926. }
  927. ));
  928. add_opt(common_arg(
  929. {"-Cb", "--cpu-mask-batch"}, "M",
  930. "CPU affinity mask: arbitrarily long hex. Complements cpu-range-batch (default: same as --cpu-mask)",
  931. [](common_params & params, const std::string & mask) {
  932. params.cpuparams_batch.mask_valid = true;
  933. if (!parse_cpu_mask(mask, params.cpuparams_batch.cpumask)) {
  934. throw std::invalid_argument("invalid cpumask");
  935. }
  936. }
  937. ));
  938. add_opt(common_arg(
  939. {"-Crb", "--cpu-range-batch"}, "lo-hi",
  940. "ranges of CPUs for affinity. Complements --cpu-mask-batch",
  941. [](common_params & params, const std::string & range) {
  942. params.cpuparams_batch.mask_valid = true;
  943. if (!parse_cpu_range(range, params.cpuparams_batch.cpumask)) {
  944. throw std::invalid_argument("invalid range");
  945. }
  946. }
  947. ));
  948. add_opt(common_arg(
  949. {"--cpu-strict-batch"}, "<0|1>",
  950. "use strict CPU placement (default: same as --cpu-strict)",
  951. [](common_params & params, int value) {
  952. params.cpuparams_batch.strict_cpu = value;
  953. }
  954. ));
  955. add_opt(common_arg(
  956. {"--prio-batch"}, "N",
  957. string_format("set process/thread priority : 0-normal, 1-medium, 2-high, 3-realtime (default: %d)\n", params.cpuparams_batch.priority),
  958. [](common_params & params, int prio) {
  959. if (prio < 0 || prio > 3) {
  960. throw std::invalid_argument("invalid value");
  961. }
  962. params.cpuparams_batch.priority = (enum ggml_sched_priority) prio;
  963. }
  964. ));
  965. add_opt(common_arg(
  966. {"--poll-batch"}, "<0|1>",
  967. "use polling to wait for work (default: same as --poll)",
  968. [](common_params & params, int value) {
  969. params.cpuparams_batch.poll = value;
  970. }
  971. ));
  972. add_opt(common_arg(
  973. {"-lcs", "--lookup-cache-static"}, "FNAME",
  974. "path to static lookup cache to use for lookup decoding (not updated by generation)",
  975. [](common_params & params, const std::string & value) {
  976. params.lookup_cache_static = value;
  977. }
  978. ).set_examples({LLAMA_EXAMPLE_LOOKUP}));
  979. add_opt(common_arg(
  980. {"-lcd", "--lookup-cache-dynamic"}, "FNAME",
  981. "path to dynamic lookup cache to use for lookup decoding (updated by generation)",
  982. [](common_params & params, const std::string & value) {
  983. params.lookup_cache_dynamic = value;
  984. }
  985. ).set_examples({LLAMA_EXAMPLE_LOOKUP}));
  986. add_opt(common_arg(
  987. {"-c", "--ctx-size"}, "N",
  988. string_format("size of the prompt context (default: %d, 0 = loaded from model)", params.n_ctx),
  989. [](common_params & params, int value) {
  990. params.n_ctx = value;
  991. }
  992. ).set_env("LLAMA_ARG_CTX_SIZE"));
  993. add_opt(common_arg(
  994. {"-n", "--predict", "--n-predict"}, "N",
  995. string_format(
  996. ex == LLAMA_EXAMPLE_COMPLETION
  997. ? "number of tokens to predict (default: %d, -1 = infinity, -2 = until context filled)"
  998. : "number of tokens to predict (default: %d, -1 = infinity)",
  999. params.n_predict),
  1000. [](common_params & params, int value) {
  1001. params.n_predict = value;
  1002. }
  1003. ).set_env("LLAMA_ARG_N_PREDICT"));
  1004. add_opt(common_arg(
  1005. {"-b", "--batch-size"}, "N",
  1006. string_format("logical maximum batch size (default: %d)", params.n_batch),
  1007. [](common_params & params, int value) {
  1008. params.n_batch = value;
  1009. }
  1010. ).set_env("LLAMA_ARG_BATCH"));
  1011. add_opt(common_arg(
  1012. {"-ub", "--ubatch-size"}, "N",
  1013. string_format("physical maximum batch size (default: %d)", params.n_ubatch),
  1014. [](common_params & params, int value) {
  1015. params.n_ubatch = value;
  1016. }
  1017. ).set_env("LLAMA_ARG_UBATCH"));
  1018. add_opt(common_arg(
  1019. {"--keep"}, "N",
  1020. string_format("number of tokens to keep from the initial prompt (default: %d, -1 = all)", params.n_keep),
  1021. [](common_params & params, int value) {
  1022. params.n_keep = value;
  1023. }
  1024. ));
  1025. add_opt(common_arg(
  1026. {"--swa-full"},
  1027. string_format("use full-size SWA cache (default: %s)\n"
  1028. "[(more info)](https://github.com/ggml-org/llama.cpp/pull/13194#issuecomment-2868343055)", params.swa_full ? "true" : "false"),
  1029. [](common_params & params) {
  1030. params.swa_full = true;
  1031. }
  1032. ).set_env("LLAMA_ARG_SWA_FULL"));
  1033. add_opt(common_arg(
  1034. {"--ctx-checkpoints", "--swa-checkpoints"}, "N",
  1035. string_format("max number of context checkpoints to create per slot (default: %d)"
  1036. "[(more info)](https://github.com/ggml-org/llama.cpp/pull/15293)", params.n_ctx_checkpoints),
  1037. [](common_params & params, int value) {
  1038. params.n_ctx_checkpoints = value;
  1039. }
  1040. ).set_env("LLAMA_ARG_CTX_CHECKPOINTS").set_examples({LLAMA_EXAMPLE_SERVER, LLAMA_EXAMPLE_CLI}));
  1041. add_opt(common_arg(
  1042. {"--cache-ram", "-cram"}, "N",
  1043. string_format("set the maximum cache size in MiB (default: %d, -1 - no limit, 0 - disable)"
  1044. "[(more info)](https://github.com/ggml-org/llama.cpp/pull/16391)", params.cache_ram_mib),
  1045. [](common_params & params, int value) {
  1046. params.cache_ram_mib = value;
  1047. }
  1048. ).set_env("LLAMA_ARG_CACHE_RAM").set_examples({LLAMA_EXAMPLE_SERVER, LLAMA_EXAMPLE_CLI}));
  1049. add_opt(common_arg(
  1050. {"--kv-unified", "-kvu"},
  1051. "use single unified KV buffer shared across all sequences (default: enabled if number of slots is auto)",
  1052. [](common_params & params) {
  1053. params.kv_unified = true;
  1054. }
  1055. ).set_env("LLAMA_ARG_KV_UNIFIED").set_examples({LLAMA_EXAMPLE_SERVER, LLAMA_EXAMPLE_PERPLEXITY}));
  1056. add_opt(common_arg(
  1057. {"--context-shift"},
  1058. {"--no-context-shift"},
  1059. string_format("whether to use context shift on infinite text generation (default: %s)", params.ctx_shift ? "enabled" : "disabled"),
  1060. [](common_params & params, bool value) {
  1061. params.ctx_shift = value;
  1062. }
  1063. ).set_examples({LLAMA_EXAMPLE_COMPLETION, LLAMA_EXAMPLE_CLI, LLAMA_EXAMPLE_SERVER, LLAMA_EXAMPLE_IMATRIX, LLAMA_EXAMPLE_PERPLEXITY}).set_env("LLAMA_ARG_CONTEXT_SHIFT"));
  1064. add_opt(common_arg(
  1065. {"--chunks"}, "N",
  1066. string_format("max number of chunks to process (default: %d, -1 = all)", params.n_chunks),
  1067. [](common_params & params, int value) {
  1068. params.n_chunks = value;
  1069. }
  1070. ).set_examples({LLAMA_EXAMPLE_IMATRIX, LLAMA_EXAMPLE_PERPLEXITY, LLAMA_EXAMPLE_RETRIEVAL}));
  1071. add_opt(common_arg({ "-fa", "--flash-attn" }, "[on|off|auto]",
  1072. string_format("set Flash Attention use ('on', 'off', or 'auto', default: '%s')",
  1073. llama_flash_attn_type_name(params.flash_attn_type)),
  1074. [](common_params & params, const std::string & value) {
  1075. if (is_truthy(value)) {
  1076. params.flash_attn_type = LLAMA_FLASH_ATTN_TYPE_ENABLED;
  1077. } else if (is_falsey(value)) {
  1078. params.flash_attn_type = LLAMA_FLASH_ATTN_TYPE_DISABLED;
  1079. } else if (is_autoy(value)) {
  1080. params.flash_attn_type = LLAMA_FLASH_ATTN_TYPE_AUTO;
  1081. } else {
  1082. throw std::runtime_error(
  1083. string_format("error: unknown value for --flash-attn: '%s'\n", value.c_str()));
  1084. }
  1085. }).set_env("LLAMA_ARG_FLASH_ATTN"));
  1086. add_opt(common_arg(
  1087. {"-p", "--prompt"}, "PROMPT",
  1088. "prompt to start generation with; for system message, use -sys",
  1089. [](common_params & params, const std::string & value) {
  1090. params.prompt = value;
  1091. }
  1092. ).set_excludes({LLAMA_EXAMPLE_SERVER}));
  1093. add_opt(common_arg(
  1094. {"-sys", "--system-prompt"}, "PROMPT",
  1095. "system prompt to use with model (if applicable, depending on chat template)",
  1096. [](common_params & params, const std::string & value) {
  1097. params.system_prompt = value;
  1098. }
  1099. ).set_examples({LLAMA_EXAMPLE_COMPLETION, LLAMA_EXAMPLE_CLI, LLAMA_EXAMPLE_DIFFUSION}));
  1100. add_opt(common_arg(
  1101. {"--perf"},
  1102. {"--no-perf"},
  1103. string_format("whether to enable internal libllama performance timings (default: %s)", params.no_perf ? "true" : "false"),
  1104. [](common_params & params, bool value) {
  1105. params.no_perf = !value;
  1106. params.sampling.no_perf = !value;
  1107. }
  1108. ).set_env("LLAMA_ARG_PERF"));
  1109. add_opt(common_arg(
  1110. {"--show-timings"},
  1111. {"--no-show-timings"},
  1112. string_format("whether to show timing information after each response (default: %s)", params.show_timings ? "true" : "false"),
  1113. [](common_params & params, bool value) {
  1114. params.show_timings = value;
  1115. }
  1116. ).set_examples({LLAMA_EXAMPLE_CLI}).set_env("LLAMA_ARG_SHOW_TIMINGS"));
  1117. add_opt(common_arg(
  1118. {"-f", "--file"}, "FNAME",
  1119. "a file containing the prompt (default: none)",
  1120. [](common_params & params, const std::string & value) {
  1121. params.prompt = read_file(value);
  1122. // store the external file name in params
  1123. params.prompt_file = value;
  1124. if (!params.prompt.empty() && params.prompt.back() == '\n') {
  1125. params.prompt.pop_back();
  1126. }
  1127. }
  1128. ).set_excludes({LLAMA_EXAMPLE_SERVER}));
  1129. add_opt(common_arg(
  1130. {"-sysf", "--system-prompt-file"}, "FNAME",
  1131. "a file containing the system prompt (default: none)",
  1132. [](common_params & params, const std::string & value) {
  1133. params.system_prompt = read_file(value);
  1134. if (!params.system_prompt.empty() && params.system_prompt.back() == '\n') {
  1135. params.system_prompt.pop_back();
  1136. }
  1137. }
  1138. ).set_examples({LLAMA_EXAMPLE_COMPLETION, LLAMA_EXAMPLE_CLI, LLAMA_EXAMPLE_DIFFUSION}));
  1139. add_opt(common_arg(
  1140. {"--in-file"}, "FNAME",
  1141. "an input file (use comma-separated values to specify multiple files)",
  1142. [](common_params & params, const std::string & value) {
  1143. for (const auto & item : string_split<std::string>(value, ',')) {
  1144. std::ifstream file(item);
  1145. if (!file) {
  1146. throw std::runtime_error(string_format("error: failed to open file '%s'\n", item.c_str()));
  1147. }
  1148. params.in_files.push_back(item);
  1149. }
  1150. }
  1151. ).set_examples({LLAMA_EXAMPLE_IMATRIX}));
  1152. add_opt(common_arg(
  1153. {"-bf", "--binary-file"}, "FNAME",
  1154. "binary file containing the prompt (default: none)",
  1155. [](common_params & params, const std::string & value) {
  1156. std::ifstream file(value, std::ios::binary);
  1157. if (!file) {
  1158. throw std::runtime_error(string_format("error: failed to open file '%s'\n", value.c_str()));
  1159. }
  1160. // store the external file name in params
  1161. params.prompt_file = value;
  1162. std::ostringstream ss;
  1163. ss << file.rdbuf();
  1164. params.prompt = ss.str();
  1165. fprintf(stderr, "Read %zu bytes from binary file %s\n", params.prompt.size(), value.c_str());
  1166. }
  1167. ).set_excludes({LLAMA_EXAMPLE_SERVER}));
  1168. add_opt(common_arg(
  1169. {"-e", "--escape"},
  1170. {"--no-escape"},
  1171. string_format("whether to process escapes sequences (\\n, \\r, \\t, \\', \\\", \\\\) (default: %s)", params.escape ? "true" : "false"),
  1172. [](common_params & params, bool value) {
  1173. params.escape = value;
  1174. }
  1175. ));
  1176. add_opt(common_arg(
  1177. {"-ptc", "--print-token-count"}, "N",
  1178. string_format("print token count every N tokens (default: %d)", params.n_print),
  1179. [](common_params & params, int value) {
  1180. params.n_print = value;
  1181. }
  1182. ).set_examples({LLAMA_EXAMPLE_COMPLETION}));
  1183. add_opt(common_arg(
  1184. {"--prompt-cache"}, "FNAME",
  1185. "file to cache prompt state for faster startup (default: none)",
  1186. [](common_params & params, const std::string & value) {
  1187. params.path_prompt_cache = value;
  1188. }
  1189. ).set_examples({LLAMA_EXAMPLE_COMPLETION}));
  1190. add_opt(common_arg(
  1191. {"--prompt-cache-all"},
  1192. "if specified, saves user input and generations to cache as well\n",
  1193. [](common_params & params) {
  1194. params.prompt_cache_all = true;
  1195. }
  1196. ).set_examples({LLAMA_EXAMPLE_COMPLETION}));
  1197. add_opt(common_arg(
  1198. {"--prompt-cache-ro"},
  1199. "if specified, uses the prompt cache but does not update it",
  1200. [](common_params & params) {
  1201. params.prompt_cache_ro = true;
  1202. }
  1203. ).set_examples({LLAMA_EXAMPLE_COMPLETION}));
  1204. add_opt(common_arg(
  1205. {"-r", "--reverse-prompt"}, "PROMPT",
  1206. "halt generation at PROMPT, return control in interactive mode\n",
  1207. [](common_params & params, const std::string & value) {
  1208. params.antiprompt.emplace_back(value);
  1209. }
  1210. ).set_examples({LLAMA_EXAMPLE_COMPLETION, LLAMA_EXAMPLE_CLI, LLAMA_EXAMPLE_SERVER}));
  1211. add_opt(common_arg(
  1212. {"-sp", "--special"},
  1213. string_format("special tokens output enabled (default: %s)", params.special ? "true" : "false"),
  1214. [](common_params & params) {
  1215. params.special = true;
  1216. }
  1217. ).set_examples({LLAMA_EXAMPLE_COMPLETION, LLAMA_EXAMPLE_CLI, LLAMA_EXAMPLE_SERVER}));
  1218. add_opt(common_arg(
  1219. {"-cnv", "--conversation"},
  1220. {"-no-cnv", "--no-conversation"},
  1221. "whether to run in conversation mode:\n"
  1222. "- does not print special tokens and suffix/prefix\n"
  1223. "- interactive mode is also enabled\n"
  1224. "(default: auto enabled if chat template is available)",
  1225. [](common_params & params, bool value) {
  1226. params.conversation_mode = value ? COMMON_CONVERSATION_MODE_ENABLED : COMMON_CONVERSATION_MODE_DISABLED;
  1227. }
  1228. ).set_examples({LLAMA_EXAMPLE_COMPLETION, LLAMA_EXAMPLE_CLI}));
  1229. add_opt(common_arg(
  1230. {"-st", "--single-turn"},
  1231. "run conversation for a single turn only, then exit when done\n"
  1232. "will not be interactive if first turn is predefined with --prompt\n"
  1233. "(default: false)",
  1234. [](common_params & params) {
  1235. params.single_turn = true;
  1236. }
  1237. ).set_examples({LLAMA_EXAMPLE_COMPLETION, LLAMA_EXAMPLE_CLI}));
  1238. add_opt(common_arg(
  1239. {"-i", "--interactive"},
  1240. string_format("run in interactive mode (default: %s)", params.interactive ? "true" : "false"),
  1241. [](common_params & params) {
  1242. params.interactive = true;
  1243. }
  1244. ).set_examples({LLAMA_EXAMPLE_COMPLETION}));
  1245. add_opt(common_arg(
  1246. {"-if", "--interactive-first"},
  1247. string_format("run in interactive mode and wait for input right away (default: %s)", params.interactive_first ? "true" : "false"),
  1248. [](common_params & params) {
  1249. params.interactive_first = true;
  1250. }
  1251. ).set_examples({LLAMA_EXAMPLE_COMPLETION}));
  1252. add_opt(common_arg(
  1253. {"-mli", "--multiline-input"},
  1254. "allows you to write or paste multiple lines without ending each in '\\'",
  1255. [](common_params & params) {
  1256. params.multiline_input = true;
  1257. }
  1258. ).set_examples({LLAMA_EXAMPLE_COMPLETION, LLAMA_EXAMPLE_CLI}));
  1259. add_opt(common_arg(
  1260. {"--in-prefix-bos"},
  1261. "prefix BOS to user inputs, preceding the `--in-prefix` string",
  1262. [](common_params & params) {
  1263. params.input_prefix_bos = true;
  1264. params.enable_chat_template = false;
  1265. }
  1266. ).set_examples({LLAMA_EXAMPLE_COMPLETION}));
  1267. add_opt(common_arg(
  1268. {"--in-prefix"}, "STRING",
  1269. "string to prefix user inputs with (default: empty)",
  1270. [](common_params & params, const std::string & value) {
  1271. params.input_prefix = value;
  1272. params.enable_chat_template = false;
  1273. }
  1274. ).set_examples({LLAMA_EXAMPLE_COMPLETION}));
  1275. add_opt(common_arg(
  1276. {"--in-suffix"}, "STRING",
  1277. "string to suffix after user inputs with (default: empty)",
  1278. [](common_params & params, const std::string & value) {
  1279. params.input_suffix = value;
  1280. params.enable_chat_template = false;
  1281. }
  1282. ).set_examples({LLAMA_EXAMPLE_COMPLETION}));
  1283. add_opt(common_arg(
  1284. {"--warmup"},
  1285. {"--no-warmup"},
  1286. string_format("whether to perform warmup with an empty run (default: %s)", params.warmup ? "enabled" : "disabled"),
  1287. [](common_params & params, bool value) {
  1288. params.warmup = value;
  1289. }
  1290. ).set_examples({LLAMA_EXAMPLE_COMPLETION, LLAMA_EXAMPLE_CLI, LLAMA_EXAMPLE_SERVER, LLAMA_EXAMPLE_MTMD, LLAMA_EXAMPLE_EMBEDDING, LLAMA_EXAMPLE_RETRIEVAL, LLAMA_EXAMPLE_PERPLEXITY}));
  1291. add_opt(common_arg(
  1292. {"--spm-infill"},
  1293. string_format(
  1294. "use Suffix/Prefix/Middle pattern for infill (instead of Prefix/Suffix/Middle) as some models prefer this. (default: %s)",
  1295. params.spm_infill ? "enabled" : "disabled"
  1296. ),
  1297. [](common_params & params) {
  1298. params.spm_infill = true;
  1299. }
  1300. ).set_examples({LLAMA_EXAMPLE_SERVER}));
  1301. add_opt(common_arg(
  1302. {"--samplers"}, "SAMPLERS",
  1303. string_format("samplers that will be used for generation in the order, separated by \';\'\n(default: %s)", sampler_type_names.c_str()),
  1304. [](common_params & params, const std::string & value) {
  1305. const auto sampler_names = string_split<std::string>(value, ';');
  1306. params.sampling.samplers = common_sampler_types_from_names(sampler_names, true);
  1307. params.sampling.user_sampling_config |= common_params_sampling_config::COMMON_PARAMS_SAMPLING_CONFIG_SAMPLERS;
  1308. }
  1309. ).set_sparam());
  1310. add_opt(common_arg(
  1311. {"-s", "--seed"}, "SEED",
  1312. string_format("RNG seed (default: %d, use random seed for %d)", params.sampling.seed, LLAMA_DEFAULT_SEED),
  1313. [](common_params & params, const std::string & value) {
  1314. params.sampling.seed = std::stoul(value);
  1315. }
  1316. ).set_sparam());
  1317. add_opt(common_arg(
  1318. {"--sampling-seq", "--sampler-seq"}, "SEQUENCE",
  1319. string_format("simplified sequence for samplers that will be used (default: %s)", sampler_type_chars.c_str()),
  1320. [](common_params & params, const std::string & value) {
  1321. params.sampling.samplers = common_sampler_types_from_chars(value);
  1322. }
  1323. ).set_sparam());
  1324. add_opt(common_arg(
  1325. {"--ignore-eos"},
  1326. "ignore end of stream token and continue generating (implies --logit-bias EOS-inf)",
  1327. [](common_params & params) {
  1328. params.sampling.ignore_eos = true;
  1329. }
  1330. ).set_sparam());
  1331. add_opt(common_arg(
  1332. {"--temp"}, "N",
  1333. string_format("temperature (default: %.1f)", (double)params.sampling.temp),
  1334. [](common_params & params, const std::string & value) {
  1335. params.sampling.temp = std::stof(value);
  1336. params.sampling.temp = std::max(params.sampling.temp, 0.0f);
  1337. params.sampling.user_sampling_config |= common_params_sampling_config::COMMON_PARAMS_SAMPLING_CONFIG_TEMP;
  1338. }
  1339. ).set_sparam());
  1340. add_opt(common_arg(
  1341. {"--top-k"}, "N",
  1342. string_format("top-k sampling (default: %d, 0 = disabled)", params.sampling.top_k),
  1343. [](common_params & params, int value) {
  1344. params.sampling.top_k = value;
  1345. params.sampling.user_sampling_config |= common_params_sampling_config::COMMON_PARAMS_SAMPLING_CONFIG_TOP_K;
  1346. }
  1347. ).set_sparam().set_env("LLAMA_ARG_TOP_K"));
  1348. add_opt(common_arg(
  1349. {"--top-p"}, "N",
  1350. string_format("top-p sampling (default: %.1f, 1.0 = disabled)", (double)params.sampling.top_p),
  1351. [](common_params & params, const std::string & value) {
  1352. params.sampling.top_p = std::stof(value);
  1353. params.sampling.user_sampling_config |= common_params_sampling_config::COMMON_PARAMS_SAMPLING_CONFIG_TOP_P;
  1354. }
  1355. ).set_sparam());
  1356. add_opt(common_arg(
  1357. {"--min-p"}, "N",
  1358. string_format("min-p sampling (default: %.1f, 0.0 = disabled)", (double)params.sampling.min_p),
  1359. [](common_params & params, const std::string & value) {
  1360. params.sampling.min_p = std::stof(value);
  1361. params.sampling.user_sampling_config |= common_params_sampling_config::COMMON_PARAMS_SAMPLING_CONFIG_MIN_P;
  1362. }
  1363. ).set_sparam());
  1364. add_opt(common_arg(
  1365. {"--top-nsigma"}, "N",
  1366. string_format("top-n-sigma sampling (default: %.1f, -1.0 = disabled)", params.sampling.top_n_sigma),
  1367. [](common_params & params, const std::string & value) {
  1368. params.sampling.top_n_sigma = std::stof(value);
  1369. }
  1370. ).set_sparam());
  1371. add_opt(common_arg(
  1372. {"--xtc-probability"}, "N",
  1373. string_format("xtc probability (default: %.1f, 0.0 = disabled)", (double)params.sampling.xtc_probability),
  1374. [](common_params & params, const std::string & value) {
  1375. params.sampling.xtc_probability = std::stof(value);
  1376. params.sampling.user_sampling_config |= common_params_sampling_config::COMMON_PARAMS_SAMPLING_CONFIG_XTC_PROBABILITY;
  1377. }
  1378. ).set_sparam());
  1379. add_opt(common_arg(
  1380. {"--xtc-threshold"}, "N",
  1381. string_format("xtc threshold (default: %.1f, 1.0 = disabled)", (double)params.sampling.xtc_threshold),
  1382. [](common_params & params, const std::string & value) {
  1383. params.sampling.xtc_threshold = std::stof(value);
  1384. params.sampling.user_sampling_config |= common_params_sampling_config::COMMON_PARAMS_SAMPLING_CONFIG_XTC_THRESHOLD;
  1385. }
  1386. ).set_sparam());
  1387. add_opt(common_arg(
  1388. {"--typical"}, "N",
  1389. string_format("locally typical sampling, parameter p (default: %.1f, 1.0 = disabled)", (double)params.sampling.typ_p),
  1390. [](common_params & params, const std::string & value) {
  1391. params.sampling.typ_p = std::stof(value);
  1392. }
  1393. ).set_sparam());
  1394. add_opt(common_arg(
  1395. {"--repeat-last-n"}, "N",
  1396. string_format("last n tokens to consider for penalize (default: %d, 0 = disabled, -1 = ctx_size)", params.sampling.penalty_last_n),
  1397. [](common_params & params, int value) {
  1398. if (value < -1) {
  1399. throw std::runtime_error(string_format("error: invalid repeat-last-n = %d\n", value));
  1400. }
  1401. params.sampling.penalty_last_n = value;
  1402. params.sampling.n_prev = std::max(params.sampling.n_prev, params.sampling.penalty_last_n);
  1403. params.sampling.user_sampling_config |= common_params_sampling_config::COMMON_PARAMS_SAMPLING_CONFIG_PENALTY_LAST_N;
  1404. }
  1405. ).set_sparam());
  1406. add_opt(common_arg(
  1407. {"--repeat-penalty"}, "N",
  1408. string_format("penalize repeat sequence of tokens (default: %.1f, 1.0 = disabled)", (double)params.sampling.penalty_repeat),
  1409. [](common_params & params, const std::string & value) {
  1410. params.sampling.penalty_repeat = std::stof(value);
  1411. params.sampling.user_sampling_config |= common_params_sampling_config::COMMON_PARAMS_SAMPLING_CONFIG_PENALTY_REPEAT;
  1412. }
  1413. ).set_sparam());
  1414. add_opt(common_arg(
  1415. {"--presence-penalty"}, "N",
  1416. string_format("repeat alpha presence penalty (default: %.1f, 0.0 = disabled)", (double)params.sampling.penalty_present),
  1417. [](common_params & params, const std::string & value) {
  1418. params.sampling.penalty_present = std::stof(value);
  1419. }
  1420. ).set_sparam());
  1421. add_opt(common_arg(
  1422. {"--frequency-penalty"}, "N",
  1423. string_format("repeat alpha frequency penalty (default: %.1f, 0.0 = disabled)", (double)params.sampling.penalty_freq),
  1424. [](common_params & params, const std::string & value) {
  1425. params.sampling.penalty_freq = std::stof(value);
  1426. }
  1427. ).set_sparam());
  1428. add_opt(common_arg(
  1429. {"--dry-multiplier"}, "N",
  1430. string_format("set DRY sampling multiplier (default: %.1f, 0.0 = disabled)", (double)params.sampling.dry_multiplier),
  1431. [](common_params & params, const std::string & value) {
  1432. params.sampling.dry_multiplier = std::stof(value);
  1433. }
  1434. ).set_sparam());
  1435. add_opt(common_arg(
  1436. {"--dry-base"}, "N",
  1437. string_format("set DRY sampling base value (default: %.2f)", (double)params.sampling.dry_base),
  1438. [](common_params & params, const std::string & value) {
  1439. float potential_base = std::stof(value);
  1440. if (potential_base >= 1.0f)
  1441. {
  1442. params.sampling.dry_base = potential_base;
  1443. }
  1444. }
  1445. ).set_sparam());
  1446. add_opt(common_arg(
  1447. {"--dry-allowed-length"}, "N",
  1448. string_format("set allowed length for DRY sampling (default: %d)", params.sampling.dry_allowed_length),
  1449. [](common_params & params, int value) {
  1450. params.sampling.dry_allowed_length = value;
  1451. }
  1452. ).set_sparam());
  1453. add_opt(common_arg(
  1454. {"--dry-penalty-last-n"}, "N",
  1455. string_format("set DRY penalty for the last n tokens (default: %d, 0 = disable, -1 = context size)", params.sampling.dry_penalty_last_n),
  1456. [](common_params & params, int value) {
  1457. if (value < -1) {
  1458. throw std::runtime_error(string_format("error: invalid dry-penalty-last-n = %d\n", value));
  1459. }
  1460. params.sampling.dry_penalty_last_n = value;
  1461. }
  1462. ).set_sparam());
  1463. add_opt(common_arg(
  1464. {"--dry-sequence-breaker"}, "STRING",
  1465. string_format("add sequence breaker for DRY sampling, clearing out default breakers (%s) in the process; use \"none\" to not use any sequence breakers\n",
  1466. params.sampling.dry_sequence_breakers.empty() ? "none" :
  1467. std::accumulate(std::next(params.sampling.dry_sequence_breakers.begin()),
  1468. params.sampling.dry_sequence_breakers.end(),
  1469. std::string("'") + (params.sampling.dry_sequence_breakers[0] == "\n" ? "\\n" : params.sampling.dry_sequence_breakers[0]) + "'",
  1470. [](const std::string& a, const std::string& b) {
  1471. std::string formatted_b = (b == "\n") ? "\\n" : b;
  1472. return a + ", '" + formatted_b + "'";
  1473. }).c_str()),
  1474. [](common_params & params, const std::string & value) {
  1475. static bool defaults_cleared = false;
  1476. if (!defaults_cleared) {
  1477. params.sampling.dry_sequence_breakers.clear();
  1478. defaults_cleared = true;
  1479. }
  1480. if (value == "none") {
  1481. params.sampling.dry_sequence_breakers.clear();
  1482. } else {
  1483. params.sampling.dry_sequence_breakers.emplace_back(value);
  1484. }
  1485. }
  1486. ).set_sparam());
  1487. add_opt(common_arg(
  1488. {"--dynatemp-range"}, "N",
  1489. string_format("dynamic temperature range (default: %.1f, 0.0 = disabled)", (double)params.sampling.dynatemp_range),
  1490. [](common_params & params, const std::string & value) {
  1491. params.sampling.dynatemp_range = std::stof(value);
  1492. }
  1493. ).set_sparam());
  1494. add_opt(common_arg(
  1495. {"--dynatemp-exp"}, "N",
  1496. string_format("dynamic temperature exponent (default: %.1f)", (double)params.sampling.dynatemp_exponent),
  1497. [](common_params & params, const std::string & value) {
  1498. params.sampling.dynatemp_exponent = std::stof(value);
  1499. }
  1500. ).set_sparam());
  1501. add_opt(common_arg(
  1502. {"--mirostat"}, "N",
  1503. string_format("use Mirostat sampling.\nTop K, Nucleus and Locally Typical samplers are ignored if used.\n"
  1504. "(default: %d, 0 = disabled, 1 = Mirostat, 2 = Mirostat 2.0)", params.sampling.mirostat),
  1505. [](common_params & params, int value) {
  1506. params.sampling.mirostat = value;
  1507. params.sampling.user_sampling_config |= common_params_sampling_config::COMMON_PARAMS_SAMPLING_CONFIG_MIROSTAT;
  1508. }
  1509. ).set_sparam());
  1510. add_opt(common_arg(
  1511. {"--mirostat-lr"}, "N",
  1512. string_format("Mirostat learning rate, parameter eta (default: %.1f)", (double)params.sampling.mirostat_eta),
  1513. [](common_params & params, const std::string & value) {
  1514. params.sampling.mirostat_eta = std::stof(value);
  1515. params.sampling.user_sampling_config |= common_params_sampling_config::COMMON_PARAMS_SAMPLING_CONFIG_MIROSTAT_ETA;
  1516. }
  1517. ).set_sparam());
  1518. add_opt(common_arg(
  1519. {"--mirostat-ent"}, "N",
  1520. string_format("Mirostat target entropy, parameter tau (default: %.1f)", (double)params.sampling.mirostat_tau),
  1521. [](common_params & params, const std::string & value) {
  1522. params.sampling.mirostat_tau = std::stof(value);
  1523. params.sampling.user_sampling_config |= common_params_sampling_config::COMMON_PARAMS_SAMPLING_CONFIG_MIROSTAT_TAU;
  1524. }
  1525. ).set_sparam());
  1526. add_opt(common_arg(
  1527. {"-l", "--logit-bias"}, "TOKEN_ID(+/-)BIAS",
  1528. "modifies the likelihood of token appearing in the completion,\n"
  1529. "i.e. `--logit-bias 15043+1` to increase likelihood of token ' Hello',\n"
  1530. "or `--logit-bias 15043-1` to decrease likelihood of token ' Hello'",
  1531. [](common_params & params, const std::string & value) {
  1532. std::stringstream ss(value);
  1533. llama_token key;
  1534. char sign;
  1535. std::string value_str;
  1536. try {
  1537. if (ss >> key && ss >> sign && std::getline(ss, value_str) && (sign == '+' || sign == '-')) {
  1538. const float bias = std::stof(value_str) * ((sign == '-') ? -1.0f : 1.0f);
  1539. params.sampling.logit_bias.push_back({key, bias});
  1540. } else {
  1541. throw std::invalid_argument("invalid input format");
  1542. }
  1543. } catch (const std::exception&) {
  1544. throw std::invalid_argument("invalid input format");
  1545. }
  1546. }
  1547. ).set_sparam());
  1548. add_opt(common_arg(
  1549. {"--grammar"}, "GRAMMAR",
  1550. string_format("BNF-like grammar to constrain generations (see samples in grammars/ dir) (default: '%s')", params.sampling.grammar.c_str()),
  1551. [](common_params & params, const std::string & value) {
  1552. params.sampling.grammar = value;
  1553. }
  1554. ).set_sparam());
  1555. add_opt(common_arg(
  1556. {"--grammar-file"}, "FNAME",
  1557. "file to read grammar from",
  1558. [](common_params & params, const std::string & value) {
  1559. params.sampling.grammar = read_file(value);
  1560. }
  1561. ).set_sparam());
  1562. add_opt(common_arg(
  1563. {"-j", "--json-schema"}, "SCHEMA",
  1564. "JSON schema to constrain generations (https://json-schema.org/), e.g. `{}` for any JSON object\nFor schemas w/ external $refs, use --grammar + example/json_schema_to_grammar.py instead",
  1565. [](common_params & params, const std::string & value) {
  1566. params.sampling.grammar = json_schema_to_grammar(json::parse(value));
  1567. }
  1568. ).set_sparam());
  1569. add_opt(common_arg(
  1570. {"-jf", "--json-schema-file"}, "FILE",
  1571. "File containing a JSON schema to constrain generations (https://json-schema.org/), e.g. `{}` for any JSON object\nFor schemas w/ external $refs, use --grammar + example/json_schema_to_grammar.py instead",
  1572. [](common_params & params, const std::string & value) {
  1573. std::ifstream file(value);
  1574. if (!file) {
  1575. throw std::runtime_error(string_format("error: failed to open file '%s'\n", value.c_str()));
  1576. }
  1577. std::string schema;
  1578. std::copy(
  1579. std::istreambuf_iterator<char>(file),
  1580. std::istreambuf_iterator<char>(),
  1581. std::back_inserter(schema)
  1582. );
  1583. params.sampling.grammar = json_schema_to_grammar(json::parse(schema));
  1584. }
  1585. ).set_sparam());
  1586. add_opt(common_arg(
  1587. {"--pooling"}, "{none,mean,cls,last,rank}",
  1588. "pooling type for embeddings, use model default if unspecified",
  1589. [](common_params & params, const std::string & value) {
  1590. /**/ if (value == "none") { params.pooling_type = LLAMA_POOLING_TYPE_NONE; }
  1591. else if (value == "mean") { params.pooling_type = LLAMA_POOLING_TYPE_MEAN; }
  1592. else if (value == "cls") { params.pooling_type = LLAMA_POOLING_TYPE_CLS; }
  1593. else if (value == "last") { params.pooling_type = LLAMA_POOLING_TYPE_LAST; }
  1594. else if (value == "rank") { params.pooling_type = LLAMA_POOLING_TYPE_RANK; }
  1595. else { throw std::invalid_argument("invalid value"); }
  1596. }
  1597. ).set_examples({LLAMA_EXAMPLE_EMBEDDING, LLAMA_EXAMPLE_RETRIEVAL, LLAMA_EXAMPLE_SERVER}).set_env("LLAMA_ARG_POOLING"));
  1598. add_opt(common_arg(
  1599. {"--attention"}, "{causal,non-causal}",
  1600. "attention type for embeddings, use model default if unspecified",
  1601. [](common_params & params, const std::string & value) {
  1602. /**/ if (value == "causal") { params.attention_type = LLAMA_ATTENTION_TYPE_CAUSAL; }
  1603. else if (value == "non-causal") { params.attention_type = LLAMA_ATTENTION_TYPE_NON_CAUSAL; }
  1604. else { throw std::invalid_argument("invalid value"); }
  1605. }
  1606. ).set_examples({LLAMA_EXAMPLE_EMBEDDING}));
  1607. add_opt(common_arg(
  1608. {"--rope-scaling"}, "{none,linear,yarn}",
  1609. "RoPE frequency scaling method, defaults to linear unless specified by the model",
  1610. [](common_params & params, const std::string & value) {
  1611. /**/ if (value == "none") { params.rope_scaling_type = LLAMA_ROPE_SCALING_TYPE_NONE; }
  1612. else if (value == "linear") { params.rope_scaling_type = LLAMA_ROPE_SCALING_TYPE_LINEAR; }
  1613. else if (value == "yarn") { params.rope_scaling_type = LLAMA_ROPE_SCALING_TYPE_YARN; }
  1614. else { throw std::invalid_argument("invalid value"); }
  1615. }
  1616. ).set_env("LLAMA_ARG_ROPE_SCALING_TYPE"));
  1617. add_opt(common_arg(
  1618. {"--rope-scale"}, "N",
  1619. "RoPE context scaling factor, expands context by a factor of N",
  1620. [](common_params & params, const std::string & value) {
  1621. params.rope_freq_scale = 1.0f / std::stof(value);
  1622. }
  1623. ).set_env("LLAMA_ARG_ROPE_SCALE"));
  1624. add_opt(common_arg(
  1625. {"--rope-freq-base"}, "N",
  1626. "RoPE base frequency, used by NTK-aware scaling (default: loaded from model)",
  1627. [](common_params & params, const std::string & value) {
  1628. params.rope_freq_base = std::stof(value);
  1629. }
  1630. ).set_env("LLAMA_ARG_ROPE_FREQ_BASE"));
  1631. add_opt(common_arg(
  1632. {"--rope-freq-scale"}, "N",
  1633. "RoPE frequency scaling factor, expands context by a factor of 1/N",
  1634. [](common_params & params, const std::string & value) {
  1635. params.rope_freq_scale = std::stof(value);
  1636. }
  1637. ).set_env("LLAMA_ARG_ROPE_FREQ_SCALE"));
  1638. add_opt(common_arg(
  1639. {"--yarn-orig-ctx"}, "N",
  1640. string_format("YaRN: original context size of model (default: %d = model training context size)", params.yarn_orig_ctx),
  1641. [](common_params & params, int value) {
  1642. params.yarn_orig_ctx = value;
  1643. }
  1644. ).set_env("LLAMA_ARG_YARN_ORIG_CTX"));
  1645. add_opt(common_arg(
  1646. {"--yarn-ext-factor"}, "N",
  1647. string_format("YaRN: extrapolation mix factor (default: %.1f, 0.0 = full interpolation)", (double)params.yarn_ext_factor),
  1648. [](common_params & params, const std::string & value) {
  1649. params.yarn_ext_factor = std::stof(value);
  1650. }
  1651. ).set_env("LLAMA_ARG_YARN_EXT_FACTOR"));
  1652. add_opt(common_arg(
  1653. {"--yarn-attn-factor"}, "N",
  1654. string_format("YaRN: scale sqrt(t) or attention magnitude (default: %.1f)", (double)params.yarn_attn_factor),
  1655. [](common_params & params, const std::string & value) {
  1656. params.yarn_attn_factor = std::stof(value);
  1657. }
  1658. ).set_env("LLAMA_ARG_YARN_ATTN_FACTOR"));
  1659. add_opt(common_arg(
  1660. {"--yarn-beta-slow"}, "N",
  1661. string_format("YaRN: high correction dim or alpha (default: %.1f)", (double)params.yarn_beta_slow),
  1662. [](common_params & params, const std::string & value) {
  1663. params.yarn_beta_slow = std::stof(value);
  1664. }
  1665. ).set_env("LLAMA_ARG_YARN_BETA_SLOW"));
  1666. add_opt(common_arg(
  1667. {"--yarn-beta-fast"}, "N",
  1668. string_format("YaRN: low correction dim or beta (default: %.1f)", (double)params.yarn_beta_fast),
  1669. [](common_params & params, const std::string & value) {
  1670. params.yarn_beta_fast = std::stof(value);
  1671. }
  1672. ).set_env("LLAMA_ARG_YARN_BETA_FAST"));
  1673. add_opt(common_arg(
  1674. {"-gan", "--grp-attn-n"}, "N",
  1675. string_format("group-attention factor (default: %d)", params.grp_attn_n),
  1676. [](common_params & params, int value) {
  1677. params.grp_attn_n = value;
  1678. }
  1679. ).set_env("LLAMA_ARG_GRP_ATTN_N").set_examples({LLAMA_EXAMPLE_COMPLETION, LLAMA_EXAMPLE_PASSKEY}));
  1680. add_opt(common_arg(
  1681. {"-gaw", "--grp-attn-w"}, "N",
  1682. string_format("group-attention width (default: %d)", params.grp_attn_w),
  1683. [](common_params & params, int value) {
  1684. params.grp_attn_w = value;
  1685. }
  1686. ).set_env("LLAMA_ARG_GRP_ATTN_W").set_examples({LLAMA_EXAMPLE_COMPLETION}));
  1687. add_opt(common_arg(
  1688. {"-kvo", "--kv-offload"},
  1689. {"-nkvo", "--no-kv-offload"},
  1690. string_format("whether to enable KV cache offloading (default: %s)", params.no_kv_offload ? "disabled" : "enabled"),
  1691. [](common_params & params, bool value) {
  1692. params.no_kv_offload = !value;
  1693. }
  1694. ).set_env("LLAMA_ARG_KV_OFFLOAD"));
  1695. add_opt(common_arg(
  1696. {"--repack"},
  1697. {"-nr", "--no-repack"},
  1698. string_format("whether to enable weight repacking (default: %s)", params.no_extra_bufts ? "disabled" : "enabled"),
  1699. [](common_params & params, bool value) {
  1700. params.no_extra_bufts = !value;
  1701. }
  1702. ).set_env("LLAMA_ARG_REPACK"));
  1703. add_opt(common_arg(
  1704. {"--no-host"},
  1705. "bypass host buffer allowing extra buffers to be used",
  1706. [](common_params & params) {
  1707. params.no_host = true;
  1708. }
  1709. ).set_env("LLAMA_ARG_NO_HOST"));
  1710. add_opt(common_arg(
  1711. {"-ctk", "--cache-type-k"}, "TYPE",
  1712. string_format(
  1713. "KV cache data type for K\n"
  1714. "allowed values: %s\n"
  1715. "(default: %s)",
  1716. get_all_kv_cache_types().c_str(),
  1717. ggml_type_name(params.cache_type_k)
  1718. ),
  1719. [](common_params & params, const std::string & value) {
  1720. params.cache_type_k = kv_cache_type_from_str(value);
  1721. }
  1722. ).set_env("LLAMA_ARG_CACHE_TYPE_K"));
  1723. add_opt(common_arg(
  1724. {"-ctv", "--cache-type-v"}, "TYPE",
  1725. string_format(
  1726. "KV cache data type for V\n"
  1727. "allowed values: %s\n"
  1728. "(default: %s)",
  1729. get_all_kv_cache_types().c_str(),
  1730. ggml_type_name(params.cache_type_v)
  1731. ),
  1732. [](common_params & params, const std::string & value) {
  1733. params.cache_type_v = kv_cache_type_from_str(value);
  1734. }
  1735. ).set_env("LLAMA_ARG_CACHE_TYPE_V"));
  1736. add_opt(common_arg(
  1737. {"--hellaswag"},
  1738. "compute HellaSwag score over random tasks from datafile supplied with -f",
  1739. [](common_params & params) {
  1740. params.hellaswag = true;
  1741. }
  1742. ).set_examples({LLAMA_EXAMPLE_PERPLEXITY}));
  1743. add_opt(common_arg(
  1744. {"--hellaswag-tasks"}, "N",
  1745. string_format("number of tasks to use when computing the HellaSwag score (default: %zu)", params.hellaswag_tasks),
  1746. [](common_params & params, int value) {
  1747. params.hellaswag_tasks = value;
  1748. }
  1749. ).set_examples({LLAMA_EXAMPLE_PERPLEXITY}));
  1750. add_opt(common_arg(
  1751. {"--winogrande"},
  1752. "compute Winogrande score over random tasks from datafile supplied with -f",
  1753. [](common_params & params) {
  1754. params.winogrande = true;
  1755. }
  1756. ).set_examples({LLAMA_EXAMPLE_PERPLEXITY}));
  1757. add_opt(common_arg(
  1758. {"--winogrande-tasks"}, "N",
  1759. string_format("number of tasks to use when computing the Winogrande score (default: %zu)", params.winogrande_tasks),
  1760. [](common_params & params, int value) {
  1761. params.winogrande_tasks = value;
  1762. }
  1763. ).set_examples({LLAMA_EXAMPLE_PERPLEXITY}));
  1764. add_opt(common_arg(
  1765. {"--multiple-choice"},
  1766. "compute multiple choice score over random tasks from datafile supplied with -f",
  1767. [](common_params & params) {
  1768. params.multiple_choice = true;
  1769. }
  1770. ).set_examples({LLAMA_EXAMPLE_PERPLEXITY}));
  1771. add_opt(common_arg(
  1772. {"--multiple-choice-tasks"}, "N",
  1773. string_format("number of tasks to use when computing the multiple choice score (default: %zu)", params.multiple_choice_tasks),
  1774. [](common_params & params, int value) {
  1775. params.multiple_choice_tasks = value;
  1776. }
  1777. ).set_examples({LLAMA_EXAMPLE_PERPLEXITY}));
  1778. add_opt(common_arg(
  1779. {"--kl-divergence"},
  1780. "computes KL-divergence to logits provided via --kl-divergence-base",
  1781. [](common_params & params) {
  1782. params.kl_divergence = true;
  1783. }
  1784. ).set_examples({LLAMA_EXAMPLE_PERPLEXITY}));
  1785. add_opt(common_arg(
  1786. {"--save-all-logits", "--kl-divergence-base"}, "FNAME",
  1787. "set logits file",
  1788. [](common_params & params, const std::string & value) {
  1789. params.logits_file = value;
  1790. }
  1791. ).set_examples({LLAMA_EXAMPLE_PERPLEXITY}));
  1792. add_opt(common_arg(
  1793. {"--ppl-stride"}, "N",
  1794. string_format("stride for perplexity calculation (default: %d)", params.ppl_stride),
  1795. [](common_params & params, int value) {
  1796. params.ppl_stride = value;
  1797. }
  1798. ).set_examples({LLAMA_EXAMPLE_PERPLEXITY}));
  1799. add_opt(common_arg(
  1800. {"--ppl-output-type"}, "<0|1>",
  1801. string_format("output type for perplexity calculation (default: %d)", params.ppl_output_type),
  1802. [](common_params & params, int value) {
  1803. params.ppl_output_type = value;
  1804. }
  1805. ).set_examples({LLAMA_EXAMPLE_PERPLEXITY}));
  1806. add_opt(common_arg(
  1807. {"-dt", "--defrag-thold"}, "N",
  1808. string_format("KV cache defragmentation threshold (DEPRECATED)"),
  1809. [](common_params & params, const std::string & value) {
  1810. GGML_UNUSED(params);
  1811. GGML_UNUSED(value);
  1812. LOG_WRN("DEPRECATED: --defrag-thold is deprecated and no longer necessary to specify\n");
  1813. }
  1814. ).set_env("LLAMA_ARG_DEFRAG_THOLD"));
  1815. if (ex == LLAMA_EXAMPLE_SERVER) {
  1816. // this is to make sure this option appears in the server-specific section of the help message
  1817. add_opt(common_arg(
  1818. {"-np", "--parallel"}, "N",
  1819. string_format("number of server slots (default: %d, -1 = auto)", params.n_parallel),
  1820. [](common_params & params, int value) {
  1821. if (value == 0) {
  1822. throw std::invalid_argument("error: invalid value for n_parallel\n");
  1823. }
  1824. params.n_parallel = value;
  1825. }
  1826. ).set_env("LLAMA_ARG_N_PARALLEL").set_examples({LLAMA_EXAMPLE_SERVER}));
  1827. } else {
  1828. add_opt(common_arg(
  1829. {"-np", "--parallel"}, "N",
  1830. string_format("number of parallel sequences to decode (default: %d)", params.n_parallel),
  1831. [](common_params & params, int value) {
  1832. params.n_parallel = value;
  1833. }
  1834. ).set_env("LLAMA_ARG_N_PARALLEL"));
  1835. }
  1836. add_opt(common_arg(
  1837. {"-ns", "--sequences"}, "N",
  1838. string_format("number of sequences to decode (default: %d)", params.n_sequences),
  1839. [](common_params & params, int value) {
  1840. params.n_sequences = value;
  1841. }
  1842. ).set_examples({LLAMA_EXAMPLE_PARALLEL}));
  1843. add_opt(common_arg(
  1844. {"-cb", "--cont-batching"},
  1845. {"-nocb", "--no-cont-batching"},
  1846. string_format("whether to enable continuous batching (a.k.a dynamic batching) (default: %s)", params.cont_batching ? "enabled" : "disabled"),
  1847. [](common_params & params, bool value) {
  1848. params.cont_batching = value;
  1849. }
  1850. ).set_examples({LLAMA_EXAMPLE_SERVER}).set_env("LLAMA_ARG_CONT_BATCHING"));
  1851. add_opt(common_arg(
  1852. {"-mm", "--mmproj"}, "FILE",
  1853. "path to a multimodal projector file. see tools/mtmd/README.md\n"
  1854. "note: if -hf is used, this argument can be omitted",
  1855. [](common_params & params, const std::string & value) {
  1856. params.mmproj.path = value;
  1857. }
  1858. ).set_examples(mmproj_examples).set_env("LLAMA_ARG_MMPROJ"));
  1859. add_opt(common_arg(
  1860. {"-mmu", "--mmproj-url"}, "URL",
  1861. "URL to a multimodal projector file. see tools/mtmd/README.md",
  1862. [](common_params & params, const std::string & value) {
  1863. params.mmproj.url = value;
  1864. }
  1865. ).set_examples(mmproj_examples).set_env("LLAMA_ARG_MMPROJ_URL"));
  1866. add_opt(common_arg(
  1867. {"--mmproj-auto"},
  1868. {"--no-mmproj", "--no-mmproj-auto"},
  1869. string_format("whether to use multimodal projector file (if available), useful when using -hf (default: %s)", params.no_mmproj ? "disabled" : "enabled"),
  1870. [](common_params & params, bool value) {
  1871. params.no_mmproj = !value;
  1872. }
  1873. ).set_examples(mmproj_examples).set_env("LLAMA_ARG_MMPROJ_AUTO"));
  1874. add_opt(common_arg(
  1875. {"--mmproj-offload"},
  1876. {"--no-mmproj-offload"},
  1877. string_format("whether to enable GPU offloading for multimodal projector (default: %s)", params.mmproj_use_gpu ? "enabled" : "disabled"),
  1878. [](common_params & params, bool value) {
  1879. params.mmproj_use_gpu = value;
  1880. }
  1881. ).set_examples(mmproj_examples).set_env("LLAMA_ARG_MMPROJ_OFFLOAD"));
  1882. add_opt(common_arg(
  1883. {"--image", "--audio"}, "FILE",
  1884. "path to an image or audio file. use with multimodal models, use comma-separated values for multiple files\n",
  1885. [](common_params & params, const std::string & value) {
  1886. for (const auto & item : string_split<std::string>(value, ',')) {
  1887. params.image.emplace_back(item);
  1888. }
  1889. }
  1890. ).set_examples({LLAMA_EXAMPLE_MTMD, LLAMA_EXAMPLE_CLI}));
  1891. add_opt(common_arg(
  1892. {"--image-min-tokens"}, "N",
  1893. "minimum number of tokens each image can take, only used by vision models with dynamic resolution (default: read from model)",
  1894. [](common_params & params, int value) {
  1895. params.image_min_tokens = value;
  1896. }
  1897. ).set_examples(mmproj_examples).set_env("LLAMA_ARG_IMAGE_MIN_TOKENS"));
  1898. add_opt(common_arg(
  1899. {"--image-max-tokens"}, "N",
  1900. "maximum number of tokens each image can take, only used by vision models with dynamic resolution (default: read from model)",
  1901. [](common_params & params, int value) {
  1902. params.image_max_tokens = value;
  1903. }
  1904. ).set_examples(mmproj_examples).set_env("LLAMA_ARG_IMAGE_MAX_TOKENS"));
  1905. if (llama_supports_rpc()) {
  1906. add_opt(common_arg(
  1907. {"--rpc"}, "SERVERS",
  1908. "comma separated list of RPC servers",
  1909. [](common_params & params, const std::string & value) {
  1910. add_rpc_devices(value);
  1911. GGML_UNUSED(params);
  1912. }
  1913. ).set_env("LLAMA_ARG_RPC"));
  1914. }
  1915. add_opt(common_arg(
  1916. {"--mlock"},
  1917. "force system to keep model in RAM rather than swapping or compressing",
  1918. [](common_params & params) {
  1919. params.use_mlock = true;
  1920. }
  1921. ).set_env("LLAMA_ARG_MLOCK"));
  1922. add_opt(common_arg(
  1923. {"--mmap"},
  1924. {"--no-mmap"},
  1925. string_format("whether to memory-map model (if disabled, slower load but may reduce pageouts if not using mlock) (default: %s)", params.use_mmap ? "enabled" : "disabled"),
  1926. [](common_params & params, bool value) {
  1927. params.use_mmap = value;
  1928. }
  1929. ).set_env("LLAMA_ARG_MMAP"));
  1930. add_opt(common_arg(
  1931. {"--numa"}, "TYPE",
  1932. "attempt optimizations that help on some NUMA systems\n"
  1933. "- distribute: spread execution evenly over all nodes\n"
  1934. "- isolate: only spawn threads on CPUs on the node that execution started on\n"
  1935. "- numactl: use the CPU map provided by numactl\n"
  1936. "if run without this previously, it is recommended to drop the system page cache before using this\n"
  1937. "see https://github.com/ggml-org/llama.cpp/issues/1437",
  1938. [](common_params & params, const std::string & value) {
  1939. /**/ if (value == "distribute" || value == "") { params.numa = GGML_NUMA_STRATEGY_DISTRIBUTE; }
  1940. else if (value == "isolate") { params.numa = GGML_NUMA_STRATEGY_ISOLATE; }
  1941. else if (value == "numactl") { params.numa = GGML_NUMA_STRATEGY_NUMACTL; }
  1942. else { throw std::invalid_argument("invalid value"); }
  1943. }
  1944. ).set_env("LLAMA_ARG_NUMA"));
  1945. add_opt(common_arg(
  1946. {"-dev", "--device"}, "<dev1,dev2,..>",
  1947. "comma-separated list of devices to use for offloading (none = don't offload)\n"
  1948. "use --list-devices to see a list of available devices",
  1949. [](common_params & params, const std::string & value) {
  1950. params.devices = parse_device_list(value);
  1951. }
  1952. ).set_env("LLAMA_ARG_DEVICE"));
  1953. add_opt(common_arg(
  1954. {"--list-devices"},
  1955. "print list of available devices and exit",
  1956. [](common_params &) {
  1957. std::vector<ggml_backend_dev_t> devices;
  1958. for (size_t i = 0; i < ggml_backend_dev_count(); ++i) {
  1959. auto * dev = ggml_backend_dev_get(i);
  1960. if (ggml_backend_dev_type(dev) != GGML_BACKEND_DEVICE_TYPE_CPU) {
  1961. devices.push_back(dev);
  1962. }
  1963. }
  1964. printf("Available devices:\n");
  1965. for (auto * dev : devices) {
  1966. size_t free, total;
  1967. ggml_backend_dev_memory(dev, &free, &total);
  1968. printf(" %s: %s (%zu MiB, %zu MiB free)\n", ggml_backend_dev_name(dev), ggml_backend_dev_description(dev), total / 1024 / 1024, free / 1024 / 1024);
  1969. }
  1970. exit(0);
  1971. }
  1972. ));
  1973. add_opt(common_arg(
  1974. {"--override-tensor", "-ot"}, "<tensor name pattern>=<buffer type>,...",
  1975. "override tensor buffer type", [](common_params & params, const std::string & value) {
  1976. parse_tensor_buffer_overrides(value, params.tensor_buft_overrides);
  1977. }
  1978. ));
  1979. add_opt(common_arg(
  1980. {"--override-tensor-draft", "-otd"}, "<tensor name pattern>=<buffer type>,...",
  1981. "override tensor buffer type for draft model", [](common_params & params, const std::string & value) {
  1982. parse_tensor_buffer_overrides(value, params.speculative.tensor_buft_overrides);
  1983. }
  1984. ).set_examples({LLAMA_EXAMPLE_SPECULATIVE, LLAMA_EXAMPLE_SERVER, LLAMA_EXAMPLE_CLI}));
  1985. add_opt(common_arg(
  1986. {"--cpu-moe", "-cmoe"},
  1987. "keep all Mixture of Experts (MoE) weights in the CPU",
  1988. [](common_params & params) {
  1989. params.tensor_buft_overrides.push_back(llm_ffn_exps_cpu_override());
  1990. }
  1991. ).set_env("LLAMA_ARG_CPU_MOE"));
  1992. add_opt(common_arg(
  1993. {"--n-cpu-moe", "-ncmoe"}, "N",
  1994. "keep the Mixture of Experts (MoE) weights of the first N layers in the CPU",
  1995. [](common_params & params, int value) {
  1996. if (value < 0) {
  1997. throw std::invalid_argument("invalid value");
  1998. }
  1999. for (int i = 0; i < value; ++i) {
  2000. // keep strings alive and avoid leaking memory by storing them in a static vector
  2001. static std::list<std::string> buft_overrides;
  2002. buft_overrides.push_back(llm_ffn_exps_block_regex(i));
  2003. params.tensor_buft_overrides.push_back({buft_overrides.back().c_str(), ggml_backend_cpu_buffer_type()});
  2004. }
  2005. }
  2006. ).set_env("LLAMA_ARG_N_CPU_MOE"));
  2007. add_opt(common_arg(
  2008. {"--cpu-moe-draft", "-cmoed"},
  2009. "keep all Mixture of Experts (MoE) weights in the CPU for the draft model",
  2010. [](common_params & params) {
  2011. params.speculative.tensor_buft_overrides.push_back(llm_ffn_exps_cpu_override());
  2012. }
  2013. ).set_examples({LLAMA_EXAMPLE_SPECULATIVE, LLAMA_EXAMPLE_SERVER, LLAMA_EXAMPLE_CLI}).set_env("LLAMA_ARG_CPU_MOE_DRAFT"));
  2014. add_opt(common_arg(
  2015. {"--n-cpu-moe-draft", "-ncmoed"}, "N",
  2016. "keep the Mixture of Experts (MoE) weights of the first N layers in the CPU for the draft model",
  2017. [](common_params & params, int value) {
  2018. if (value < 0) {
  2019. throw std::invalid_argument("invalid value");
  2020. }
  2021. for (int i = 0; i < value; ++i) {
  2022. static std::list<std::string> buft_overrides_draft;
  2023. buft_overrides_draft.push_back(llm_ffn_exps_block_regex(i));
  2024. params.speculative.tensor_buft_overrides.push_back({buft_overrides_draft.back().c_str(), ggml_backend_cpu_buffer_type()});
  2025. }
  2026. }
  2027. ).set_examples({LLAMA_EXAMPLE_SPECULATIVE, LLAMA_EXAMPLE_SERVER, LLAMA_EXAMPLE_CLI}).set_env("LLAMA_ARG_N_CPU_MOE_DRAFT"));
  2028. add_opt(common_arg(
  2029. {"-ngl", "--gpu-layers", "--n-gpu-layers"}, "N",
  2030. string_format("max. number of layers to store in VRAM (default: %d)", params.n_gpu_layers),
  2031. [](common_params & params, int value) {
  2032. params.n_gpu_layers = value;
  2033. if (!llama_supports_gpu_offload()) {
  2034. fprintf(stderr, "warning: no usable GPU found, --gpu-layers option will be ignored\n");
  2035. fprintf(stderr, "warning: one possible reason is that llama.cpp was compiled without GPU support\n");
  2036. fprintf(stderr, "warning: consult docs/build.md for compilation instructions\n");
  2037. }
  2038. }
  2039. ).set_env("LLAMA_ARG_N_GPU_LAYERS"));
  2040. add_opt(common_arg(
  2041. {"-sm", "--split-mode"}, "{none,layer,row}",
  2042. "how to split the model across multiple GPUs, one of:\n"
  2043. "- none: use one GPU only\n"
  2044. "- layer (default): split layers and KV across GPUs\n"
  2045. "- row: split rows across GPUs",
  2046. [](common_params & params, const std::string & value) {
  2047. std::string arg_next = value;
  2048. if (arg_next == "none") {
  2049. params.split_mode = LLAMA_SPLIT_MODE_NONE;
  2050. } else if (arg_next == "layer") {
  2051. params.split_mode = LLAMA_SPLIT_MODE_LAYER;
  2052. } else if (arg_next == "row") {
  2053. params.split_mode = LLAMA_SPLIT_MODE_ROW;
  2054. } else {
  2055. throw std::invalid_argument("invalid value");
  2056. }
  2057. if (!llama_supports_gpu_offload()) {
  2058. fprintf(stderr, "warning: llama.cpp was compiled without support for GPU offload. Setting the split mode has no effect.\n");
  2059. }
  2060. }
  2061. ).set_env("LLAMA_ARG_SPLIT_MODE"));
  2062. add_opt(common_arg(
  2063. {"-ts", "--tensor-split"}, "N0,N1,N2,...",
  2064. "fraction of the model to offload to each GPU, comma-separated list of proportions, e.g. 3,1",
  2065. [](common_params & params, const std::string & value) {
  2066. std::string arg_next = value;
  2067. // split string by , and /
  2068. const std::regex regex{ R"([,/]+)" };
  2069. std::sregex_token_iterator it{ arg_next.begin(), arg_next.end(), regex, -1 };
  2070. std::vector<std::string> split_arg{ it, {} };
  2071. if (split_arg.size() >= llama_max_devices()) {
  2072. throw std::invalid_argument(
  2073. string_format("got %d input configs, but system only has %d devices", (int)split_arg.size(), (int)llama_max_devices())
  2074. );
  2075. }
  2076. for (size_t i = 0; i < llama_max_devices(); ++i) {
  2077. if (i < split_arg.size()) {
  2078. params.tensor_split[i] = std::stof(split_arg[i]);
  2079. } else {
  2080. params.tensor_split[i] = 0.0f;
  2081. }
  2082. }
  2083. if (!llama_supports_gpu_offload()) {
  2084. fprintf(stderr, "warning: llama.cpp was compiled without support for GPU offload. Setting a tensor split has no effect.\n");
  2085. }
  2086. }
  2087. ).set_env("LLAMA_ARG_TENSOR_SPLIT"));
  2088. add_opt(common_arg(
  2089. {"-mg", "--main-gpu"}, "INDEX",
  2090. string_format("the GPU to use for the model (with split-mode = none), or for intermediate results and KV (with split-mode = row) (default: %d)", params.main_gpu),
  2091. [](common_params & params, int value) {
  2092. params.main_gpu = value;
  2093. if (!llama_supports_gpu_offload()) {
  2094. fprintf(stderr, "warning: llama.cpp was compiled without support for GPU offload. Setting the main GPU has no effect.\n");
  2095. }
  2096. }
  2097. ).set_env("LLAMA_ARG_MAIN_GPU"));
  2098. add_opt(common_arg(
  2099. { "-fit", "--fit" }, "[on|off]",
  2100. string_format("whether to adjust unset arguments to fit in device memory ('on' or 'off', default: '%s')", params.fit_params ? "on" : "off"),
  2101. [](common_params & params, const std::string & value) {
  2102. if (is_truthy(value)) {
  2103. params.fit_params = true;
  2104. } else if (is_falsey(value)) {
  2105. params.fit_params = false;
  2106. } else {
  2107. throw std::runtime_error(
  2108. string_format("error: unkown value for --fit: '%s'\n", value.c_str()));
  2109. }
  2110. }
  2111. ).set_env("LLAMA_ARG_FIT"));
  2112. add_opt(common_arg(
  2113. { "-fitt", "--fit-target" }, "MiB",
  2114. string_format("target margin per device for --fit option, default: %zu", params.fit_params_target/(1024*1024)),
  2115. [](common_params & params, int value) {
  2116. params.fit_params_target = value * size_t(1024*1024);
  2117. }
  2118. ).set_env("LLAMA_ARG_FIT_TARGET"));
  2119. add_opt(common_arg(
  2120. { "-fitc", "--fit-ctx" }, "N",
  2121. string_format("minimum ctx size that can be set by --fit option, default: %" PRIu32, params.fit_params_min_ctx),
  2122. [](common_params & params, int value) {
  2123. params.fit_params_min_ctx = value;
  2124. }
  2125. ).set_env("LLAMA_ARG_FIT_CTX"));
  2126. add_opt(common_arg(
  2127. {"--check-tensors"},
  2128. string_format("check model tensor data for invalid values (default: %s)", params.check_tensors ? "true" : "false"),
  2129. [](common_params & params) {
  2130. params.check_tensors = true;
  2131. }
  2132. ));
  2133. add_opt(common_arg(
  2134. {"--override-kv"}, "KEY=TYPE:VALUE,...",
  2135. "advanced option to override model metadata by key. to specify multiple overrides, either use comma-separated or repeat this argument.\n"
  2136. "types: int, float, bool, str. example: --override-kv tokenizer.ggml.add_bos_token=bool:false,tokenizer.ggml.add_eos_token=bool:false",
  2137. [](common_params & params, const std::string & value) {
  2138. std::vector<std::string> kv_overrides;
  2139. std::string current;
  2140. bool escaping = false;
  2141. for (const char c : value) {
  2142. if (escaping) {
  2143. current.push_back(c);
  2144. escaping = false;
  2145. } else if (c == '\\') {
  2146. escaping = true;
  2147. } else if (c == ',') {
  2148. kv_overrides.push_back(current);
  2149. current.clear();
  2150. } else {
  2151. current.push_back(c);
  2152. }
  2153. }
  2154. if (escaping) {
  2155. current.push_back('\\');
  2156. }
  2157. kv_overrides.push_back(current);
  2158. for (const auto & kv_override : kv_overrides) {
  2159. if (!string_parse_kv_override(kv_override.c_str(), params.kv_overrides)) {
  2160. throw std::runtime_error(string_format("error: Invalid type for KV override: %s\n", kv_override.c_str()));
  2161. }
  2162. }
  2163. }
  2164. ));
  2165. add_opt(common_arg(
  2166. {"--op-offload"},
  2167. {"--no-op-offload"},
  2168. string_format("whether to offload host tensor operations to device (default: %s)", params.no_op_offload ? "false" : "true"),
  2169. [](common_params & params, bool value) {
  2170. params.no_op_offload = !value;
  2171. }
  2172. ));
  2173. add_opt(common_arg(
  2174. {"--lora"}, "FNAME",
  2175. "path to LoRA adapter (use comma-separated values to load multiple adapters)",
  2176. [](common_params & params, const std::string & value) {
  2177. for (const auto & item : string_split<std::string>(value, ',')) {
  2178. params.lora_adapters.push_back({ item, 1.0, "", "", nullptr });
  2179. }
  2180. }
  2181. // we define this arg on both COMMON and EXPORT_LORA, so when showing help message of export-lora, it will be categorized as "example-specific" arg
  2182. ).set_examples({LLAMA_EXAMPLE_COMMON, LLAMA_EXAMPLE_EXPORT_LORA}));
  2183. add_opt(common_arg(
  2184. {"--lora-scaled"}, "FNAME:SCALE,...",
  2185. "path to LoRA adapter with user defined scaling (format: FNAME:SCALE,...)\n"
  2186. "note: use comma-separated values",
  2187. [](common_params & params, const std::string & value) {
  2188. for (const auto & item : string_split<std::string>(value, ',')) {
  2189. auto parts = string_split<std::string>(item, ':');
  2190. if (parts.size() != 2) {
  2191. throw std::invalid_argument("lora-scaled format: FNAME:SCALE");
  2192. }
  2193. params.lora_adapters.push_back({ parts[0], std::stof(parts[1]), "", "", nullptr });
  2194. }
  2195. }
  2196. // we define this arg on both COMMON and EXPORT_LORA, so when showing help message of export-lora, it will be categorized as "example-specific" arg
  2197. ).set_examples({LLAMA_EXAMPLE_COMMON, LLAMA_EXAMPLE_EXPORT_LORA}));
  2198. add_opt(common_arg(
  2199. {"--control-vector"}, "FNAME",
  2200. "add a control vector\nnote: use comma-separated values to add multiple control vectors",
  2201. [](common_params & params, const std::string & value) {
  2202. for (const auto & item : string_split<std::string>(value, ',')) {
  2203. params.control_vectors.push_back({ 1.0f, item, });
  2204. }
  2205. }
  2206. ));
  2207. add_opt(common_arg(
  2208. {"--control-vector-scaled"}, "FNAME:SCALE,...",
  2209. "add a control vector with user defined scaling SCALE\n"
  2210. "note: use comma-separated values (format: FNAME:SCALE,...)",
  2211. [](common_params & params, const std::string & value) {
  2212. for (const auto & item : string_split<std::string>(value, ',')) {
  2213. auto parts = string_split<std::string>(item, ':');
  2214. if (parts.size() != 2) {
  2215. throw std::invalid_argument("control-vector-scaled format: FNAME:SCALE");
  2216. }
  2217. params.control_vectors.push_back({ std::stof(parts[1]), parts[0] });
  2218. }
  2219. }
  2220. ));
  2221. add_opt(common_arg(
  2222. {"--control-vector-layer-range"}, "START", "END",
  2223. "layer range to apply the control vector(s) to, start and end inclusive",
  2224. [](common_params & params, const std::string & start, const std::string & end) {
  2225. params.control_vector_layer_start = std::stoi(start);
  2226. params.control_vector_layer_end = std::stoi(end);
  2227. }
  2228. ));
  2229. add_opt(common_arg(
  2230. {"-a", "--alias"}, "STRING",
  2231. "set alias for model name (to be used by REST API)",
  2232. [](common_params & params, const std::string & value) {
  2233. params.model_alias = value;
  2234. }
  2235. ).set_examples({LLAMA_EXAMPLE_SERVER}).set_env("LLAMA_ARG_ALIAS"));
  2236. add_opt(common_arg(
  2237. {"-m", "--model"}, "FNAME",
  2238. ex == LLAMA_EXAMPLE_EXPORT_LORA
  2239. ? "model path from which to load base model"
  2240. : "model path to load",
  2241. [](common_params & params, const std::string & value) {
  2242. params.model.path = value;
  2243. }
  2244. ).set_examples({LLAMA_EXAMPLE_COMMON, LLAMA_EXAMPLE_EXPORT_LORA}).set_env("LLAMA_ARG_MODEL"));
  2245. add_opt(common_arg(
  2246. {"-mu", "--model-url"}, "MODEL_URL",
  2247. "model download url (default: unused)",
  2248. [](common_params & params, const std::string & value) {
  2249. params.model.url = value;
  2250. }
  2251. ).set_env("LLAMA_ARG_MODEL_URL"));
  2252. add_opt(common_arg(
  2253. { "-dr", "--docker-repo" }, "[<repo>/]<model>[:quant]",
  2254. "Docker Hub model repository. repo is optional, default to ai/. quant is optional, default to :latest.\n"
  2255. "example: gemma3\n"
  2256. "(default: unused)",
  2257. [](common_params & params, const std::string & value) {
  2258. params.model.docker_repo = value;
  2259. }
  2260. ).set_env("LLAMA_ARG_DOCKER_REPO"));
  2261. add_opt(common_arg(
  2262. {"-hf", "-hfr", "--hf-repo"}, "<user>/<model>[:quant]",
  2263. "Hugging Face model repository; quant is optional, case-insensitive, default to Q4_K_M, or falls back to the first file in the repo if Q4_K_M doesn't exist.\n"
  2264. "mmproj is also downloaded automatically if available. to disable, add --no-mmproj\n"
  2265. "example: unsloth/phi-4-GGUF:q4_k_m\n"
  2266. "(default: unused)",
  2267. [](common_params & params, const std::string & value) {
  2268. params.model.hf_repo = value;
  2269. }
  2270. ).set_env("LLAMA_ARG_HF_REPO"));
  2271. add_opt(common_arg(
  2272. {"-hfd", "-hfrd", "--hf-repo-draft"}, "<user>/<model>[:quant]",
  2273. "Same as --hf-repo, but for the draft model (default: unused)",
  2274. [](common_params & params, const std::string & value) {
  2275. params.speculative.model.hf_repo = value;
  2276. }
  2277. ).set_env("LLAMA_ARG_HFD_REPO"));
  2278. add_opt(common_arg(
  2279. {"-hff", "--hf-file"}, "FILE",
  2280. "Hugging Face model file. If specified, it will override the quant in --hf-repo (default: unused)",
  2281. [](common_params & params, const std::string & value) {
  2282. params.model.hf_file = value;
  2283. }
  2284. ).set_env("LLAMA_ARG_HF_FILE"));
  2285. add_opt(common_arg(
  2286. {"-hfv", "-hfrv", "--hf-repo-v"}, "<user>/<model>[:quant]",
  2287. "Hugging Face model repository for the vocoder model (default: unused)",
  2288. [](common_params & params, const std::string & value) {
  2289. params.vocoder.model.hf_repo = value;
  2290. }
  2291. ).set_env("LLAMA_ARG_HF_REPO_V"));
  2292. add_opt(common_arg(
  2293. {"-hffv", "--hf-file-v"}, "FILE",
  2294. "Hugging Face model file for the vocoder model (default: unused)",
  2295. [](common_params & params, const std::string & value) {
  2296. params.vocoder.model.hf_file = value;
  2297. }
  2298. ).set_env("LLAMA_ARG_HF_FILE_V"));
  2299. add_opt(common_arg(
  2300. {"-hft", "--hf-token"}, "TOKEN",
  2301. "Hugging Face access token (default: value from HF_TOKEN environment variable)",
  2302. [](common_params & params, const std::string & value) {
  2303. params.hf_token = value;
  2304. }
  2305. ).set_env("HF_TOKEN"));
  2306. add_opt(common_arg(
  2307. {"--context-file"}, "FNAME",
  2308. "file to load context from (use comma-separated values to specify multiple files)",
  2309. [](common_params & params, const std::string & value) {
  2310. for (const auto & item : string_split<std::string>(value, ',')) {
  2311. std::ifstream file(item, std::ios::binary);
  2312. if (!file) {
  2313. throw std::runtime_error(string_format("error: failed to open file '%s'\n", item.c_str()));
  2314. }
  2315. params.context_files.push_back(item);
  2316. }
  2317. }
  2318. ).set_examples({LLAMA_EXAMPLE_RETRIEVAL}));
  2319. add_opt(common_arg(
  2320. {"--chunk-size"}, "N",
  2321. string_format("minimum length of embedded text chunks (default: %d)", params.chunk_size),
  2322. [](common_params & params, int value) {
  2323. params.chunk_size = value;
  2324. }
  2325. ).set_examples({LLAMA_EXAMPLE_RETRIEVAL}));
  2326. add_opt(common_arg(
  2327. {"--chunk-separator"}, "STRING",
  2328. string_format("separator between chunks (default: '%s')", params.chunk_separator.c_str()),
  2329. [](common_params & params, const std::string & value) {
  2330. params.chunk_separator = value;
  2331. }
  2332. ).set_examples({LLAMA_EXAMPLE_RETRIEVAL}));
  2333. add_opt(common_arg(
  2334. {"--junk"}, "N",
  2335. string_format("number of times to repeat the junk text (default: %d)", params.n_junk),
  2336. [](common_params & params, int value) {
  2337. params.n_junk = value;
  2338. }
  2339. ).set_examples({LLAMA_EXAMPLE_PASSKEY, LLAMA_EXAMPLE_PARALLEL}));
  2340. add_opt(common_arg(
  2341. {"--pos"}, "N",
  2342. string_format("position of the passkey in the junk text (default: %d)", params.i_pos),
  2343. [](common_params & params, int value) {
  2344. params.i_pos = value;
  2345. }
  2346. ).set_examples({LLAMA_EXAMPLE_PASSKEY}));
  2347. add_opt(common_arg(
  2348. {"-o", "--output", "--output-file"}, "FNAME",
  2349. string_format("output file (default: '%s')", params.out_file.c_str()),
  2350. [](common_params & params, const std::string & value) {
  2351. params.out_file = value;
  2352. }
  2353. ).set_examples({LLAMA_EXAMPLE_IMATRIX, LLAMA_EXAMPLE_CVECTOR_GENERATOR, LLAMA_EXAMPLE_EXPORT_LORA, LLAMA_EXAMPLE_TTS, LLAMA_EXAMPLE_FINETUNE}));
  2354. add_opt(common_arg(
  2355. {"-ofreq", "--output-frequency"}, "N",
  2356. string_format("output the imatrix every N iterations (default: %d)", params.n_out_freq),
  2357. [](common_params & params, int value) {
  2358. params.n_out_freq = value;
  2359. }
  2360. ).set_examples({LLAMA_EXAMPLE_IMATRIX}));
  2361. add_opt(common_arg(
  2362. {"--output-format"}, "{gguf,dat}",
  2363. string_format("output format for imatrix file (default: %s)", params.imat_dat > 0 ? "dat" : "gguf"),
  2364. [](common_params & params, const std::string & value) {
  2365. /**/ if (value == "gguf") { params.imat_dat = -1; }
  2366. else if (value == "dat") { params.imat_dat = 1; }
  2367. else { throw std::invalid_argument("invalid output format"); }
  2368. }
  2369. ).set_examples({LLAMA_EXAMPLE_IMATRIX}));
  2370. add_opt(common_arg(
  2371. {"--save-frequency"}, "N",
  2372. string_format("save an imatrix copy every N iterations (default: %d)", params.n_save_freq),
  2373. [](common_params & params, int value) {
  2374. params.n_save_freq = value;
  2375. }
  2376. ).set_examples({LLAMA_EXAMPLE_IMATRIX}));
  2377. add_opt(common_arg(
  2378. {"--process-output"},
  2379. string_format("collect data for the output tensor (default: %s)", params.process_output ? "true" : "false"),
  2380. [](common_params & params) {
  2381. params.process_output = true;
  2382. }
  2383. ).set_examples({LLAMA_EXAMPLE_IMATRIX}));
  2384. add_opt(common_arg(
  2385. {"--ppl"},
  2386. {"--no-ppl"},
  2387. string_format("whether to compute perplexity (default: %s)", params.compute_ppl ? "true" : "false"),
  2388. [](common_params & params, bool value) {
  2389. params.compute_ppl = value;
  2390. }
  2391. ).set_examples({LLAMA_EXAMPLE_IMATRIX}));
  2392. add_opt(common_arg(
  2393. {"--chunk", "--from-chunk"}, "N",
  2394. string_format("start processing the input from chunk N (default: %d)", params.i_chunk),
  2395. [](common_params & params, int value) {
  2396. params.i_chunk = value;
  2397. }
  2398. ).set_examples({LLAMA_EXAMPLE_IMATRIX}));
  2399. add_opt(common_arg(
  2400. {"--show-statistics"},
  2401. string_format("show imatrix statistics and then exit (default: %s)", params.show_statistics ? "true" : "false"),
  2402. [](common_params & params) {
  2403. params.show_statistics = true;
  2404. }
  2405. ).set_examples({LLAMA_EXAMPLE_IMATRIX}));
  2406. add_opt(common_arg(
  2407. {"--parse-special"},
  2408. string_format("parse special tokens (chat, tool, etc) (default: %s)", params.parse_special ? "true" : "false"),
  2409. [](common_params & params) {
  2410. params.parse_special = true;
  2411. }
  2412. ).set_examples({LLAMA_EXAMPLE_IMATRIX}));
  2413. add_opt(common_arg(
  2414. {"-pps"},
  2415. string_format("is the prompt shared across parallel sequences (default: %s)", params.is_pp_shared ? "true" : "false"),
  2416. [](common_params & params) {
  2417. params.is_pp_shared = true;
  2418. }
  2419. ).set_examples({LLAMA_EXAMPLE_BENCH, LLAMA_EXAMPLE_PARALLEL}));
  2420. add_opt(common_arg(
  2421. {"-tgs"},
  2422. string_format("is the text generation separated across the different sequences (default: %s)", params.is_tg_separate ? "true" : "false"),
  2423. [](common_params & params) {
  2424. params.is_tg_separate = true;
  2425. }
  2426. ).set_examples({LLAMA_EXAMPLE_BENCH, LLAMA_EXAMPLE_PARALLEL}));
  2427. add_opt(common_arg(
  2428. {"-npp"}, "n0,n1,...",
  2429. "number of prompt tokens",
  2430. [](common_params & params, const std::string & value) {
  2431. auto p = string_split<int>(value, ',');
  2432. params.n_pp.insert(params.n_pp.end(), p.begin(), p.end());
  2433. }
  2434. ).set_examples({LLAMA_EXAMPLE_BENCH}));
  2435. add_opt(common_arg(
  2436. {"-ntg"}, "n0,n1,...",
  2437. "number of text generation tokens",
  2438. [](common_params & params, const std::string & value) {
  2439. auto p = string_split<int>(value, ',');
  2440. params.n_tg.insert(params.n_tg.end(), p.begin(), p.end());
  2441. }
  2442. ).set_examples({LLAMA_EXAMPLE_BENCH}));
  2443. add_opt(common_arg(
  2444. {"-npl"}, "n0,n1,...",
  2445. "number of parallel prompts",
  2446. [](common_params & params, const std::string & value) {
  2447. auto p = string_split<int>(value, ',');
  2448. params.n_pl.insert(params.n_pl.end(), p.begin(), p.end());
  2449. }
  2450. ).set_examples({LLAMA_EXAMPLE_BENCH}));
  2451. add_opt(common_arg(
  2452. {"--embd-normalize"}, "N",
  2453. string_format("normalisation for embeddings (default: %d) (-1=none, 0=max absolute int16, 1=taxicab, 2=euclidean, >2=p-norm)", params.embd_normalize),
  2454. [](common_params & params, int value) {
  2455. params.embd_normalize = value;
  2456. }
  2457. ).set_examples({LLAMA_EXAMPLE_EMBEDDING}));
  2458. add_opt(common_arg(
  2459. {"--embd-output-format"}, "FORMAT",
  2460. "empty = default, \"array\" = [[],[]...], \"json\" = openai style, \"json+\" = same \"json\" + cosine similarity matrix, \"raw\" = plain whitespace-delimited output (one embedding per line)",
  2461. [](common_params & params, const std::string & value) {
  2462. params.embd_out = value;
  2463. }
  2464. ).set_examples({LLAMA_EXAMPLE_EMBEDDING}));
  2465. add_opt(common_arg(
  2466. {"--embd-separator"}, "STRING",
  2467. "separator of embeddings (default \\n) for example \"<#sep#>\"",
  2468. [](common_params & params, const std::string & value) {
  2469. params.embd_sep = value;
  2470. }
  2471. ).set_examples({LLAMA_EXAMPLE_EMBEDDING}));
  2472. add_opt(common_arg(
  2473. {"--cls-separator"}, "STRING",
  2474. "separator of classification sequences (default \\t) for example \"<#seq#>\"",
  2475. [](common_params & params, const std::string & value) {
  2476. params.cls_sep = value;
  2477. }
  2478. ).set_examples({LLAMA_EXAMPLE_EMBEDDING}));
  2479. add_opt(common_arg(
  2480. {"--host"}, "HOST",
  2481. string_format("ip address to listen, or bind to an UNIX socket if the address ends with .sock (default: %s)", params.hostname.c_str()),
  2482. [](common_params & params, const std::string & value) {
  2483. params.hostname = value;
  2484. }
  2485. ).set_examples({LLAMA_EXAMPLE_SERVER}).set_env("LLAMA_ARG_HOST"));
  2486. add_opt(common_arg(
  2487. {"--port"}, "PORT",
  2488. string_format("port to listen (default: %d)", params.port),
  2489. [](common_params & params, int value) {
  2490. params.port = value;
  2491. }
  2492. ).set_examples({LLAMA_EXAMPLE_SERVER}).set_env("LLAMA_ARG_PORT"));
  2493. add_opt(common_arg(
  2494. {"--path"}, "PATH",
  2495. string_format("path to serve static files from (default: %s)", params.public_path.c_str()),
  2496. [](common_params & params, const std::string & value) {
  2497. params.public_path = value;
  2498. }
  2499. ).set_examples({LLAMA_EXAMPLE_SERVER}).set_env("LLAMA_ARG_STATIC_PATH"));
  2500. add_opt(common_arg(
  2501. {"--api-prefix"}, "PREFIX",
  2502. string_format("prefix path the server serves from, without the trailing slash (default: %s)", params.api_prefix.c_str()),
  2503. [](common_params & params, const std::string & value) {
  2504. params.api_prefix = value;
  2505. }
  2506. ).set_examples({LLAMA_EXAMPLE_SERVER}).set_env("LLAMA_ARG_API_PREFIX"));
  2507. add_opt(common_arg(
  2508. {"--webui-config"}, "JSON",
  2509. "JSON that provides default WebUI settings (overrides WebUI defaults)",
  2510. [](common_params & params, const std::string & value) {
  2511. params.webui_config_json = value;
  2512. }
  2513. ).set_examples({LLAMA_EXAMPLE_SERVER}).set_env("LLAMA_ARG_WEBUI_CONFIG"));
  2514. add_opt(common_arg(
  2515. {"--webui-config-file"}, "PATH",
  2516. "JSON file that provides default WebUI settings (overrides WebUI defaults)",
  2517. [](common_params & params, const std::string & value) {
  2518. params.webui_config_json = read_file(value);
  2519. }
  2520. ).set_examples({LLAMA_EXAMPLE_SERVER}).set_env("LLAMA_ARG_WEBUI_CONFIG_FILE"));
  2521. add_opt(common_arg(
  2522. {"--webui"},
  2523. {"--no-webui"},
  2524. string_format("whether to enable the Web UI (default: %s)", params.webui ? "enabled" : "disabled"),
  2525. [](common_params & params, bool value) {
  2526. params.webui = value;
  2527. }
  2528. ).set_examples({LLAMA_EXAMPLE_SERVER}).set_env("LLAMA_ARG_WEBUI"));
  2529. add_opt(common_arg(
  2530. {"--embedding", "--embeddings"},
  2531. string_format("restrict to only support embedding use case; use only with dedicated embedding models (default: %s)", params.embedding ? "enabled" : "disabled"),
  2532. [](common_params & params) {
  2533. params.embedding = true;
  2534. }
  2535. ).set_examples({LLAMA_EXAMPLE_SERVER}).set_env("LLAMA_ARG_EMBEDDINGS"));
  2536. add_opt(common_arg(
  2537. {"--reranking", "--rerank"},
  2538. string_format("enable reranking endpoint on server (default: %s)", "disabled"),
  2539. [](common_params & params) {
  2540. params.embedding = true;
  2541. params.pooling_type = LLAMA_POOLING_TYPE_RANK;
  2542. }
  2543. ).set_examples({LLAMA_EXAMPLE_SERVER}).set_env("LLAMA_ARG_RERANKING"));
  2544. add_opt(common_arg(
  2545. {"--api-key"}, "KEY",
  2546. "API key to use for authentication (default: none)",
  2547. [](common_params & params, const std::string & value) {
  2548. params.api_keys.push_back(value);
  2549. }
  2550. ).set_examples({LLAMA_EXAMPLE_SERVER}).set_env("LLAMA_API_KEY"));
  2551. add_opt(common_arg(
  2552. {"--api-key-file"}, "FNAME",
  2553. "path to file containing API keys (default: none)",
  2554. [](common_params & params, const std::string & value) {
  2555. std::ifstream key_file(value);
  2556. if (!key_file) {
  2557. throw std::runtime_error(string_format("error: failed to open file '%s'\n", value.c_str()));
  2558. }
  2559. std::string key;
  2560. while (std::getline(key_file, key)) {
  2561. if (!key.empty()) {
  2562. params.api_keys.push_back(key);
  2563. }
  2564. }
  2565. key_file.close();
  2566. }
  2567. ).set_examples({LLAMA_EXAMPLE_SERVER}));
  2568. add_opt(common_arg(
  2569. {"--ssl-key-file"}, "FNAME",
  2570. "path to file a PEM-encoded SSL private key",
  2571. [](common_params & params, const std::string & value) {
  2572. params.ssl_file_key = value;
  2573. }
  2574. ).set_examples({LLAMA_EXAMPLE_SERVER}).set_env("LLAMA_ARG_SSL_KEY_FILE"));
  2575. add_opt(common_arg(
  2576. {"--ssl-cert-file"}, "FNAME",
  2577. "path to file a PEM-encoded SSL certificate",
  2578. [](common_params & params, const std::string & value) {
  2579. params.ssl_file_cert = value;
  2580. }
  2581. ).set_examples({LLAMA_EXAMPLE_SERVER}).set_env("LLAMA_ARG_SSL_CERT_FILE"));
  2582. add_opt(common_arg(
  2583. {"--chat-template-kwargs"}, "STRING",
  2584. string_format("sets additional params for the json template parser"),
  2585. [](common_params & params, const std::string & value) {
  2586. auto parsed = json::parse(value);
  2587. for (const auto & item : parsed.items()) {
  2588. params.default_template_kwargs[item.key()] = item.value().dump();
  2589. }
  2590. }
  2591. ).set_examples({LLAMA_EXAMPLE_SERVER, LLAMA_EXAMPLE_CLI}).set_env("LLAMA_CHAT_TEMPLATE_KWARGS"));
  2592. add_opt(common_arg(
  2593. {"-to", "--timeout"}, "N",
  2594. string_format("server read/write timeout in seconds (default: %d)", params.timeout_read),
  2595. [](common_params & params, int value) {
  2596. params.timeout_read = value;
  2597. params.timeout_write = value;
  2598. }
  2599. ).set_examples({LLAMA_EXAMPLE_SERVER}).set_env("LLAMA_ARG_TIMEOUT"));
  2600. add_opt(common_arg(
  2601. {"--threads-http"}, "N",
  2602. string_format("number of threads used to process HTTP requests (default: %d)", params.n_threads_http),
  2603. [](common_params & params, int value) {
  2604. params.n_threads_http = value;
  2605. }
  2606. ).set_examples({LLAMA_EXAMPLE_SERVER}).set_env("LLAMA_ARG_THREADS_HTTP"));
  2607. add_opt(common_arg(
  2608. {"--cache-reuse"}, "N",
  2609. string_format(
  2610. "min chunk size to attempt reusing from the cache via KV shifting (default: %d)\n"
  2611. "[(card)](https://ggml.ai/f0.png)", params.n_cache_reuse
  2612. ),
  2613. [](common_params & params, int value) {
  2614. params.n_cache_reuse = value;
  2615. }
  2616. ).set_examples({LLAMA_EXAMPLE_SERVER}).set_env("LLAMA_ARG_CACHE_REUSE"));
  2617. add_opt(common_arg(
  2618. {"--metrics"},
  2619. string_format("enable prometheus compatible metrics endpoint (default: %s)", params.endpoint_metrics ? "enabled" : "disabled"),
  2620. [](common_params & params) {
  2621. params.endpoint_metrics = true;
  2622. }
  2623. ).set_examples({LLAMA_EXAMPLE_SERVER}).set_env("LLAMA_ARG_ENDPOINT_METRICS"));
  2624. add_opt(common_arg(
  2625. {"--props"},
  2626. string_format("enable changing global properties via POST /props (default: %s)", params.endpoint_props ? "enabled" : "disabled"),
  2627. [](common_params & params) {
  2628. params.endpoint_props = true;
  2629. }
  2630. ).set_examples({LLAMA_EXAMPLE_SERVER}).set_env("LLAMA_ARG_ENDPOINT_PROPS"));
  2631. add_opt(common_arg(
  2632. {"--slots"},
  2633. {"--no-slots"},
  2634. string_format("expose slots monitoring endpoint (default: %s)", params.endpoint_slots ? "enabled" : "disabled"),
  2635. [](common_params & params, bool value) {
  2636. params.endpoint_slots = value;
  2637. }
  2638. ).set_examples({LLAMA_EXAMPLE_SERVER}).set_env("LLAMA_ARG_ENDPOINT_SLOTS"));
  2639. add_opt(common_arg(
  2640. {"--slot-save-path"}, "PATH",
  2641. "path to save slot kv cache (default: disabled)",
  2642. [](common_params & params, const std::string & value) {
  2643. params.slot_save_path = value;
  2644. if (!fs_is_directory(params.slot_save_path)) {
  2645. throw std::invalid_argument("not a directory: " + value);
  2646. }
  2647. // if doesn't end with DIRECTORY_SEPARATOR, add it
  2648. if (!params.slot_save_path.empty() && params.slot_save_path[params.slot_save_path.size() - 1] != DIRECTORY_SEPARATOR) {
  2649. params.slot_save_path += DIRECTORY_SEPARATOR;
  2650. }
  2651. }
  2652. ).set_examples({LLAMA_EXAMPLE_SERVER}));
  2653. add_opt(common_arg(
  2654. {"--media-path"}, "PATH",
  2655. "directory for loading local media files; files can be accessed via file:// URLs using relative paths (default: disabled)",
  2656. [](common_params & params, const std::string & value) {
  2657. params.media_path = value;
  2658. if (!fs_is_directory(params.media_path)) {
  2659. throw std::invalid_argument("not a directory: " + value);
  2660. }
  2661. // if doesn't end with DIRECTORY_SEPARATOR, add it
  2662. if (!params.media_path.empty() && params.media_path[params.media_path.size() - 1] != DIRECTORY_SEPARATOR) {
  2663. params.media_path += DIRECTORY_SEPARATOR;
  2664. }
  2665. }
  2666. ).set_examples({LLAMA_EXAMPLE_SERVER}));
  2667. add_opt(common_arg(
  2668. {"--models-dir"}, "PATH",
  2669. "directory containing models for the router server (default: disabled)",
  2670. [](common_params & params, const std::string & value) {
  2671. params.models_dir = value;
  2672. }
  2673. ).set_examples({LLAMA_EXAMPLE_SERVER}).set_env("LLAMA_ARG_MODELS_DIR"));
  2674. add_opt(common_arg(
  2675. {"--models-preset"}, "PATH",
  2676. "path to INI file containing model presets for the router server (default: disabled)",
  2677. [](common_params & params, const std::string & value) {
  2678. params.models_preset = value;
  2679. }
  2680. ).set_examples({LLAMA_EXAMPLE_SERVER}).set_env("LLAMA_ARG_MODELS_PRESET"));
  2681. add_opt(common_arg(
  2682. {"--models-max"}, "N",
  2683. string_format("for router server, maximum number of models to load simultaneously (default: %d, 0 = unlimited)", params.models_max),
  2684. [](common_params & params, int value) {
  2685. params.models_max = value;
  2686. }
  2687. ).set_examples({LLAMA_EXAMPLE_SERVER}).set_env("LLAMA_ARG_MODELS_MAX"));
  2688. add_opt(common_arg(
  2689. {"--models-autoload"},
  2690. {"--no-models-autoload"},
  2691. string_format("for router server, whether to automatically load models (default: %s)", params.models_autoload ? "enabled" : "disabled"),
  2692. [](common_params & params, bool value) {
  2693. params.models_autoload = value;
  2694. }
  2695. ).set_examples({LLAMA_EXAMPLE_SERVER}).set_env("LLAMA_ARG_MODELS_AUTOLOAD"));
  2696. add_opt(common_arg(
  2697. {"--jinja"},
  2698. {"--no-jinja"},
  2699. string_format("whether to use jinja template engine for chat (default: %s)", params.use_jinja ? "enabled" : "disabled"),
  2700. [](common_params & params, bool value) {
  2701. params.use_jinja = value;
  2702. }
  2703. ).set_examples({LLAMA_EXAMPLE_SERVER, LLAMA_EXAMPLE_COMPLETION, LLAMA_EXAMPLE_CLI, LLAMA_EXAMPLE_MTMD}).set_env("LLAMA_ARG_JINJA"));
  2704. add_opt(common_arg(
  2705. {"--reasoning-format"}, "FORMAT",
  2706. "controls whether thought tags are allowed and/or extracted from the response, and in which format they're returned; one of:\n"
  2707. "- none: leaves thoughts unparsed in `message.content`\n"
  2708. "- deepseek: puts thoughts in `message.reasoning_content`\n"
  2709. "- deepseek-legacy: keeps `<think>` tags in `message.content` while also populating `message.reasoning_content`\n"
  2710. "(default: auto)",
  2711. [](common_params & params, const std::string & value) {
  2712. params.reasoning_format = common_reasoning_format_from_name(value);
  2713. }
  2714. ).set_examples({LLAMA_EXAMPLE_SERVER, LLAMA_EXAMPLE_COMPLETION, LLAMA_EXAMPLE_CLI}).set_env("LLAMA_ARG_THINK"));
  2715. add_opt(common_arg(
  2716. {"--reasoning-budget"}, "N",
  2717. "controls the amount of thinking allowed; currently only one of: -1 for unrestricted thinking budget, or 0 to disable thinking (default: -1)",
  2718. [](common_params & params, int value) {
  2719. if (value != 0 && value != -1) { throw std::invalid_argument("invalid value"); }
  2720. params.reasoning_budget = value;
  2721. }
  2722. ).set_examples({LLAMA_EXAMPLE_SERVER, LLAMA_EXAMPLE_COMPLETION, LLAMA_EXAMPLE_CLI}).set_env("LLAMA_ARG_THINK_BUDGET"));
  2723. add_opt(common_arg(
  2724. {"--chat-template"}, "JINJA_TEMPLATE",
  2725. string_format(
  2726. "set custom jinja chat template (default: template taken from model's metadata)\n"
  2727. "if suffix/prefix are specified, template will be disabled\n"
  2728. "only commonly used templates are accepted (unless --jinja is set before this flag):\n"
  2729. "list of built-in templates:\n%s", list_builtin_chat_templates().c_str()
  2730. ),
  2731. [](common_params & params, const std::string & value) {
  2732. params.chat_template = value;
  2733. }
  2734. ).set_examples({LLAMA_EXAMPLE_COMPLETION, LLAMA_EXAMPLE_CLI, LLAMA_EXAMPLE_SERVER, LLAMA_EXAMPLE_MTMD}).set_env("LLAMA_ARG_CHAT_TEMPLATE"));
  2735. add_opt(common_arg(
  2736. {"--chat-template-file"}, "JINJA_TEMPLATE_FILE",
  2737. string_format(
  2738. "set custom jinja chat template file (default: template taken from model's metadata)\n"
  2739. "if suffix/prefix are specified, template will be disabled\n"
  2740. "only commonly used templates are accepted (unless --jinja is set before this flag):\n"
  2741. "list of built-in templates:\n%s", list_builtin_chat_templates().c_str()
  2742. ),
  2743. [](common_params & params, const std::string & value) {
  2744. params.chat_template = read_file(value);
  2745. }
  2746. ).set_examples({LLAMA_EXAMPLE_COMPLETION, LLAMA_EXAMPLE_CLI, LLAMA_EXAMPLE_SERVER}).set_env("LLAMA_ARG_CHAT_TEMPLATE_FILE"));
  2747. add_opt(common_arg(
  2748. {"--prefill-assistant"},
  2749. {"--no-prefill-assistant"},
  2750. string_format(
  2751. "whether to prefill the assistant's response if the last message is an assistant message (default: prefill enabled)\n"
  2752. "when this flag is set, if the last message is an assistant message then it will be treated as a full message and not prefilled\n"
  2753. ),
  2754. [](common_params & params, bool value) {
  2755. params.prefill_assistant = value;
  2756. }
  2757. ).set_examples({LLAMA_EXAMPLE_SERVER}).set_env("LLAMA_ARG_PREFILL_ASSISTANT"));
  2758. add_opt(common_arg(
  2759. {"-sps", "--slot-prompt-similarity"}, "SIMILARITY",
  2760. string_format("how much the prompt of a request must match the prompt of a slot in order to use that slot (default: %.2f, 0.0 = disabled)\n", params.slot_prompt_similarity),
  2761. [](common_params & params, const std::string & value) {
  2762. params.slot_prompt_similarity = std::stof(value);
  2763. }
  2764. ).set_examples({LLAMA_EXAMPLE_SERVER}));
  2765. add_opt(common_arg(
  2766. {"--lora-init-without-apply"},
  2767. string_format("load LoRA adapters without applying them (apply later via POST /lora-adapters) (default: %s)", params.lora_init_without_apply ? "enabled" : "disabled"),
  2768. [](common_params & params) {
  2769. params.lora_init_without_apply = true;
  2770. }
  2771. ).set_examples({LLAMA_EXAMPLE_SERVER}));
  2772. add_opt(common_arg(
  2773. {"--simple-io"},
  2774. "use basic IO for better compatibility in subprocesses and limited consoles",
  2775. [](common_params & params) {
  2776. params.simple_io = true;
  2777. }
  2778. ).set_examples({LLAMA_EXAMPLE_COMPLETION, LLAMA_EXAMPLE_CLI}));
  2779. add_opt(common_arg(
  2780. {"--positive-file"}, "FNAME",
  2781. string_format("positive prompts file, one prompt per line (default: '%s')", params.cvector_positive_file.c_str()),
  2782. [](common_params & params, const std::string & value) {
  2783. params.cvector_positive_file = value;
  2784. }
  2785. ).set_examples({LLAMA_EXAMPLE_CVECTOR_GENERATOR}));
  2786. add_opt(common_arg(
  2787. {"--negative-file"}, "FNAME",
  2788. string_format("negative prompts file, one prompt per line (default: '%s')", params.cvector_negative_file.c_str()),
  2789. [](common_params & params, const std::string & value) {
  2790. params.cvector_negative_file = value;
  2791. }
  2792. ).set_examples({LLAMA_EXAMPLE_CVECTOR_GENERATOR}));
  2793. add_opt(common_arg(
  2794. {"--pca-batch"}, "N",
  2795. string_format("batch size used for PCA. Larger batch runs faster, but uses more memory (default: %d)", params.n_pca_batch),
  2796. [](common_params & params, int value) {
  2797. params.n_pca_batch = value;
  2798. }
  2799. ).set_examples({LLAMA_EXAMPLE_CVECTOR_GENERATOR}));
  2800. add_opt(common_arg(
  2801. {"--pca-iter"}, "N",
  2802. string_format("number of iterations used for PCA (default: %d)", params.n_pca_iterations),
  2803. [](common_params & params, int value) {
  2804. params.n_pca_iterations = value;
  2805. }
  2806. ).set_examples({LLAMA_EXAMPLE_CVECTOR_GENERATOR}));
  2807. add_opt(common_arg(
  2808. {"--method"}, "{pca, mean}",
  2809. "dimensionality reduction method to be used (default: pca)",
  2810. [](common_params & params, const std::string & value) {
  2811. /**/ if (value == "pca") { params.cvector_dimre_method = DIMRE_METHOD_PCA; }
  2812. else if (value == "mean") { params.cvector_dimre_method = DIMRE_METHOD_MEAN; }
  2813. else { throw std::invalid_argument("invalid value"); }
  2814. }
  2815. ).set_examples({LLAMA_EXAMPLE_CVECTOR_GENERATOR}));
  2816. add_opt(common_arg(
  2817. {"--output-format"}, "{md,jsonl}",
  2818. "output format for batched-bench results (default: md)",
  2819. [](common_params & params, const std::string & value) {
  2820. /**/ if (value == "jsonl") { params.batched_bench_output_jsonl = true; }
  2821. else if (value == "md") { params.batched_bench_output_jsonl = false; }
  2822. else { throw std::invalid_argument("invalid value"); }
  2823. }
  2824. ).set_examples({LLAMA_EXAMPLE_BENCH}));
  2825. add_opt(common_arg(
  2826. {"--log-disable"},
  2827. "Log disable",
  2828. [](common_params &) {
  2829. common_log_pause(common_log_main());
  2830. }
  2831. ));
  2832. add_opt(common_arg(
  2833. {"--log-file"}, "FNAME",
  2834. "Log to file",
  2835. [](common_params &, const std::string & value) {
  2836. common_log_set_file(common_log_main(), value.c_str());
  2837. }
  2838. ).set_env("LLAMA_LOG_FILE"));
  2839. add_opt(common_arg(
  2840. {"--log-colors"}, "[on|off|auto]",
  2841. "Set colored logging ('on', 'off', or 'auto', default: 'auto')\n"
  2842. "'auto' enables colors when output is to a terminal",
  2843. [](common_params &, const std::string & value) {
  2844. if (is_truthy(value)) {
  2845. common_log_set_colors(common_log_main(), LOG_COLORS_ENABLED);
  2846. } else if (is_falsey(value)) {
  2847. common_log_set_colors(common_log_main(), LOG_COLORS_DISABLED);
  2848. } else if (is_autoy(value)) {
  2849. common_log_set_colors(common_log_main(), LOG_COLORS_AUTO);
  2850. } else {
  2851. throw std::invalid_argument(
  2852. string_format("error: unknown value for --log-colors: '%s'\n", value.c_str()));
  2853. }
  2854. }
  2855. ).set_env("LLAMA_LOG_COLORS"));
  2856. add_opt(common_arg(
  2857. {"-v", "--verbose", "--log-verbose"},
  2858. "Set verbosity level to infinity (i.e. log all messages, useful for debugging)",
  2859. [](common_params & params) {
  2860. params.verbosity = INT_MAX;
  2861. }
  2862. ));
  2863. add_opt(common_arg(
  2864. {"--offline"},
  2865. "Offline mode: forces use of cache, prevents network access",
  2866. [](common_params & params) {
  2867. params.offline = true;
  2868. }
  2869. ).set_env("LLAMA_OFFLINE"));
  2870. add_opt(common_arg(
  2871. {"-lv", "--verbosity", "--log-verbosity"}, "N",
  2872. string_format("Set the verbosity threshold. Messages with a higher verbosity will be ignored. Values:\n"
  2873. " - 0: generic output\n"
  2874. " - 1: error\n"
  2875. " - 2: warning\n"
  2876. " - 3: info\n"
  2877. " - 4: debug\n"
  2878. "(default: %d)\n", params.verbosity),
  2879. [](common_params & params, int value) {
  2880. params.verbosity = value;
  2881. }
  2882. ).set_env("LLAMA_LOG_VERBOSITY"));
  2883. add_opt(common_arg(
  2884. {"--log-prefix"},
  2885. "Enable prefix in log messages",
  2886. [](common_params &) {
  2887. common_log_set_prefix(common_log_main(), true);
  2888. }
  2889. ).set_env("LLAMA_LOG_PREFIX"));
  2890. add_opt(common_arg(
  2891. {"--log-timestamps"},
  2892. "Enable timestamps in log messages",
  2893. [](common_params &) {
  2894. common_log_set_timestamps(common_log_main(), true);
  2895. }
  2896. ).set_env("LLAMA_LOG_TIMESTAMPS"));
  2897. // speculative parameters
  2898. add_opt(common_arg(
  2899. {"-td", "--threads-draft"}, "N",
  2900. "number of threads to use during generation (default: same as --threads)",
  2901. [](common_params & params, int value) {
  2902. params.speculative.cpuparams.n_threads = value;
  2903. if (params.speculative.cpuparams.n_threads <= 0) {
  2904. params.speculative.cpuparams.n_threads = std::thread::hardware_concurrency();
  2905. }
  2906. }
  2907. ).set_examples({LLAMA_EXAMPLE_SPECULATIVE, LLAMA_EXAMPLE_SERVER}));
  2908. add_opt(common_arg(
  2909. {"-tbd", "--threads-batch-draft"}, "N",
  2910. "number of threads to use during batch and prompt processing (default: same as --threads-draft)",
  2911. [](common_params & params, int value) {
  2912. params.speculative.cpuparams_batch.n_threads = value;
  2913. if (params.speculative.cpuparams_batch.n_threads <= 0) {
  2914. params.speculative.cpuparams_batch.n_threads = std::thread::hardware_concurrency();
  2915. }
  2916. }
  2917. ).set_examples({LLAMA_EXAMPLE_SPECULATIVE, LLAMA_EXAMPLE_SERVER}));
  2918. add_opt(common_arg(
  2919. {"-Cd", "--cpu-mask-draft"}, "M",
  2920. "Draft model CPU affinity mask. Complements cpu-range-draft (default: same as --cpu-mask)",
  2921. [](common_params & params, const std::string & mask) {
  2922. params.speculative.cpuparams.mask_valid = true;
  2923. if (!parse_cpu_mask(mask, params.speculative.cpuparams.cpumask)) {
  2924. throw std::invalid_argument("invalid cpumask");
  2925. }
  2926. }
  2927. ).set_examples({LLAMA_EXAMPLE_SPECULATIVE}));
  2928. add_opt(common_arg(
  2929. {"-Crd", "--cpu-range-draft"}, "lo-hi",
  2930. "Ranges of CPUs for affinity. Complements --cpu-mask-draft",
  2931. [](common_params & params, const std::string & range) {
  2932. params.speculative.cpuparams.mask_valid = true;
  2933. if (!parse_cpu_range(range, params.speculative.cpuparams.cpumask)) {
  2934. throw std::invalid_argument("invalid range");
  2935. }
  2936. }
  2937. ).set_examples({LLAMA_EXAMPLE_SPECULATIVE}));
  2938. add_opt(common_arg(
  2939. {"--cpu-strict-draft"}, "<0|1>",
  2940. "Use strict CPU placement for draft model (default: same as --cpu-strict)",
  2941. [](common_params & params, int value) {
  2942. params.speculative.cpuparams.strict_cpu = value;
  2943. }
  2944. ).set_examples({LLAMA_EXAMPLE_SPECULATIVE}));
  2945. add_opt(common_arg(
  2946. {"--prio-draft"}, "N",
  2947. string_format("set draft process/thread priority : 0-normal, 1-medium, 2-high, 3-realtime (default: %d)\n", params.speculative.cpuparams.priority),
  2948. [](common_params & params, int prio) {
  2949. if (prio < 0 || prio > 3) {
  2950. throw std::invalid_argument("invalid value");
  2951. }
  2952. params.speculative.cpuparams.priority = (enum ggml_sched_priority) prio;
  2953. }
  2954. ).set_examples({LLAMA_EXAMPLE_SPECULATIVE}));
  2955. add_opt(common_arg(
  2956. {"--poll-draft"}, "<0|1>",
  2957. "Use polling to wait for draft model work (default: same as --poll])",
  2958. [](common_params & params, int value) {
  2959. params.speculative.cpuparams.poll = value;
  2960. }
  2961. ).set_examples({LLAMA_EXAMPLE_SPECULATIVE}));
  2962. add_opt(common_arg(
  2963. {"-Cbd", "--cpu-mask-batch-draft"}, "M",
  2964. "Draft model CPU affinity mask. Complements cpu-range-draft (default: same as --cpu-mask)",
  2965. [](common_params & params, const std::string & mask) {
  2966. params.speculative.cpuparams_batch.mask_valid = true;
  2967. if (!parse_cpu_mask(mask, params.speculative.cpuparams_batch.cpumask)) {
  2968. throw std::invalid_argument("invalid cpumask");
  2969. }
  2970. }
  2971. ).set_examples({LLAMA_EXAMPLE_SPECULATIVE}));
  2972. add_opt(common_arg(
  2973. {"-Crbd", "--cpu-range-batch-draft"}, "lo-hi",
  2974. "Ranges of CPUs for affinity. Complements --cpu-mask-draft-batch)",
  2975. [](common_params & params, const std::string & range) {
  2976. params.speculative.cpuparams_batch.mask_valid = true;
  2977. if (!parse_cpu_range(range, params.speculative.cpuparams_batch.cpumask)) {
  2978. throw std::invalid_argument("invalid cpumask");
  2979. }
  2980. }
  2981. ).set_examples({LLAMA_EXAMPLE_SPECULATIVE}));
  2982. add_opt(common_arg(
  2983. {"--cpu-strict-batch-draft"}, "<0|1>",
  2984. "Use strict CPU placement for draft model (default: --cpu-strict-draft)",
  2985. [](common_params & params, int value) {
  2986. params.speculative.cpuparams_batch.strict_cpu = value;
  2987. }
  2988. ).set_examples({LLAMA_EXAMPLE_SPECULATIVE}));
  2989. add_opt(common_arg(
  2990. {"--prio-batch-draft"}, "N",
  2991. string_format("set draft process/thread priority : 0-normal, 1-medium, 2-high, 3-realtime (default: %d)\n", params.speculative.cpuparams_batch.priority),
  2992. [](common_params & params, int prio) {
  2993. if (prio < 0 || prio > 3) {
  2994. throw std::invalid_argument("invalid value");
  2995. }
  2996. params.speculative.cpuparams_batch.priority = (enum ggml_sched_priority) prio;
  2997. }
  2998. ).set_examples({LLAMA_EXAMPLE_SPECULATIVE}));
  2999. add_opt(common_arg(
  3000. {"--poll-batch-draft"}, "<0|1>",
  3001. "Use polling to wait for draft model work (default: --poll-draft)",
  3002. [](common_params & params, int value) {
  3003. params.speculative.cpuparams_batch.poll = value;
  3004. }
  3005. ).set_examples({LLAMA_EXAMPLE_SPECULATIVE}));
  3006. add_opt(common_arg(
  3007. {"--draft-max", "--draft", "--draft-n"}, "N",
  3008. string_format("number of tokens to draft for speculative decoding (default: %d)", params.speculative.n_max),
  3009. [](common_params & params, int value) {
  3010. params.speculative.n_max = value;
  3011. }
  3012. ).set_examples({LLAMA_EXAMPLE_SPECULATIVE, LLAMA_EXAMPLE_LOOKUP, LLAMA_EXAMPLE_SERVER, LLAMA_EXAMPLE_CLI}).set_env("LLAMA_ARG_DRAFT_MAX"));
  3013. add_opt(common_arg(
  3014. {"--draft-min", "--draft-n-min"}, "N",
  3015. string_format("minimum number of draft tokens to use for speculative decoding (default: %d)", params.speculative.n_min),
  3016. [](common_params & params, int value) {
  3017. params.speculative.n_min = value;
  3018. }
  3019. ).set_examples({LLAMA_EXAMPLE_SPECULATIVE, LLAMA_EXAMPLE_LOOKUP, LLAMA_EXAMPLE_SERVER, LLAMA_EXAMPLE_CLI}).set_env("LLAMA_ARG_DRAFT_MIN"));
  3020. add_opt(common_arg(
  3021. {"--draft-p-split"}, "P",
  3022. string_format("speculative decoding split probability (default: %.1f)", (double)params.speculative.p_split),
  3023. [](common_params & params, const std::string & value) {
  3024. params.speculative.p_split = std::stof(value);
  3025. }
  3026. ).set_examples({LLAMA_EXAMPLE_SPECULATIVE}).set_env("LLAMA_ARG_DRAFT_P_SPLIT"));
  3027. add_opt(common_arg(
  3028. {"--draft-p-min"}, "P",
  3029. string_format("minimum speculative decoding probability (greedy) (default: %.1f)", (double)params.speculative.p_min),
  3030. [](common_params & params, const std::string & value) {
  3031. params.speculative.p_min = std::stof(value);
  3032. }
  3033. ).set_examples({LLAMA_EXAMPLE_SPECULATIVE, LLAMA_EXAMPLE_SERVER, LLAMA_EXAMPLE_CLI}).set_env("LLAMA_ARG_DRAFT_P_MIN"));
  3034. add_opt(common_arg(
  3035. {"-cd", "--ctx-size-draft"}, "N",
  3036. string_format("size of the prompt context for the draft model (default: %d, 0 = loaded from model)", params.speculative.n_ctx),
  3037. [](common_params & params, int value) {
  3038. params.speculative.n_ctx = value;
  3039. }
  3040. ).set_examples({LLAMA_EXAMPLE_SPECULATIVE, LLAMA_EXAMPLE_SERVER, LLAMA_EXAMPLE_CLI}).set_env("LLAMA_ARG_CTX_SIZE_DRAFT"));
  3041. add_opt(common_arg(
  3042. {"-devd", "--device-draft"}, "<dev1,dev2,..>",
  3043. "comma-separated list of devices to use for offloading the draft model (none = don't offload)\n"
  3044. "use --list-devices to see a list of available devices",
  3045. [](common_params & params, const std::string & value) {
  3046. params.speculative.devices = parse_device_list(value);
  3047. }
  3048. ).set_examples({LLAMA_EXAMPLE_SPECULATIVE, LLAMA_EXAMPLE_SERVER, LLAMA_EXAMPLE_CLI}));
  3049. add_opt(common_arg(
  3050. {"-ngld", "--gpu-layers-draft", "--n-gpu-layers-draft"}, "N",
  3051. "number of layers to store in VRAM for the draft model",
  3052. [](common_params & params, int value) {
  3053. params.speculative.n_gpu_layers = value;
  3054. if (!llama_supports_gpu_offload()) {
  3055. fprintf(stderr, "warning: no usable GPU found, --gpu-layers-draft option will be ignored\n");
  3056. fprintf(stderr, "warning: one possible reason is that llama.cpp was compiled without GPU support\n");
  3057. fprintf(stderr, "warning: consult docs/build.md for compilation instructions\n");
  3058. }
  3059. }
  3060. ).set_examples({LLAMA_EXAMPLE_SPECULATIVE, LLAMA_EXAMPLE_SERVER, LLAMA_EXAMPLE_CLI}).set_env("LLAMA_ARG_N_GPU_LAYERS_DRAFT"));
  3061. add_opt(common_arg(
  3062. {"-md", "--model-draft"}, "FNAME",
  3063. "draft model for speculative decoding (default: unused)",
  3064. [](common_params & params, const std::string & value) {
  3065. params.speculative.model.path = value;
  3066. }
  3067. ).set_examples({LLAMA_EXAMPLE_SPECULATIVE, LLAMA_EXAMPLE_SERVER, LLAMA_EXAMPLE_CLI}).set_env("LLAMA_ARG_MODEL_DRAFT"));
  3068. add_opt(common_arg(
  3069. {"--spec-replace"}, "TARGET", "DRAFT",
  3070. "translate the string in TARGET into DRAFT if the draft model and main model are not compatible",
  3071. [](common_params & params, const std::string & tgt, const std::string & dft) {
  3072. params.speculative.replacements.push_back({ tgt, dft });
  3073. }
  3074. ).set_examples({LLAMA_EXAMPLE_SPECULATIVE, LLAMA_EXAMPLE_SERVER, LLAMA_EXAMPLE_CLI}));
  3075. add_opt(common_arg(
  3076. {"-ctkd", "--cache-type-k-draft"}, "TYPE",
  3077. string_format(
  3078. "KV cache data type for K for the draft model\n"
  3079. "allowed values: %s\n"
  3080. "(default: %s)",
  3081. get_all_kv_cache_types().c_str(),
  3082. ggml_type_name(params.speculative.cache_type_k)
  3083. ),
  3084. [](common_params & params, const std::string & value) {
  3085. params.speculative.cache_type_k = kv_cache_type_from_str(value);
  3086. }
  3087. ).set_env("LLAMA_ARG_CACHE_TYPE_K_DRAFT"));
  3088. add_opt(common_arg(
  3089. {"-ctvd", "--cache-type-v-draft"}, "TYPE",
  3090. string_format(
  3091. "KV cache data type for V for the draft model\n"
  3092. "allowed values: %s\n"
  3093. "(default: %s)",
  3094. get_all_kv_cache_types().c_str(),
  3095. ggml_type_name(params.speculative.cache_type_v)
  3096. ),
  3097. [](common_params & params, const std::string & value) {
  3098. params.speculative.cache_type_v = kv_cache_type_from_str(value);
  3099. }
  3100. ).set_env("LLAMA_ARG_CACHE_TYPE_V_DRAFT"));
  3101. add_opt(common_arg(
  3102. {"-mv", "--model-vocoder"}, "FNAME",
  3103. "vocoder model for audio generation (default: unused)",
  3104. [](common_params & params, const std::string & value) {
  3105. params.vocoder.model.path = value;
  3106. }
  3107. ).set_examples({LLAMA_EXAMPLE_TTS, LLAMA_EXAMPLE_SERVER}));
  3108. add_opt(common_arg(
  3109. {"--tts-use-guide-tokens"},
  3110. "Use guide tokens to improve TTS word recall",
  3111. [](common_params & params) {
  3112. params.vocoder.use_guide_tokens = true;
  3113. }
  3114. ).set_examples({LLAMA_EXAMPLE_TTS, LLAMA_EXAMPLE_SERVER}));
  3115. add_opt(common_arg(
  3116. {"--tts-speaker-file"}, "FNAME",
  3117. "speaker file path for audio generation",
  3118. [](common_params & params, const std::string & value) {
  3119. params.vocoder.speaker_file = value;
  3120. }
  3121. ).set_examples({LLAMA_EXAMPLE_TTS}));
  3122. add_opt(common_arg(
  3123. {"--diffusion-steps"}, "N",
  3124. string_format("number of diffusion steps (default: %d)", params.diffusion.steps),
  3125. [](common_params & params, int value) { params.diffusion.steps = value; }
  3126. ).set_examples({ LLAMA_EXAMPLE_DIFFUSION }));
  3127. add_opt(common_arg(
  3128. {"--diffusion-visual"},
  3129. string_format("enable visual diffusion mode (show progressive generation) (default: %s)", params.diffusion.visual_mode ? "true" : "false"),
  3130. [](common_params & params) { params.diffusion.visual_mode = true; }
  3131. ).set_examples({ LLAMA_EXAMPLE_DIFFUSION }));
  3132. add_opt(common_arg(
  3133. {"--diffusion-eps"}, "F",
  3134. string_format("epsilon for timesteps (default: %.6f)", (double) params.diffusion.eps),
  3135. [](common_params & params, const std::string & value) { params.diffusion.eps = std::stof(value); }
  3136. ).set_examples({ LLAMA_EXAMPLE_DIFFUSION }));
  3137. add_opt(common_arg(
  3138. {"--diffusion-algorithm"}, "N",
  3139. string_format("diffusion algorithm: 0=ORIGIN, 1=ENTROPY_BASED, 2=MARGIN_BASED, 3=RANDOM, 4=LOW_CONFIDENCE (default: %d)", params.diffusion.algorithm),
  3140. [](common_params & params, int value) { params.diffusion.algorithm = value; }
  3141. ).set_examples({ LLAMA_EXAMPLE_DIFFUSION }));
  3142. add_opt(common_arg(
  3143. {"--diffusion-alg-temp"}, "F",
  3144. string_format("dream algorithm temperature (default: %.3f)", (double) params.diffusion.alg_temp),
  3145. [](common_params & params, const std::string & value) { params.diffusion.alg_temp = std::stof(value); }
  3146. ).set_examples({ LLAMA_EXAMPLE_DIFFUSION }));
  3147. add_opt(common_arg(
  3148. {"--diffusion-block-length"}, "N",
  3149. string_format("llada block length for generation (default: %d)", params.diffusion.block_length),
  3150. [](common_params & params, int value) { params.diffusion.block_length = value; }
  3151. ).set_examples({ LLAMA_EXAMPLE_DIFFUSION }));
  3152. add_opt(common_arg(
  3153. {"--diffusion-cfg-scale"}, "F",
  3154. string_format("llada classifier-free guidance scale (default: %.3f)", (double) params.diffusion.cfg_scale),
  3155. [](common_params & params, const std::string & value) { params.diffusion.cfg_scale = std::stof(value); }
  3156. ).set_examples({ LLAMA_EXAMPLE_DIFFUSION }));
  3157. add_opt(common_arg(
  3158. {"--diffusion-add-gumbel-noise"}, "F",
  3159. string_format("add gumbel noise to the logits if temp > 0.0 (default: %s)", params.diffusion.add_gumbel_noise ? "true" : "false"),
  3160. [](common_params & params, const std::string & value) { params.diffusion.add_gumbel_noise = std::stof(value); }
  3161. ).set_examples({ LLAMA_EXAMPLE_DIFFUSION }));
  3162. add_opt(common_arg(
  3163. { "-lr", "--learning-rate" }, "ALPHA",
  3164. string_format("adamw or sgd optimizer alpha (default: %.2g); note: sgd alpha recommended ~10x (no momentum)", (double) params.lr.lr0),
  3165. [](common_params & params, const std::string & value) { params.lr.lr0 = std::stof(value); }
  3166. ).set_examples({ LLAMA_EXAMPLE_FINETUNE }));
  3167. add_opt(common_arg({ "-lr-min", "--learning-rate-min" }, "ALPHA",
  3168. string_format("(if >0) final learning rate after decay (if -decay-epochs is set, default=%.2g)",
  3169. (double) params.lr.lr_min),
  3170. [](common_params & params, const std::string & value) { params.lr.lr_min = std::stof(value); }
  3171. ).set_examples({ LLAMA_EXAMPLE_FINETUNE }));
  3172. add_opt(common_arg(
  3173. {"-decay-epochs", "--learning-rate-decay-epochs"}, "ALPHA",
  3174. string_format("(if >0) decay learning rate to -lr-min after this many epochs (exponential decay, default=%.2g)", (double) params.lr.decay_epochs),
  3175. [](common_params & params, const std::string & value) { params.lr.decay_epochs = std::stof(value); }
  3176. ).set_examples({ LLAMA_EXAMPLE_FINETUNE }));
  3177. add_opt(common_arg(
  3178. {"-wd", "--weight-decay"}, "WD",
  3179. string_format("adamw or sgd optimizer weight decay (0 is off; recommend very small e.g. 1e-9) (default: %.2g).", (double) params.lr.wd),
  3180. [](common_params & params, const std::string & value) { params.lr.wd = std::stof(value); }
  3181. ).set_examples({ LLAMA_EXAMPLE_FINETUNE }));
  3182. add_opt(common_arg(
  3183. {"-val-split", "--val-split"}, "FRACTION",
  3184. string_format("fraction of data to use as validation set for training (default: %.2g).", (double) params.val_split),
  3185. [](common_params & params, const std::string & value) { params.val_split = std::stof(value); }
  3186. ).set_examples({ LLAMA_EXAMPLE_FINETUNE }));
  3187. add_opt(common_arg(
  3188. {"-epochs", "--epochs"}, "N",
  3189. string_format("optimizer max # of epochs (default: %d)", params.lr.epochs),
  3190. [](common_params & params, int epochs) { params.lr.epochs = epochs; }
  3191. ).set_examples({ LLAMA_EXAMPLE_FINETUNE }));
  3192. add_opt(common_arg(
  3193. {"-opt", "--optimizer"}, "sgd|adamw", "adamw or sgd",
  3194. [](common_params & params, const std::string & name) {
  3195. params.optimizer = common_opt_get_optimizer(name.c_str());
  3196. if (params.optimizer == GGML_OPT_OPTIMIZER_TYPE_COUNT) {
  3197. throw std::invalid_argument("invalid --optimizer, valid options: adamw, sgd");
  3198. }
  3199. }
  3200. ).set_examples({ LLAMA_EXAMPLE_FINETUNE }));
  3201. // presets
  3202. add_opt(common_arg(
  3203. {"--tts-oute-default"},
  3204. string_format("use default OuteTTS models (note: can download weights from the internet)"),
  3205. [](common_params & params) {
  3206. params.model.hf_repo = "OuteAI/OuteTTS-0.2-500M-GGUF";
  3207. params.model.hf_file = "OuteTTS-0.2-500M-Q8_0.gguf";
  3208. params.vocoder.model.hf_repo = "ggml-org/WavTokenizer";
  3209. params.vocoder.model.hf_file = "WavTokenizer-Large-75-F16.gguf";
  3210. }
  3211. ).set_examples({LLAMA_EXAMPLE_TTS}));
  3212. add_opt(common_arg(
  3213. {"--embd-gemma-default"},
  3214. string_format("use default EmbeddingGemma model (note: can download weights from the internet)"),
  3215. [](common_params & params) {
  3216. params.model.hf_repo = "ggml-org/embeddinggemma-300M-qat-q4_0-GGUF";
  3217. params.model.hf_file = "embeddinggemma-300M-qat-Q4_0.gguf";
  3218. params.port = 8011;
  3219. params.n_ubatch = 2048;
  3220. params.n_batch = 2048;
  3221. params.n_parallel = 32;
  3222. params.n_ctx = 2048*params.n_parallel;
  3223. params.verbose_prompt = true;
  3224. params.embedding = true;
  3225. }
  3226. ).set_examples({LLAMA_EXAMPLE_EMBEDDING, LLAMA_EXAMPLE_SERVER}));
  3227. add_opt(common_arg(
  3228. {"--fim-qwen-1.5b-default"},
  3229. string_format("use default Qwen 2.5 Coder 1.5B (note: can download weights from the internet)"),
  3230. [](common_params & params) {
  3231. params.model.hf_repo = "ggml-org/Qwen2.5-Coder-1.5B-Q8_0-GGUF";
  3232. params.model.hf_file = "qwen2.5-coder-1.5b-q8_0.gguf";
  3233. params.port = 8012;
  3234. params.n_ubatch = 1024;
  3235. params.n_batch = 1024;
  3236. params.n_ctx = 0;
  3237. params.n_cache_reuse = 256;
  3238. }
  3239. ).set_examples({LLAMA_EXAMPLE_SERVER}));
  3240. add_opt(common_arg(
  3241. {"--fim-qwen-3b-default"},
  3242. string_format("use default Qwen 2.5 Coder 3B (note: can download weights from the internet)"),
  3243. [](common_params & params) {
  3244. params.model.hf_repo = "ggml-org/Qwen2.5-Coder-3B-Q8_0-GGUF";
  3245. params.model.hf_file = "qwen2.5-coder-3b-q8_0.gguf";
  3246. params.port = 8012;
  3247. params.n_ubatch = 1024;
  3248. params.n_batch = 1024;
  3249. params.n_ctx = 0;
  3250. params.n_cache_reuse = 256;
  3251. }
  3252. ).set_examples({LLAMA_EXAMPLE_SERVER}));
  3253. add_opt(common_arg(
  3254. {"--fim-qwen-7b-default"},
  3255. string_format("use default Qwen 2.5 Coder 7B (note: can download weights from the internet)"),
  3256. [](common_params & params) {
  3257. params.model.hf_repo = "ggml-org/Qwen2.5-Coder-7B-Q8_0-GGUF";
  3258. params.model.hf_file = "qwen2.5-coder-7b-q8_0.gguf";
  3259. params.port = 8012;
  3260. params.n_ubatch = 1024;
  3261. params.n_batch = 1024;
  3262. params.n_ctx = 0;
  3263. params.n_cache_reuse = 256;
  3264. }
  3265. ).set_examples({LLAMA_EXAMPLE_SERVER}));
  3266. add_opt(common_arg(
  3267. {"--fim-qwen-7b-spec"},
  3268. string_format("use Qwen 2.5 Coder 7B + 0.5B draft for speculative decoding (note: can download weights from the internet)"),
  3269. [](common_params & params) {
  3270. params.model.hf_repo = "ggml-org/Qwen2.5-Coder-7B-Q8_0-GGUF";
  3271. params.model.hf_file = "qwen2.5-coder-7b-q8_0.gguf";
  3272. params.speculative.model.hf_repo = "ggml-org/Qwen2.5-Coder-0.5B-Q8_0-GGUF";
  3273. params.speculative.model.hf_file = "qwen2.5-coder-0.5b-q8_0.gguf";
  3274. params.port = 8012;
  3275. params.n_ubatch = 1024;
  3276. params.n_batch = 1024;
  3277. params.n_ctx = 0;
  3278. params.n_cache_reuse = 256;
  3279. }
  3280. ).set_examples({LLAMA_EXAMPLE_SERVER}));
  3281. add_opt(common_arg(
  3282. {"--fim-qwen-14b-spec"},
  3283. string_format("use Qwen 2.5 Coder 14B + 0.5B draft for speculative decoding (note: can download weights from the internet)"),
  3284. [](common_params & params) {
  3285. params.model.hf_repo = "ggml-org/Qwen2.5-Coder-14B-Q8_0-GGUF";
  3286. params.model.hf_file = "qwen2.5-coder-14b-q8_0.gguf";
  3287. params.speculative.model.hf_repo = "ggml-org/Qwen2.5-Coder-0.5B-Q8_0-GGUF";
  3288. params.speculative.model.hf_file = "qwen2.5-coder-0.5b-q8_0.gguf";
  3289. params.port = 8012;
  3290. params.n_ubatch = 1024;
  3291. params.n_batch = 1024;
  3292. params.n_ctx = 0;
  3293. params.n_cache_reuse = 256;
  3294. }
  3295. ).set_examples({LLAMA_EXAMPLE_SERVER}));
  3296. add_opt(common_arg(
  3297. {"--fim-qwen-30b-default"},
  3298. string_format("use default Qwen 3 Coder 30B A3B Instruct (note: can download weights from the internet)"),
  3299. [](common_params & params) {
  3300. params.model.hf_repo = "ggml-org/Qwen3-Coder-30B-A3B-Instruct-Q8_0-GGUF";
  3301. params.model.hf_file = "qwen3-coder-30b-a3b-instruct-q8_0.gguf";
  3302. params.port = 8012;
  3303. params.n_ubatch = 1024;
  3304. params.n_batch = 1024;
  3305. params.n_ctx = 0;
  3306. params.n_cache_reuse = 256;
  3307. }
  3308. ).set_examples({LLAMA_EXAMPLE_SERVER}));
  3309. add_opt(common_arg(
  3310. {"--gpt-oss-20b-default"},
  3311. string_format("use gpt-oss-20b (note: can download weights from the internet)"),
  3312. [](common_params & params) {
  3313. params.model.hf_repo = "ggml-org/gpt-oss-20b-GGUF";
  3314. params.model.hf_file = "gpt-oss-20b-mxfp4.gguf";
  3315. params.port = 8013;
  3316. params.n_ubatch = 2048;
  3317. params.n_batch = 32768;
  3318. params.n_parallel = 2;
  3319. params.n_ctx = 131072*params.n_parallel;
  3320. params.sampling.temp = 1.0f;
  3321. params.sampling.top_p = 1.0f;
  3322. params.sampling.top_k = 0;
  3323. params.sampling.min_p = 0.01f;
  3324. params.use_jinja = true;
  3325. //params.default_template_kwargs["reasoning_effort"] = "\"high\"";
  3326. }
  3327. ).set_examples({LLAMA_EXAMPLE_SERVER, LLAMA_EXAMPLE_CLI}));
  3328. add_opt(common_arg(
  3329. {"--gpt-oss-120b-default"},
  3330. string_format("use gpt-oss-120b (note: can download weights from the internet)"),
  3331. [](common_params & params) {
  3332. params.model.hf_repo = "ggml-org/gpt-oss-120b-GGUF";
  3333. params.port = 8013;
  3334. params.n_ubatch = 2048;
  3335. params.n_batch = 32768;
  3336. params.n_parallel = 2;
  3337. params.n_ctx = 131072*params.n_parallel;
  3338. params.sampling.temp = 1.0f;
  3339. params.sampling.top_p = 1.0f;
  3340. params.sampling.top_k = 0;
  3341. params.sampling.min_p = 0.01f;
  3342. params.use_jinja = true;
  3343. //params.default_template_kwargs["reasoning_effort"] = "\"high\"";
  3344. }
  3345. ).set_examples({LLAMA_EXAMPLE_SERVER, LLAMA_EXAMPLE_CLI}));
  3346. add_opt(common_arg(
  3347. {"--vision-gemma-4b-default"},
  3348. string_format("use Gemma 3 4B QAT (note: can download weights from the internet)"),
  3349. [](common_params & params) {
  3350. params.model.hf_repo = "ggml-org/gemma-3-4b-it-qat-GGUF";
  3351. params.port = 8014;
  3352. params.n_ctx = 0;
  3353. params.use_jinja = true;
  3354. }
  3355. ).set_examples({LLAMA_EXAMPLE_SERVER, LLAMA_EXAMPLE_CLI}));
  3356. add_opt(common_arg(
  3357. {"--vision-gemma-12b-default"},
  3358. string_format("use Gemma 3 12B QAT (note: can download weights from the internet)"),
  3359. [](common_params & params) {
  3360. params.model.hf_repo = "ggml-org/gemma-3-12b-it-qat-GGUF";
  3361. params.port = 8014;
  3362. params.n_ctx = 0;
  3363. params.use_jinja = true;
  3364. }
  3365. ).set_examples({LLAMA_EXAMPLE_SERVER, LLAMA_EXAMPLE_CLI}));
  3366. return ctx_arg;
  3367. }