Merge pull request #378 from doosenn/main

fix neo4jstorage bug
This commit is contained in:
zrguo
2024-12-04 11:11:19 +08:00
committed by GitHub
3 changed files with 5 additions and 3 deletions

View File

@@ -186,7 +186,9 @@ class LightRAG:
embedding_func=self.embedding_func,
)
self.chunk_entity_relation_graph = self.graph_storage_cls(
namespace="chunk_entity_relation", global_config=asdict(self)
namespace="chunk_entity_relation",
global_config=asdict(self),
embedding_func=self.embedding_func,
)
####
# add embedding func by walter over