From 08779398b062fd63287bf5e79b5e5733d45bfe0e Mon Sep 17 00:00:00 2001 From: lxobr <122801072+lxobr@users.noreply.github.com> Date: Tue, 13 Jan 2026 16:15:49 +0100 Subject: [PATCH] fix: deduplicate skeleton edges --- cognee/modules/graph/cognee_graph/CogneeGraph.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/cognee/modules/graph/cognee_graph/CogneeGraph.py b/cognee/modules/graph/cognee_graph/CogneeGraph.py index bec9b15fd..f67c026d3 100644 --- a/cognee/modules/graph/cognee_graph/CogneeGraph.py +++ b/cognee/modules/graph/cognee_graph/CogneeGraph.py @@ -215,9 +215,6 @@ class CogneeGraph(CogneeAbstractGraph): edge_penalty=triplet_distance_penalty, ) self.add_edge(edge) - - source_node.add_skeleton_edge(edge) - target_node.add_skeleton_edge(edge) else: raise EntityNotFoundError( message=f"Edge references nonexistent nodes: {source_id} -> {target_id}"