@@ -248,8 +248,8 @@ bool gpt_params_parse(int argc, char ** argv, gpt_params & params) {
248
248
params.antiprompt .push_back (" ### Instruction:\n\n " );
249
249
} else if (arg == " --color" ) {
250
250
params.use_color = true ;
251
- } else if (arg == " --multiline" ) {
252
- params.multiline_mode = true ;
251
+ } else if (arg == " --disable- multiline" ) {
252
+ params.multiline_mode = false ;
253
253
} else if (arg == " --mlock" ) {
254
254
params.use_mlock = true ;
255
255
} else if (arg == " --mtest" ) {
@@ -334,7 +334,7 @@ void gpt_print_usage(char * argv_0, const gpt_params & params) {
334
334
fprintf (stderr, " run in interactive mode and poll user input upon seeing PROMPT (can be\n " );
335
335
fprintf (stderr, " specified more than once for multiple prompts).\n " );
336
336
fprintf (stderr, " --color colorise output to distinguish prompt and user input from generations\n " );
337
- fprintf (stderr, " --multiline multiline mode (use Ctrl+D on Linux/Mac and Ctrl+Z then Return on Windows to toggle multiline)\n " );
337
+ fprintf (stderr, " --disable- multiline disable multiline mode (use Ctrl+D on Linux/Mac and Ctrl+Z then Return on Windows to toggle multiline)\n " );
338
338
fprintf (stderr, " -s SEED, --seed SEED RNG seed (default: -1, use random seed for <= 0)\n " );
339
339
fprintf (stderr, " -t N, --threads N number of threads to use during computation (default: %d)\n " , params.n_threads );
340
340
fprintf (stderr, " -p PROMPT, --prompt PROMPT\n " );
0 commit comments