]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/commitdiff
main : minor (#7462)
authorGeorgi Gerganov <redacted>
Thu, 23 May 2024 06:43:24 +0000 (09:43 +0300)
committerGeorgi Gerganov <redacted>
Thu, 23 May 2024 06:43:49 +0000 (09:43 +0300)
examples/main/main.cpp

index 791dc61a72ddadf26baf613a449d045845419820..09fa85fce0ee35864b757d56a50eb5b8c202058e 100644 (file)
@@ -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";
         }