]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/commitdiff
cli: add migration warning (#17620)
authorXuan-Son Nguyen <redacted>
Sun, 30 Nov 2025 14:32:43 +0000 (15:32 +0100)
committerGitHub <redacted>
Sun, 30 Nov 2025 14:32:43 +0000 (15:32 +0100)
tools/main/main.cpp

index 78b42267b59c3442be248922793d03a8ac1ae827..960ddbe39101d36bf9455dc7bf4aa0e759a2cefe 100644 (file)
@@ -521,6 +521,12 @@ int main(int argc, char ** argv) {
         is_interacting = params.interactive_first;
     }
 
+    LOG_WRN("*****************************\n");
+    LOG_WRN("IMPORTANT: The current llama-cli will be moved to llama-completion in the near future\n");
+    LOG_WRN("  New llama-cli will have enhanced features and improved user experience\n");
+    LOG_WRN("  More info: https://github.com/ggml-org/llama.cpp/discussions/17618\n");
+    LOG_WRN("*****************************\n");
+
     bool is_antiprompt        = false;
     bool input_echo           = true;
     bool display              = true;