Remove unused params
This commit is contained in:
@@ -1152,9 +1152,6 @@ class LightRAG:
|
|||||||
try:
|
try:
|
||||||
chunk_results = await extract_entities(
|
chunk_results = await extract_entities(
|
||||||
chunk,
|
chunk,
|
||||||
knowledge_graph_inst=self.chunk_entity_relation_graph,
|
|
||||||
entity_vdb=self.entities_vdb,
|
|
||||||
relationships_vdb=self.relationships_vdb,
|
|
||||||
global_config=asdict(self),
|
global_config=asdict(self),
|
||||||
pipeline_status=pipeline_status,
|
pipeline_status=pipeline_status,
|
||||||
pipeline_status_lock=pipeline_status_lock,
|
pipeline_status_lock=pipeline_status_lock,
|
||||||
|
@@ -616,9 +616,6 @@ async def merge_nodes_and_edges(
|
|||||||
|
|
||||||
async def extract_entities(
|
async def extract_entities(
|
||||||
chunks: dict[str, TextChunkSchema],
|
chunks: dict[str, TextChunkSchema],
|
||||||
knowledge_graph_inst: BaseGraphStorage,
|
|
||||||
entity_vdb: BaseVectorStorage,
|
|
||||||
relationships_vdb: BaseVectorStorage,
|
|
||||||
global_config: dict[str, str],
|
global_config: dict[str, str],
|
||||||
pipeline_status: dict = None,
|
pipeline_status: dict = None,
|
||||||
pipeline_status_lock=None,
|
pipeline_status_lock=None,
|
||||||
|
Reference in New Issue
Block a user