From 5d67f69f59e8f2d8e2fa5cd8d22d5f091f1f1db5 Mon Sep 17 00:00:00 2001 From: Xuan Son Nguyen Date: Tue, 23 Jun 2026 22:49:40 +0200 Subject: [PATCH] remove outdated comment --- tools/cli/cli-server.h | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tools/cli/cli-server.h b/tools/cli/cli-server.h index 50447f2551..d058c84183 100644 --- a/tools/cli/cli-server.h +++ b/tools/cli/cli-server.h @@ -4,9 +4,6 @@ #include "http.h" -// spawn llama-server in a thread and interact with it via a random port -// note: in the future, we may have a server running as daemon and the CLI can connect to it automatically - // llama_server will be available as a dynamic library symbol int llama_server(common_params & params, int argc, char ** argv); void llama_server_terminate(); @@ -28,6 +25,7 @@ struct cli_server { } } + // spawn llama-server in a thread and interact with it via a random port bool start(common_params & params) { port = common_http_get_free_port(); if (port <= 0) {