Merge bd482a8b92
into 3e5ca7931c
This commit is contained in:
commit
9a1d0c8930
3 changed files with 136 additions and 4 deletions
|
@ -1,5 +1,6 @@
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
#include "llama.h"
|
#include "llama.h"
|
||||||
|
#include "json-util.hpp"
|
||||||
|
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
|
@ -117,6 +118,7 @@ void process_escapes(std::string& input) {
|
||||||
|
|
||||||
bool gpt_params_parse(int argc, char ** argv, gpt_params & params) {
|
bool gpt_params_parse(int argc, char ** argv, gpt_params & params) {
|
||||||
bool result = true;
|
bool result = true;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
if (!gpt_params_parse_ex(argc, argv, params)) {
|
if (!gpt_params_parse_ex(argc, argv, params)) {
|
||||||
gpt_print_usage(argc, argv, gpt_params());
|
gpt_print_usage(argc, argv, gpt_params());
|
||||||
|
@ -128,6 +130,7 @@ bool gpt_params_parse(int argc, char ** argv, gpt_params & params) {
|
||||||
gpt_print_usage(argc, argv, gpt_params());
|
gpt_print_usage(argc, argv, gpt_params());
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -792,7 +795,16 @@ bool gpt_params_parse_ex(int argc, char ** argv, gpt_params & params) {
|
||||||
// End of Parse args for logging parameters
|
// End of Parse args for logging parameters
|
||||||
#endif // LOG_DISABLE_LOGS
|
#endif // LOG_DISABLE_LOGS
|
||||||
} else {
|
} else {
|
||||||
throw std::invalid_argument("error: unknown argument: " + arg);
|
args_struct args_obj(argv[i]);
|
||||||
|
|
||||||
|
if (args_obj.argc > 0) {
|
||||||
|
int argc_json = args_obj.argc;
|
||||||
|
char** args_json = args_obj.argv;
|
||||||
|
|
||||||
|
return gpt_params_parse(argc_json, args_json, params);
|
||||||
|
} else {
|
||||||
|
throw std::invalid_argument("error: unknown argument: " + arg);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (invalid_param) {
|
if (invalid_param) {
|
||||||
|
|
110
common/json-util.hpp
Normal file
110
common/json-util.hpp
Normal file
|
@ -0,0 +1,110 @@
|
||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include <string>
|
||||||
|
#include <vector>
|
||||||
|
#include <fstream>
|
||||||
|
#include "examples/server/json.hpp"
|
||||||
|
|
||||||
|
static nlohmann::json get_json(const char* file_name) noexcept {
|
||||||
|
try {
|
||||||
|
printf("Opening a json file %s\n", file_name);
|
||||||
|
std::ifstream jstream(file_name);
|
||||||
|
return nlohmann::json::parse(jstream);
|
||||||
|
}
|
||||||
|
catch (const std::exception& ex) {
|
||||||
|
fprintf(stderr, "%s\n", ex.what());
|
||||||
|
}
|
||||||
|
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
|
||||||
|
struct args_struct {
|
||||||
|
size_t argc;
|
||||||
|
char** argv;
|
||||||
|
size_t elements_count = 0;
|
||||||
|
size_t index = 0;
|
||||||
|
|
||||||
|
std::vector<char> arg_chars = {};
|
||||||
|
std::vector<size_t> arg_idxs = {};
|
||||||
|
std::vector<char*> arg_ptrs = {};
|
||||||
|
|
||||||
|
args_struct() = default;
|
||||||
|
|
||||||
|
args_struct(char* file_name) {
|
||||||
|
createParams(file_name);
|
||||||
|
}
|
||||||
|
|
||||||
|
~args_struct() = default;
|
||||||
|
|
||||||
|
void reset() noexcept {
|
||||||
|
elements_count = 0;
|
||||||
|
index = 0;
|
||||||
|
|
||||||
|
arg_chars.clear();
|
||||||
|
arg_idxs.clear();
|
||||||
|
|
||||||
|
reset_args();
|
||||||
|
}
|
||||||
|
|
||||||
|
void reset_args() noexcept {
|
||||||
|
arg_ptrs.clear();
|
||||||
|
argc = 0;
|
||||||
|
argv = nullptr;
|
||||||
|
}
|
||||||
|
|
||||||
|
void add(const std::string& data) {
|
||||||
|
// resetting previous args
|
||||||
|
reset_args();
|
||||||
|
|
||||||
|
arg_idxs.emplace_back(index);
|
||||||
|
for(const auto& character : data) {
|
||||||
|
arg_chars.emplace_back(character);
|
||||||
|
++index;
|
||||||
|
}
|
||||||
|
|
||||||
|
arg_chars.emplace_back('\0');
|
||||||
|
++index;
|
||||||
|
++elements_count;
|
||||||
|
}
|
||||||
|
|
||||||
|
void get_args() {
|
||||||
|
reset_args();
|
||||||
|
if(elements_count) {
|
||||||
|
arg_ptrs.reserve(elements_count);
|
||||||
|
|
||||||
|
for(const auto& index : arg_idxs) {
|
||||||
|
arg_ptrs.emplace_back(&arg_chars[index]);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
arg_ptrs.emplace_back(nullptr);
|
||||||
|
}
|
||||||
|
|
||||||
|
argc = elements_count;
|
||||||
|
argv = &arg_ptrs[0];
|
||||||
|
}
|
||||||
|
|
||||||
|
void createParams(char* file_name) {
|
||||||
|
reset(); // starting over
|
||||||
|
nlohmann::json file_config = get_json(file_name);
|
||||||
|
if (!file_config.empty()) { // ensures no unnecessary work
|
||||||
|
add(file_name);
|
||||||
|
for (auto& p : file_config.items()) {
|
||||||
|
// only use strings, numbers and booleans for switches
|
||||||
|
if (p.value().is_string() || p.value().is_number() || p.value().is_boolean()) {
|
||||||
|
add(p.key());
|
||||||
|
|
||||||
|
if (!p.value().is_boolean()) {
|
||||||
|
std::string param_value;
|
||||||
|
if (p.value().is_string()) {
|
||||||
|
param_value = p.value().get<std::string>();
|
||||||
|
} else if (p.value().is_number()) {
|
||||||
|
param_value = std::to_string(p.value().get<float>()); // works for int values too
|
||||||
|
}
|
||||||
|
add(param_value);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
get_args();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
|
@ -1,6 +1,7 @@
|
||||||
#include "common.h"
|
#include "common.h"
|
||||||
#include "llama.h"
|
#include "llama.h"
|
||||||
#include "grammar-parser.h"
|
#include "grammar-parser.h"
|
||||||
|
#include "json-util.hpp"
|
||||||
|
|
||||||
#include "../llava/clip.h"
|
#include "../llava/clip.h"
|
||||||
|
|
||||||
|
@ -2517,9 +2518,18 @@ static void server_params_parse(int argc, char **argv, server_params &sparams,
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
fprintf(stderr, "error: unknown argument: %s\n", arg.c_str());
|
args_struct args_obj(argv[i]);
|
||||||
server_print_usage(argv[0], default_params, default_sparams);
|
|
||||||
exit(1);
|
if (args_obj.argc > 0) {
|
||||||
|
int argc_json = args_obj.argc;
|
||||||
|
char** args_json = args_obj.argv;
|
||||||
|
|
||||||
|
return server_params_parse(argc_json, args_json, sparams, params, llama);
|
||||||
|
} else {
|
||||||
|
fprintf(stderr, "error: unknown argument: %s\n", arg.c_str());
|
||||||
|
server_print_usage(argv[0], default_params, default_sparams);
|
||||||
|
exit(1);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (!params.kv_overrides.empty()) {
|
if (!params.kv_overrides.empty()) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue