From 4fd1f214c106c6c963a1242a748bf04060ae1654 Mon Sep 17 00:00:00 2001 From: yangdx Date: Mon, 17 Feb 2025 03:57:58 +0800 Subject: [PATCH] Add verbose debug output option to API configuration - Introduced `--verbose` flag - Defaults to `False` --- lightrag/api/README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/lightrag/api/README.md b/lightrag/api/README.md index d48b6732..69023685 100644 --- a/lightrag/api/README.md +++ b/lightrag/api/README.md @@ -222,6 +222,7 @@ You can select storage implementation by enviroment variables or command line a | --max-embed-tokens | 8192 | Maximum embedding token size | | --timeout | None | Timeout in seconds (useful when using slow AI). Use None for infinite timeout | | --log-level | INFO | Logging level (DEBUG, INFO, WARNING, ERROR, CRITICAL) | +| --verbose | False | Verbose debug output (True, Flase) | | --key | None | API key for authentication. Protects lightrag server against unauthorized access | | --ssl | False | Enable HTTPS | | --ssl-certfile | None | Path to SSL certificate file (required if --ssl is enabled) |