This commit is contained in:
ArnoChen
2025-02-09 22:22:44 +08:00
parent 7f407ce949
commit c1d7fbe02b
2 changed files with 2 additions and 2 deletions

View File

@@ -320,7 +320,7 @@ class LightRAG:
text = await self.chunk_entity_relation_graph.get_all_labels()
return text
async def get_graps(self, nodel_label: str, max_depth: int):
async def get_graphs(self, nodel_label: str, max_depth: int):
return await self.chunk_entity_relation_graph.get_knowledge_graph(
node_label=nodel_label, max_depth=max_depth
)