@@ -168,8 +168,8 @@ bool gpt_params_parse(int argc, char ** argv, gpt_params & params) {
168
168
params.embedding = true ;
169
169
} else if (arg == " --interactive-first" ) {
170
170
params.interactive_first = true ;
171
- } else if (arg == " --author-mode " ) {
172
- params.author_mode = true ;
171
+ } else if (arg == " --multiline-input " ) {
172
+ params.multiline_input = true ;
173
173
} else if (arg == " -ins" || arg == " --instruct" ) {
174
174
params.instruct = true ;
175
175
} else if (arg == " --color" ) {
@@ -232,7 +232,7 @@ void gpt_print_usage(int /*argc*/, char ** argv, const gpt_params & params) {
232
232
fprintf (stderr, " -i, --interactive run in interactive mode\n " );
233
233
fprintf (stderr, " --interactive-first run in interactive mode and wait for input right away\n " );
234
234
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 " );
236
236
fprintf (stderr, " -r PROMPT, --reverse-prompt PROMPT\n " );
237
237
fprintf (stderr, " run in interactive mode and poll user input upon seeing PROMPT (can be\n " );
238
238
fprintf (stderr, " specified more than once for multiple prompts).\n " );
@@ -458,7 +458,7 @@ bool console_readline(console_state & con_st, std::string & line) {
458
458
}
459
459
}
460
460
461
- bool has_more = con_st.author_mode ;
461
+ bool has_more = con_st.multiline_input ;
462
462
if (is_special_char) {
463
463
fputs (" \b \b " , stdout); // Move cursor back, print a space, and move cursor back again
464
464
0 commit comments