From fe270a9ebecc960fe1119874f9961fea49393514 Mon Sep 17 00:00:00 2001 From: yangdx Date: Mon, 31 Mar 2025 12:18:53 +0800 Subject: [PATCH] Remove some graph storage support: MongoDB, TiDB and Oracle --- lightrag/kg/__init__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lightrag/kg/__init__.py b/lightrag/kg/__init__.py index 4943fc1d..91d42d81 100644 --- a/lightrag/kg/__init__.py +++ b/lightrag/kg/__init__.py @@ -14,12 +14,12 @@ STORAGE_IMPLEMENTATIONS = { "implementations": [ "NetworkXStorage", "Neo4JStorage", - "MongoGraphStorage", - "TiDBGraphStorage", + # "MongoGraphStorage", + # "TiDBGraphStorage", "AGEStorage", "GremlinStorage", "PGGraphStorage", - "OracleGraphStorage", + # "OracleGraphStorage", ], "required_methods": ["upsert_node", "upsert_edge"], },