[changes] Remove the unused config_id

This commit is contained in:
lanceyq
2026-03-20 20:43:29 +08:00
parent 9d8c26b999
commit e3795fe1ed
3 changed files with 2 additions and 7 deletions

View File

@@ -174,7 +174,6 @@ async def write(
# 写入成功后,异步触发聚类(不阻塞写入响应)
schedule_clustering_after_write(
all_entity_nodes,
config_id=config_id,
llm_model_id=str(memory_config.llm_model_id) if memory_config.llm_model_id else None,
embedding_model_id=str(memory_config.embedding_model_id) if memory_config.embedding_model_id else None,
)

View File

@@ -69,13 +69,11 @@ class LabelPropagationEngine:
def __init__(
self,
connector: Neo4jConnector,
config_id: Optional[str] = None,
llm_model_id: Optional[str] = None,
embedding_model_id: Optional[str] = None,
):
self.connector = connector
self.repo = CommunityRepository(connector)
self.config_id = config_id
self.llm_model_id = llm_model_id
self.embedding_model_id = embedding_model_id