Add workspace info to splash screen display
Browse files
lightrag/api/utils_api.py
CHANGED
@@ -284,8 +284,10 @@ def display_splash_screen(args: argparse.Namespace) -> None:
|
|
284 |
ASCIIColors.yellow(f"{args.vector_storage}")
|
285 |
ASCIIColors.white(" ββ Graph Storage: ", end="")
|
286 |
ASCIIColors.yellow(f"{args.graph_storage}")
|
287 |
-
ASCIIColors.white("
|
288 |
ASCIIColors.yellow(f"{args.doc_status_storage}")
|
|
|
|
|
289 |
|
290 |
# Server Status
|
291 |
ASCIIColors.green("\n⨠Server starting up...\n")
|
|
|
284 |
ASCIIColors.yellow(f"{args.vector_storage}")
|
285 |
ASCIIColors.white(" ββ Graph Storage: ", end="")
|
286 |
ASCIIColors.yellow(f"{args.graph_storage}")
|
287 |
+
ASCIIColors.white(" ββ Document Status Storage: ", end="")
|
288 |
ASCIIColors.yellow(f"{args.doc_status_storage}")
|
289 |
+
ASCIIColors.white(" ββ Workspace: ", end="")
|
290 |
+
ASCIIColors.yellow(f"{args.workspace if args.workspace else '-'}")
|
291 |
|
292 |
# Server Status
|
293 |
ASCIIColors.green("\n⨠Server starting up...\n")
|