}
}
).set_excludes({LLAMA_EXAMPLE_SERVER}));
+ add_opt(common_arg(
+ {"-sysf", "--system-prompt-file"}, "FNAME",
+ "a file containing the system prompt (default: none)",
+ [](common_params & params, const std::string & value) {
+ std::ifstream file(value);
+ if (!file) {
+ throw std::runtime_error(string_format("error: failed to open file '%s'\n", value.c_str()));
+ }
+ std::copy(std::istreambuf_iterator<char>(file), std::istreambuf_iterator<char>(), back_inserter(params.system_prompt));
+ if (!params.system_prompt.empty() && params.system_prompt.back() == '\n') {
+ params.system_prompt.pop_back();
+ }
+ }
+ ).set_examples({LLAMA_EXAMPLE_MAIN}));
add_opt(common_arg(
{"--in-file"}, "FNAME",
"an input file (repeat to specify multiple files)",