Skip to content

Commit ad236f7

Browse files
committed
Add support for nebula graph database
1 parent 9487eca commit ad236f7

File tree

2 files changed

+567
-0
lines changed

2 files changed

+567
-0
lines changed

‎lightrag/kg/__init__.py‎

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
"NetworkXStorage",
1515
"Neo4JStorage",
1616
"PGGraphStorage",
17+
"NebulaStorage",
1718
# "AGEStorage",
1819
# "MongoGraphStorage",
1920
# "TiDBGraphStorage",
@@ -55,6 +56,7 @@
5556
# Graph Storage Implementations
5657
"NetworkXStorage": [],
5758
"Neo4JStorage": ["NEO4J_URI", "NEO4J_USERNAME", "NEO4J_PASSWORD"],
59+
"NebulaStorage": ["NEBULA_HOSTS", "NEBULA_USER", "NEBULA_PASSWORD","NEBULA_POOL_SIZE"],
5860
"MongoGraphStorage": [],
5961
# "TiDBGraphStorage": ["TIDB_USER", "TIDB_PASSWORD", "TIDB_DATABASE"],
6062
"AGEStorage": [
@@ -90,6 +92,7 @@
9092
"NanoVectorDBStorage": ".kg.nano_vector_db_impl",
9193
"JsonDocStatusStorage": ".kg.json_doc_status_impl",
9294
"Neo4JStorage": ".kg.neo4j_impl",
95+
"NebulaStorage": ".kg.nebula_impl",
9396
"MilvusVectorDBStorage": ".kg.milvus_impl",
9497
"MongoKVStorage": ".kg.mongo_impl",
9598
"MongoDocStatusStorage": ".kg.mongo_impl",

0 commit comments

Comments
 (0)