diff options
author | Georgi Gerganov <ggerganov@gmail.com> | 2024-05-23 09:43:24 +0300 |
---|---|---|
committer | Georgi Gerganov <ggerganov@gmail.com> | 2024-05-23 09:43:49 +0300 |
commit | fbf777d2b9c30e7569e3d1c149501c1e31d9b5b9 (patch) | |
tree | ce3fe9474d8f1c17afd52a57b62c25ce6d72e914 | |
parent | cd93a28cb1446319af5e2f4b416174c3a8e43546 (diff) |
main : minor (#7462)
-rw-r--r-- | examples/main/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/main/main.cpp b/examples/main/main.cpp index 791dc61a..09fa85fc 100644 --- a/examples/main/main.cpp +++ b/examples/main/main.cpp @@ -474,12 +474,12 @@ int main(int argc, char ** argv) { LOG_TEE("\n\n"); if (params.interactive) { - const char *control_message; + const char * control_message; if (params.multiline_input) { - control_message = " - To return control to LLaMa, end your input with '\\'.\n" + control_message = " - To return control to the AI, end your input with '\\'.\n" " - To return control without starting a new line, end your input with '/'.\n"; } else { - control_message = " - Press Return to return control to LLaMa.\n" + control_message = " - Press Return to return control to the AI.\n" " - To return control without starting a new line, end your input with '/'.\n" " - If you want to submit another line, end your input with '\\'.\n"; } |