From 539fcd5ebb2f0fa87bd9176c564e1608163d9cf1 Mon Sep 17 00:00:00 2001 From: yangdx Date: Sat, 29 Mar 2025 03:42:51 +0800 Subject: [PATCH] Update env file warning message to be more specific --- lightrag/api/utils_api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lightrag/api/utils_api.py b/lightrag/api/utils_api.py index 75e42c92..02715b87 100644 --- a/lightrag/api/utils_api.py +++ b/lightrag/api/utils_api.py @@ -25,7 +25,7 @@ def check_env_file(): """ if not os.path.exists(".env"): warning_msg = ( - "Warning: .env file not found. Some features may not work properly." + "Warning: Startup directory must contain .env file for multi-instance support." ) ASCIIColors.yellow(warning_msg)