yangdx
commited on
Commit
·
f1ce9cb
1
Parent(s):
82a6f2c
Update env file warning message to be more specific
Browse files
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:
|
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 |
|