| #include "arg.h" |
| #include "preset.h" |
| #include "peg-parser.h" |
| #include "log.h" |
| #include "download.h" |
|
|
| #include <fstream> |
| #include <sstream> |
| #include <filesystem> |
|
|
| static std::string rm_leading_dashes(const std::string & str) { |
| size_t pos = 0; |
| while (pos < str.size() && str[pos] == '-') { |
| ++pos; |
| } |
| return str.substr(pos); |
| } |
|
|
| |
| |
| |
| static std::set<std::string> get_remote_preset_whitelist(const std::map<std::string, common_arg> & key_to_opt) { |
| static const std::set<std::string> allowed_options = { |
| "model-url", |
| "hf-repo", |
| "hf-repo-draft", |
| "hf-repo-v", |
| "hf-file-v", |
| "mmproj-url", |
| "pooling", |
| "jinja", |
| "batch-size", |
| "ubatch-size", |
| "cache-reuse", |
| "chat-template-kwargs", |
| "mmap", |
| |
| |
| }; |
|
|
| std::set<std::string> allowed_keys; |
|
|
| for (const auto & it : key_to_opt) { |
| const std::string & key = it.first; |
| const common_arg & opt = it.second; |
| if (allowed_options.find(key) != allowed_options.end() || opt.is_sparam) { |
| allowed_keys.insert(key); |
| |
| for (const auto & arg : opt.get_args()) { |
| allowed_keys.insert(rm_leading_dashes(arg)); |
| } |
| for (const auto & env : opt.get_env()) { |
| allowed_keys.insert(env); |
| } |
| } |
| } |
|
|
| return allowed_keys; |
| } |
|
|
| std::vector<std::string> common_preset::to_args(const std::string & bin_path) const { |
| std::vector<std::string> args; |
|
|
| if (!bin_path.empty()) { |
| args.push_back(bin_path); |
| } |
|
|
| for (const auto & [opt, value] : options) { |
| if (opt.is_preset_only) { |
| continue; |
| } |
|
|
| |
| args.push_back(opt.args.back()); |
|
|
| |
| if (opt.value_hint == nullptr && opt.value_hint_2 == nullptr) { |
| |
| if (common_arg_utils::is_falsey(value)) { |
| |
| if (!opt.args_neg.empty()) { |
| args.back() = opt.args_neg.back(); |
| } else { |
| |
| |
| args.pop_back(); |
| } |
| } |
| } |
| if (opt.value_hint != nullptr) { |
| |
| args.push_back(value); |
| } |
| if (opt.value_hint != nullptr && opt.value_hint_2 != nullptr) { |
| throw std::runtime_error(string_format( |
| "common_preset::to_args(): option '%s' has two values, which is not supported yet", |
| opt.args.back() |
| )); |
| } |
| } |
|
|
| return args; |
| } |
|
|
| std::string common_preset::to_ini() const { |
| std::ostringstream ss; |
|
|
| ss << "[" << name << "]\n"; |
| for (const auto & [opt, value] : options) { |
| auto espaced_value = value; |
| string_replace_all(espaced_value, "\n", "\\\n"); |
| ss << rm_leading_dashes(opt.args.back()) << " = "; |
| ss << espaced_value << "\n"; |
| } |
| ss << "\n"; |
|
|
| return ss.str(); |
| } |
|
|
| void common_preset::set_option(const common_preset_context & ctx, const std::string & env, const std::string & value) { |
| |
| for (auto & [opt, val] : options) { |
| if (opt.env && env == opt.env) { |
| val = value; |
| return; |
| } |
| } |
| |
| if (ctx.key_to_opt.find(env) == ctx.key_to_opt.end()) { |
| throw std::runtime_error(string_format( |
| "%s: option with env '%s' not found in ctx_params", |
| __func__, env.c_str() |
| )); |
| } |
| options[ctx.key_to_opt.at(env)] = value; |
| } |
|
|
| void common_preset::unset_option(const std::string & env) { |
| for (auto it = options.begin(); it != options.end(); ) { |
| const common_arg & opt = it->first; |
| if (opt.env && env == opt.env) { |
| it = options.erase(it); |
| return; |
| } else { |
| ++it; |
| } |
| } |
| } |
|
|
| bool common_preset::get_option(const std::string & env, std::string & value) const { |
| for (const auto & [opt, val] : options) { |
| if (opt.env && env == opt.env) { |
| value = val; |
| return true; |
| } |
| } |
| return false; |
| } |
|
|
| void common_preset::merge(const common_preset & other) { |
| for (const auto & [opt, val] : other.options) { |
| options[opt] = val; |
| } |
| } |
|
|
| void common_preset::apply_to_params(common_params & params) const { |
| for (const auto & [opt, val] : options) { |
| |
| if (opt.handler_string) { |
| opt.handler_string(params, val); |
| } else if (opt.handler_int) { |
| opt.handler_int(params, std::stoi(val)); |
| } else if (opt.handler_bool) { |
| opt.handler_bool(params, common_arg_utils::is_truthy(val)); |
| } else if (opt.handler_str_str) { |
| |
| throw std::runtime_error(string_format( |
| "%s: option with two values is not supported yet", |
| __func__ |
| )); |
| } else if (opt.handler_void) { |
| opt.handler_void(params); |
| } else { |
| GGML_ABORT("unknown handler type"); |
| } |
| } |
| } |
|
|
| static std::map<std::string, std::map<std::string, std::string>> parse_ini_from_file(const std::string & path) { |
| std::map<std::string, std::map<std::string, std::string>> parsed; |
|
|
| if (!std::filesystem::exists(path)) { |
| throw std::runtime_error("preset file does not exist: " + path); |
| } |
|
|
| std::ifstream file(path); |
| if (!file.good()) { |
| throw std::runtime_error("failed to open server preset file: " + path); |
| } |
|
|
| std::string contents((std::istreambuf_iterator<char>(file)), std::istreambuf_iterator<char>()); |
|
|
| static const auto parser = build_peg_parser([](auto & p) { |
| |
| auto newline = p.rule("newline", p.literal("\r\n") | p.literal("\n") | p.literal("\r")); |
|
|
| |
| auto ws = p.rule("ws", p.chars("[ \t]", 0, -1)); |
|
|
| |
| auto comment = p.rule("comment", p.chars("[;#]", 1, 1) + p.zero_or_more(p.negate(newline) + p.any())); |
|
|
| |
| auto eol = p.rule("eol", ws + p.optional(comment) + (newline | p.end())); |
|
|
| |
| auto ident = p.rule("ident", p.chars("[a-zA-Z_]", 1, 1) + p.chars("[a-zA-Z0-9_.-]", 0, -1)); |
|
|
| |
| auto eol_start = p.rule("eol-start", ws + (p.chars("[;#]", 1, 1) | newline | p.end())); |
| auto value = p.rule("value", p.zero_or_more(p.negate(eol_start) + p.any())); |
|
|
| |
| auto header_line = p.rule("header-line", "[" + ws + p.tag("section-name", p.chars("[^]]")) + ws + "]" + eol); |
|
|
| |
| auto kv_line = p.rule("kv-line", p.tag("key", ident) + ws + "=" + ws + p.tag("value", value) + eol); |
|
|
| |
| auto comment_line = p.rule("comment-line", ws + comment + (newline | p.end())); |
|
|
| |
| auto blank_line = p.rule("blank-line", ws + (newline | p.end())); |
|
|
| |
| auto line = p.rule("line", header_line | kv_line | comment_line | blank_line); |
|
|
| |
| auto ini = p.rule("ini", p.zero_or_more(line) + p.end()); |
|
|
| return ini; |
| }); |
|
|
| common_peg_parse_context ctx(contents); |
| const auto result = parser.parse(ctx); |
| if (!result.success()) { |
| throw std::runtime_error("failed to parse server config file: " + path); |
| } |
|
|
| std::string current_section = COMMON_PRESET_DEFAULT_NAME; |
| std::string current_key; |
|
|
| ctx.ast.visit(result, [&](const auto & node) { |
| if (node.tag == "section-name") { |
| const std::string section = std::string(node.text); |
| current_section = section; |
| parsed[current_section] = {}; |
| } else if (node.tag == "key") { |
| const std::string key = std::string(node.text); |
| current_key = key; |
| } else if (node.tag == "value" && !current_key.empty() && !current_section.empty()) { |
| parsed[current_section][current_key] = std::string(node.text); |
| current_key.clear(); |
| } |
| }); |
|
|
| return parsed; |
| } |
|
|
| static std::map<std::string, common_arg> get_map_key_opt(common_params_context & ctx_params) { |
| std::map<std::string, common_arg> mapping; |
| for (const auto & opt : ctx_params.options) { |
| for (const auto & env : opt.get_env()) { |
| mapping[env] = opt; |
| } |
| for (const auto & arg : opt.get_args()) { |
| mapping[rm_leading_dashes(arg)] = opt; |
| } |
| } |
| return mapping; |
| } |
|
|
| static bool is_bool_arg(const common_arg & arg) { |
| return !arg.args_neg.empty(); |
| } |
|
|
| static std::string parse_bool_arg(const common_arg & arg, const std::string & key, const std::string & value) { |
| |
| for (const auto & neg_arg : arg.args_neg) { |
| if (rm_leading_dashes(neg_arg) == key) { |
| return common_arg_utils::is_truthy(value) ? "false" : "true"; |
| } |
| } |
| |
| return value; |
| } |
|
|
| common_preset_context::common_preset_context(llama_example ex, bool only_remote_allowed) |
| : ctx_params(common_params_parser_init(default_params, ex)) { |
| common_params_add_preset_options(ctx_params.options); |
| key_to_opt = get_map_key_opt(ctx_params); |
|
|
| |
| if (only_remote_allowed) { |
| filter_allowed_keys = true; |
| allowed_keys = get_remote_preset_whitelist(key_to_opt); |
| } |
| } |
|
|
| common_presets common_preset_context::load_from_ini(const std::string & path, common_preset & global) const { |
| common_presets out; |
| auto ini_data = parse_ini_from_file(path); |
|
|
| for (auto section : ini_data) { |
| common_preset preset; |
| if (section.first.empty()) { |
| preset.name = COMMON_PRESET_DEFAULT_NAME; |
| } else { |
| preset.name = section.first; |
| } |
| LOG_DBG("loading preset: %s\n", preset.name.c_str()); |
| for (const auto & [key, value] : section.second) { |
| if (key == "version") { |
| |
| continue; |
| } |
|
|
| LOG_DBG("option: %s = %s\n", key.c_str(), value.c_str()); |
| if (filter_allowed_keys && allowed_keys.find(key) == allowed_keys.end()) { |
| throw std::runtime_error(string_format( |
| "option '%s' is not allowed in remote presets", |
| key.c_str() |
| )); |
| } |
| if (key_to_opt.find(key) != key_to_opt.end()) { |
| const auto & opt = key_to_opt.at(key); |
| if (is_bool_arg(opt)) { |
| preset.options[opt] = parse_bool_arg(opt, key, value); |
| } else { |
| preset.options[opt] = value; |
| } |
| LOG_DBG("accepted option: %s = %s\n", key.c_str(), preset.options[opt].c_str()); |
| } else { |
| throw std::runtime_error(string_format( |
| "option '%s' not recognized in preset '%s'", |
| key.c_str(), preset.name.c_str() |
| )); |
| } |
| } |
|
|
| if (preset.name == "*") { |
| |
| global = preset; |
| } else { |
| out[preset.name] = preset; |
| } |
| } |
|
|
| return out; |
| } |
|
|
| common_presets common_preset_context::load_from_cache() const { |
| common_presets out; |
|
|
| auto cached_models = common_list_cached_models(); |
| for (const auto & model : cached_models) { |
| common_preset preset; |
| preset.name = model.to_string(); |
| preset.set_option(*this, "LLAMA_ARG_HF_REPO", model.to_string()); |
| out[preset.name] = preset; |
| } |
|
|
| return out; |
| } |
|
|
| struct local_model { |
| std::string name; |
| std::string path; |
| std::string path_mmproj; |
| }; |
|
|
| common_presets common_preset_context::load_from_models_dir(const std::string & models_dir) const { |
| if (!std::filesystem::exists(models_dir) || !std::filesystem::is_directory(models_dir)) { |
| throw std::runtime_error(string_format("error: '%s' does not exist or is not a directory\n", models_dir.c_str())); |
| } |
|
|
| std::vector<local_model> models; |
| auto scan_subdir = [&models](const std::string & subdir_path, const std::string & name) { |
| auto files = fs_list(subdir_path, false); |
| common_file_info model_file; |
| common_file_info first_shard_file; |
| common_file_info mmproj_file; |
| for (const auto & file : files) { |
| if (string_ends_with(file.name, ".gguf")) { |
| if (file.name.find("mmproj") != std::string::npos) { |
| mmproj_file = file; |
| } else if (file.name.find("-00001-of-") != std::string::npos) { |
| first_shard_file = file; |
| } else { |
| model_file = file; |
| } |
| } |
| } |
| |
| local_model model{ |
| name, |
| first_shard_file.path.empty() ? model_file.path : first_shard_file.path, |
| mmproj_file.path |
| }; |
| if (!model.path.empty()) { |
| models.push_back(model); |
| } |
| }; |
|
|
| auto files = fs_list(models_dir, true); |
| for (const auto & file : files) { |
| if (file.is_dir) { |
| scan_subdir(file.path, file.name); |
| } else if (string_ends_with(file.name, ".gguf")) { |
| |
| std::string name = file.name; |
| string_replace_all(name, ".gguf", ""); |
| local_model model{ |
| name, |
| file.path, |
| "" |
| }; |
| models.push_back(model); |
| } |
| } |
|
|
| |
| common_presets out; |
| for (const auto & model : models) { |
| common_preset preset; |
| preset.name = model.name; |
| preset.set_option(*this, "LLAMA_ARG_MODEL", model.path); |
| if (!model.path_mmproj.empty()) { |
| preset.set_option(*this, "LLAMA_ARG_MMPROJ", model.path_mmproj); |
| } |
| out[preset.name] = preset; |
| } |
|
|
| return out; |
| } |
|
|
| common_preset common_preset_context::load_from_args(int argc, char ** argv) const { |
| common_preset preset; |
| preset.name = COMMON_PRESET_DEFAULT_NAME; |
|
|
| bool ok = common_params_to_map(argc, argv, ctx_params.ex, preset.options); |
| if (!ok) { |
| throw std::runtime_error("failed to parse CLI arguments into preset"); |
| } |
|
|
| return preset; |
| } |
|
|
| common_presets common_preset_context::cascade(const common_presets & base, const common_presets & added) const { |
| common_presets out = base; |
| for (const auto & [name, preset_added] : added) { |
| if (out.find(name) != out.end()) { |
| |
| common_preset & target = out[name]; |
| target.merge(preset_added); |
| } else { |
| |
| out[name] = preset_added; |
| } |
| } |
| return out; |
| } |
|
|
| common_presets common_preset_context::cascade(const common_preset & base, const common_presets & presets) const { |
| common_presets out; |
| for (const auto & [name, preset] : presets) { |
| common_preset tmp = base; |
| tmp.name = name; |
| tmp.merge(preset); |
| out[name] = std::move(tmp); |
| } |
| return out; |
| } |
|
|