gzdaniel commited on
Commit
4406888
Β·
1 Parent(s): 9e71115

Add workspace info to splash screen display

Browse files
Files changed (1) hide show
  1. lightrag/api/utils_api.py +3 -1
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(" └─ Document Status Storage: ", end="")
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")