From 12d11cee5c00cf5a1928364878e8a212a10f5947 Mon Sep 17 00:00:00 2001 From: Concedo <39025047+LostRuins@users.noreply.github.com> Date: Sat, 6 Dec 2025 09:21:56 +0800 Subject: [PATCH] added url to docs --- koboldcpp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koboldcpp.py b/koboldcpp.py index a9e351b19..fbea73135 100755 --- a/koboldcpp.py +++ b/koboldcpp.py @@ -3904,7 +3904,7 @@ Change Mode
if response_body is None: self.send_response(404) self.end_headers(content_type='text/html') - rp = f"Error: KoboldCpp HTTP Server is running, but this endpoint does not exist. Please check the URL.
Current path: {self.path}" + rp = f"Error: KoboldCpp HTTP Server is running, but this endpoint does not exist. Please check the URL and METHOD.
[Read API documentation here]

Current path: {self.path}" self.wfile.write(rp.encode()) else: self.send_response(200)