From 253833475fc75d4228a39dad34bee554bf5469a0 Mon Sep 17 00:00:00 2001 From: yangdx Date: Mon, 7 Jul 2025 01:26:27 +0800 Subject: [PATCH] Add workspace info to splash screen display --- lightrag/api/utils_api.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lightrag/api/utils_api.py b/lightrag/api/utils_api.py index 13ec4ddd..e55e2a11 100644 --- a/lightrag/api/utils_api.py +++ b/lightrag/api/utils_api.py @@ -284,8 +284,10 @@ def display_splash_screen(args: argparse.Namespace) -> None: ASCIIColors.yellow(f"{args.vector_storage}") ASCIIColors.white(" ├─ Graph Storage: ", end="") ASCIIColors.yellow(f"{args.graph_storage}") - ASCIIColors.white(" └─ Document Status Storage: ", end="") + ASCIIColors.white(" ├─ Document Status Storage: ", end="") ASCIIColors.yellow(f"{args.doc_status_storage}") + ASCIIColors.white(" └─ Workspace: ", end="") + ASCIIColors.yellow(f"{args.workspace if args.workspace else '-'}") # Server Status ASCIIColors.green("\n✨ Server starting up...\n")