From 618fda50098ead27d51e9d636844bd3a26e177c1 Mon Sep 17 00:00:00 2001 From: deadprogram Date: Tue, 25 Apr 2023 19:55:25 +0200 Subject: [PATCH] examples : switch input_noecho to input_echo to remove negation Signed-off-by: deadprogram --- examples/main/main.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/examples/main/main.cpp b/examples/main/main.cpp index f9c9e9d98fd86..9ed7babe97fba 100644 --- a/examples/main/main.cpp +++ b/examples/main/main.cpp @@ -250,7 +250,7 @@ int main(int argc, char ** argv) { } bool is_antiprompt = false; - bool input_noecho = false; + bool input_echo = true; int n_past = 0; int n_remain = params.n_predict; @@ -340,7 +340,7 @@ int main(int argc, char ** argv) { embd.push_back(id); // echo this to console - input_noecho = false; + input_echo = true; // decrement remaining sampling budget --n_remain; @@ -358,14 +358,14 @@ int main(int argc, char ** argv) { } // display text - if (!input_noecho) { + if (input_echo) { for (auto id : embd) { printf("%s", llama_token_to_str(ctx, id)); } fflush(stdout); } // reset color to default if we there is no pending user input - if (!input_noecho && (int)embd_inp.size() == n_consumed) { + if (input_echo && (int)embd_inp.size() == n_consumed) { set_console_color(con_st, CONSOLE_COLOR_DEFAULT); } @@ -460,7 +460,7 @@ int main(int argc, char ** argv) { n_remain -= line_inp.size(); } - input_noecho = true; // do not echo this again + input_echo = false; // do not echo this again } if (n_past > 0) {