From 5e9471ebadb26f248955a36586978e307849ab2e Mon Sep 17 00:00:00 2001 From: hajdul88 <52442977+hajdul88@users.noreply.github.com> Date: Tue, 14 Jan 2025 09:16:46 +0100 Subject: [PATCH] fix: removes get_model_independent_graph method from abstract class as graphiti does not support networkx --- cognee/infrastructure/databases/graph/graph_db_interface.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/cognee/infrastructure/databases/graph/graph_db_interface.py b/cognee/infrastructure/databases/graph/graph_db_interface.py index b38fe610b..30acc1b95 100644 --- a/cognee/infrastructure/databases/graph/graph_db_interface.py +++ b/cognee/infrastructure/databases/graph/graph_db_interface.py @@ -51,10 +51,6 @@ class GraphDBInterface(Protocol): ): raise NotImplementedError - @abstractmethod - async def get_model_independent_graph_data(self): - raise NotImplementedError - @abstractmethod async def get_graph_data(self): raise NotImplementedError