]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/commitdiff
server : log requests to /v1/completions (#16495)
authorRadoslav Gerganov <redacted>
Fri, 10 Oct 2025 10:22:27 +0000 (13:22 +0300)
committerGitHub <redacted>
Fri, 10 Oct 2025 10:22:27 +0000 (13:22 +0300)
tools/server/server.cpp

index 41ecb279feb890cbb82134a0ef0589f113e648a0..39c950c15dfe0d40a1320eed978e2b7d459a804d 100644 (file)
@@ -4368,7 +4368,7 @@ struct server_context {
 
 static void log_server_request(const httplib::Request & req, const httplib::Response & res) {
     // skip GH copilot requests when using default port
-    if (req.path == "/v1/health" || req.path == "/v1/completions") {
+    if (req.path == "/v1/health") {
         return;
     }