From 464042f2c08471d0e48e6661151e149307953a94 Mon Sep 17 00:00:00 2001 From: ArnoChen Date: Thu, 13 Feb 2025 18:03:09 +0800 Subject: [PATCH] display webui and graph viewer links in splash screen --- lightrag/api/lightrag_server.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/lightrag/api/lightrag_server.py b/lightrag/api/lightrag_server.py index 1fdf5915..b7d04a92 100644 --- a/lightrag/api/lightrag_server.py +++ b/lightrag/api/lightrag_server.py @@ -272,6 +272,10 @@ def display_splash_screen(args: argparse.Namespace) -> None: ASCIIColors.yellow(f"{protocol}://localhost:{args.port}/docs") ASCIIColors.white(" └─ Alternative Documentation (local): ", end="") ASCIIColors.yellow(f"{protocol}://localhost:{args.port}/redoc") + ASCIIColors.white(" ├─ WebUI (local): ", end="") + ASCIIColors.yellow(f"{protocol}://localhost:{args.port}/webui") + ASCIIColors.white(" ├─ Graph Viewer (local): ", end="") + ASCIIColors.yellow(f"{protocol}://localhost:{args.port}/graph-viewer") ASCIIColors.yellow("\n📝 Note:") ASCIIColors.white(""" Since the server is running on 0.0.0.0: