MCPcopy Create free account
hub / github.com/antirez/llama.cpp-deepseek-v4-flash / get_args

Method get_args

common/arg.cpp:215–224  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

213}
214
215std::vector<std::string> common_arg::get_args() const {
216 std::vector<std::string> result;
217 for (const auto & arg : args) {
218 result.push_back(std::string(arg));
219 }
220 for (const auto & arg : args_neg) {
221 result.push_back(std::string(arg));
222 }
223 return result;
224}
225
226std::vector<std::string> common_arg::get_env() const {
227 std::vector<std::string> result;

Callers 5

mainFunction · 0.80
get_map_key_optFunction · 0.80
value.cppFile · 0.80
write_table_entryFunction · 0.80

Calls 2

stringClass · 0.85
push_backMethod · 0.45

Tested by 1

mainFunction · 0.64