From 3632271eb98541bd6fd726f4cd2a973d89a195ed Mon Sep 17 00:00:00 2001 From: Xuan Son Nguyen Date: Sun, 30 Nov 2025 12:55:22 +0100 Subject: [PATCH] cli: add migration warning --- tools/main/main.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tools/main/main.cpp b/tools/main/main.cpp index 78b42267b59..960ddbe3910 100644 --- a/tools/main/main.cpp +++ b/tools/main/main.cpp @@ -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;