From fee887fe31925f01946019f15af262d40cd0944a Mon Sep 17 00:00:00 2001 From: HanishKVC Date: Fri, 26 Apr 2024 10:31:17 +0530 Subject: [PATCH] ChatON:Common:Update the cmdline argument name used Had forgotten to update it before --- common/common.cpp | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/common/common.cpp b/common/common.cpp index 46789da41..344771433 100644 --- a/common/common.cpp +++ b/common/common.cpp @@ -1441,8 +1441,10 @@ void gpt_print_usage(int /*argc*/, char ** argv, const gpt_params & params) { printf(" --interactive-first run in interactive mode and wait for input right away\n"); printf(" -ins, --instruct run in instruction mode (use with Alpaca models)\n"); printf(" -cml, --chatml run in chatml mode (use with ChatML-compatible models)\n"); - printf(" --chaton-json specify the json file containing chat-handshake-template-standard(s)"); - printf(" --chaton-template-id specify the specific template standard to use from loaded json file"); + printf(" --chaton-meta-json JsonFile\n"); + printf(" specify the json file containing chat-handshake-template-standard(s)"); + printf(" --chaton-template-id ChatHandshakeTemplateId\n"); + printf(" specify the specific template standard to use from loaded json file"); printf(" --multiline-input allows you to write or paste multiple lines without ending each in '\\'\n"); printf(" -r PROMPT, --reverse-prompt PROMPT\n"); printf(" halt generation at PROMPT, return control in interactive mode\n");