@@ -218,10 +218,10 @@ bool gpt_params_parse(int argc, char ** argv, gpt_params & params) {
218
218
params.embedding = true ;
219
219
} else if (arg == " --interactive-first" ) {
220
220
params.interactive_first = true ;
221
- } else if (arg == " --author-mode" ) {
222
- params.author_mode = true ;
223
221
} else if (arg == " -ins" || arg == " --instruct" ) {
224
222
params.instruct = true ;
223
+ } else if (arg == " --multiline-input" ) {
224
+ params.multiline_input = true ;
225
225
} else if (arg == " --color" ) {
226
226
params.use_color = true ;
227
227
} else if (arg == " --mlock" ) {
@@ -303,7 +303,7 @@ void gpt_print_usage(int /*argc*/, char ** argv, const gpt_params & params) {
303
303
fprintf (stderr, " -i, --interactive run in interactive mode\n " );
304
304
fprintf (stderr, " --interactive-first run in interactive mode and wait for input right away\n " );
305
305
fprintf (stderr, " -ins, --instruct run in instruction mode (use with Alpaca models)\n " );
306
- fprintf (stderr, " --author-mode allows you to write or paste multiple lines without ending each in '\\ '\n " );
306
+ fprintf (stderr, " --multiline-input allows you to write or paste multiple lines without ending each in '\\ '\n " );
307
307
fprintf (stderr, " -r PROMPT, --reverse-prompt PROMPT\n " );
308
308
fprintf (stderr, " run in interactive mode and poll user input upon seeing PROMPT (can be\n " );
309
309
fprintf (stderr, " specified more than once for multiple prompts).\n " );
@@ -544,7 +544,7 @@ bool console_readline(console_state & con_st, std::string & line) {
544
544
}
545
545
}
546
546
547
- bool has_more = con_st.author_mode ;
547
+ bool has_more = con_st.multiline_input ;
548
548
if (is_special_char) {
549
549
fputs (" \b \b " , stdout); // Move cursor back, print a space, and move cursor back again
550
550
0 commit comments