Remove unused params

This commit is contained in:
yangdx
2025-04-28 21:14:19 +08:00
parent e30afe8686
commit 90a07b0420
2 changed files with 0 additions and 6 deletions

View File

@@ -1152,9 +1152,6 @@ class LightRAG:
try:
chunk_results = await extract_entities(
chunk,
knowledge_graph_inst=self.chunk_entity_relation_graph,
entity_vdb=self.entities_vdb,
relationships_vdb=self.relationships_vdb,
global_config=asdict(self),
pipeline_status=pipeline_status,
pipeline_status_lock=pipeline_status_lock,

View File

@@ -616,9 +616,6 @@ async def merge_nodes_and_edges(
async def extract_entities(
chunks: dict[str, TextChunkSchema],
knowledge_graph_inst: BaseGraphStorage,
entity_vdb: BaseVectorStorage,
relationships_vdb: BaseVectorStorage,
global_config: dict[str, str],
pipeline_status: dict = None,
pipeline_status_lock=None,