yangdx commited on
Commit
f1ce9cb
·
1 Parent(s): 82a6f2c

Update env file warning message to be more specific

Browse files
Files changed (1) hide show
  1. lightrag/api/utils_api.py +1 -1
lightrag/api/utils_api.py CHANGED
@@ -25,7 +25,7 @@ def check_env_file():
25
  """
26
  if not os.path.exists(".env"):
27
  warning_msg = (
28
- "Warning: .env file not found. Some features may not work properly."
29
  )
30
  ASCIIColors.yellow(warning_msg)
31
 
 
25
  """
26
  if not os.path.exists(".env"):
27
  warning_msg = (
28
+ "Warning: Startup directory must contain .env file for multi-instance support."
29
  )
30
  ASCIIColors.yellow(warning_msg)
31