We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7c2f27 commit 2b00292Copy full SHA for 2b00292
koboldcpp.py
@@ -3840,7 +3840,7 @@ def do_GET(self):
3840
if response_body is None:
3841
self.send_response(404)
3842
self.end_headers(content_type='text/html')
3843
- rp = 'Error: KoboldCpp HTTP Server is running, but this endpoint does not exist. Please check the URL.'
+ rp = f"Error: KoboldCpp HTTP Server is running, but this endpoint does not exist. Please check the URL.<br>Current path: {self.path}"
3844
self.wfile.write(rp.encode())
3845
else:
3846
self.send_response(200)
0 commit comments