From: Xuan-Son Nguyen Date: Sun, 30 Nov 2025 14:32:43 +0000 (+0100) Subject: cli: add migration warning (#17620) X-Git-Tag: upstream/0.0.7446~238 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=3c136b21a35b0efc7282b12857b4e8cba26ddae5;p=pkg%2Fggml%2Fsources%2Fllama.cpp cli: add migration warning (#17620) --- diff --git a/tools/main/main.cpp b/tools/main/main.cpp index 78b42267..960ddbe3 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;