@@ -168,10 +168,10 @@ bool gpt_params_parse(int argc, char ** argv, gpt_params & params) {
168168 params.embedding = true ;
169169 } else if (arg == " --interactive-first" ) {
170170 params.interactive_first = true ;
171- } else if (arg == " --author-mode" ) {
172- params.author_mode = true ;
173171 } else if (arg == " -ins" || arg == " --instruct" ) {
174172 params.instruct = true ;
173+ } else if (arg == " --multiline-input" ) {
174+ params.multiline_input = true ;
175175 } else if (arg == " --color" ) {
176176 params.use_color = true ;
177177 } else if (arg == " --mlock" ) {
@@ -232,7 +232,7 @@ void gpt_print_usage(int /*argc*/, char ** argv, const gpt_params & params) {
232232 fprintf (stderr, " -i, --interactive run in interactive mode\n " );
233233 fprintf (stderr, " --interactive-first run in interactive mode and wait for input right away\n " );
234234 fprintf (stderr, " -ins, --instruct run in instruction mode (use with Alpaca models)\n " );
235- fprintf (stderr, " --author-mode allows you to write or paste multiple lines without ending each in '\\ '\n " );
235+ fprintf (stderr, " --multiline-input allows you to write or paste multiple lines without ending each in '\\ '\n " );
236236 fprintf (stderr, " -r PROMPT, --reverse-prompt PROMPT\n " );
237237 fprintf (stderr, " run in interactive mode and poll user input upon seeing PROMPT (can be\n " );
238238 fprintf (stderr, " specified more than once for multiple prompts).\n " );
@@ -458,7 +458,7 @@ bool console_readline(console_state & con_st, std::string & line) {
458458 }
459459 }
460460
461- bool has_more = con_st.author_mode ;
461+ bool has_more = con_st.multiline_input ;
462462 if (is_special_char) {
463463 fputs (" \b \b " , stdout); // Move cursor back, print a space, and move cursor back again
464464
0 commit comments