Remove unused params
This commit is contained in:
parent
e30afe8686
commit
90a07b0420
2 changed files with 0 additions and 6 deletions
|
|
@ -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,
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue