ArnoChen
commited on
Commit
·
973c7b6
1
Parent(s):
9bf5e59
disabled check_storage_env_vars
Browse filesbecause the configurations of many backends can be read from the configuration file instead of environment variables.
- lightrag/lightrag.py +1 -1
lightrag/lightrag.py
CHANGED
@@ -426,7 +426,7 @@ class LightRAG:
|
|
426 |
# Verify storage implementation compatibility
|
427 |
self.verify_storage_implementation(storage_type, storage_name)
|
428 |
# Check environment variables
|
429 |
-
self.check_storage_env_vars(storage_name)
|
430 |
|
431 |
# Ensure vector_db_storage_cls_kwargs has required fields
|
432 |
default_vector_db_kwargs = {
|
|
|
426 |
# Verify storage implementation compatibility
|
427 |
self.verify_storage_implementation(storage_type, storage_name)
|
428 |
# Check environment variables
|
429 |
+
# self.check_storage_env_vars(storage_name)
|
430 |
|
431 |
# Ensure vector_db_storage_cls_kwargs has required fields
|
432 |
default_vector_db_kwargs = {
|