fix neo4jstorage bug

This commit is contained in:
zuoluo
2024-12-03 16:04:58 +08:00
parent 685f7b1e80
commit 801619084f
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