mirror of
				https://github.com/ggml-org/llama.cpp.git
				synced 2025-11-04 09:32:00 +00:00 
			
		
		
		
	* (wip) argparser v3 * migrated * add test * handle env * fix linux build * add export-docs example * fix build (2) * skip build test-arg-parser on windows * update server docs * bring back missing --alias * bring back --n-predict * clarify test-arg-parser * small correction * add comments * fix args with 2 values * refine example-specific args * no more lamba capture Co-authored-by: slaren@users.noreply.github.com * params.sparams * optimize more * export-docs --> gen-docs
		
			
				
	
	
		
			52 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			52 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
#include "common.h"
 | 
						|
 | 
						|
#include <fstream>
 | 
						|
#include <string>
 | 
						|
 | 
						|
// Export usage message (-h) to markdown format
 | 
						|
 | 
						|
static void export_md(std::string fname, llama_example ex) {
 | 
						|
    std::ofstream file(fname, std::ofstream::out | std::ofstream::trunc);
 | 
						|
 | 
						|
    gpt_params params;
 | 
						|
    auto options = gpt_params_parser_init(params, ex);
 | 
						|
 | 
						|
    file << "| Argument | Explanation |\n";
 | 
						|
    file << "| -------- | ----------- |\n";
 | 
						|
    for (auto & opt : options) {
 | 
						|
        file << "| `";
 | 
						|
        // args
 | 
						|
        for (const auto & arg : opt.args) {
 | 
						|
        if (arg == opt.args.front()) {
 | 
						|
                file << arg;
 | 
						|
                if (opt.args.size() > 1) file << ", ";
 | 
						|
            } else {
 | 
						|
                file << arg << (arg != opt.args.back() ? ", " : "");
 | 
						|
            }
 | 
						|
        }
 | 
						|
        // value hint
 | 
						|
        if (opt.value_hint) {
 | 
						|
            std::string md_value_hint(opt.value_hint);
 | 
						|
            string_replace_all(md_value_hint, "|", "\\|");
 | 
						|
            file << " " << md_value_hint;
 | 
						|
        }
 | 
						|
        if (opt.value_hint_2) {
 | 
						|
            std::string md_value_hint_2(opt.value_hint_2);
 | 
						|
            string_replace_all(md_value_hint_2, "|", "\\|");
 | 
						|
            file << " " << md_value_hint_2;
 | 
						|
        }
 | 
						|
        // help text
 | 
						|
        std::string md_help(opt.help);
 | 
						|
        string_replace_all(md_help, "\n", "<br/>");
 | 
						|
        string_replace_all(md_help, "|", "\\|");
 | 
						|
        file << "` | " << md_help << " |\n";
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
int main(int, char **) {
 | 
						|
    export_md("autogen-main.md", LLAMA_EXAMPLE_MAIN);
 | 
						|
    export_md("autogen-server.md", LLAMA_EXAMPLE_SERVER);
 | 
						|
 | 
						|
    return 0;
 | 
						|
}
 |