@@ -274,10 +274,10 @@ bool gpt_params_parse(int argc, char ** argv, gpt_params & params) {
274
274
params.embedding = true ;
275
275
} else if (arg == " --interactive-first" ) {
276
276
params.interactive_first = true ;
277
- } else if (arg == " --author-mode" ) {
278
- params.author_mode = true ;
279
277
} else if (arg == " -ins" || arg == " --instruct" ) {
280
278
params.instruct = true ;
279
+ } else if (arg == " --multiline-input" ) {
280
+ params.multiline_input = true ;
281
281
} else if (arg == " --color" ) {
282
282
params.use_color = true ;
283
283
} else if (arg == " --mlock" ) {
@@ -368,7 +368,7 @@ void gpt_print_usage(int /*argc*/, char ** argv, const gpt_params & params) {
368
368
fprintf (stderr, " -i, --interactive run in interactive mode\n " );
369
369
fprintf (stderr, " --interactive-first run in interactive mode and wait for input right away\n " );
370
370
fprintf (stderr, " -ins, --instruct run in instruction mode (use with Alpaca models)\n " );
371
- fprintf (stderr, " --author-mode allows you to write or paste multiple lines without ending each in '\\ '\n " );
371
+ fprintf (stderr, " --multiline-input allows you to write or paste multiple lines without ending each in '\\ '\n " );
372
372
fprintf (stderr, " -r PROMPT, --reverse-prompt PROMPT\n " );
373
373
fprintf (stderr, " run in interactive mode and poll user input upon seeing PROMPT (can be\n " );
374
374
fprintf (stderr, " specified more than once for multiple prompts).\n " );
@@ -644,7 +644,7 @@ bool console_readline(console_state & con_st, std::string & line) {
644
644
}
645
645
}
646
646
647
- bool has_more = con_st.author_mode ;
647
+ bool has_more = con_st.multiline_input ;
648
648
if (is_special_char) {
649
649
fputs (" \b \b " , stdout); // Move cursor back, print a space, and move cursor back again
650
650
0 commit comments