disabled check_storage_env_vars

because the configurations of many backends can be read from the configuration file instead of environment variables.
This commit is contained in:
ArnoChen
2025-02-14 02:50:11 +08:00
parent 637e7efa83
commit 0f12b400e4

View File

@@ -426,7 +426,7 @@ class LightRAG:
# Verify storage implementation compatibility # Verify storage implementation compatibility
self.verify_storage_implementation(storage_type, storage_name) self.verify_storage_implementation(storage_type, storage_name)
# Check environment variables # Check environment variables
self.check_storage_env_vars(storage_name) # self.check_storage_env_vars(storage_name)
# Ensure vector_db_storage_cls_kwargs has required fields # Ensure vector_db_storage_cls_kwargs has required fields
default_vector_db_kwargs = { default_vector_db_kwargs = {