Skip to content

Commit 147161e

Browse files
authored
feat: Nebula Graph integration (#968)
1 parent b8e1f5c commit 147161e

File tree

7 files changed

+1204
-49
lines changed

7 files changed

+1204
-49
lines changed

camel/storages/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
# =========== Copyright 2023 @ CAMEL-AI.org. All Rights Reserved. ===========
1414

1515
from .graph_storages.base import BaseGraphStorage
16+
from .graph_storages.nebula_graph import NebulaGraph
1617
from .graph_storages.neo4j_graph import Neo4jGraph
1718
from .key_value_storages.base import BaseKeyValueStorage
1819
from .key_value_storages.in_memory import InMemoryKeyValueStorage
@@ -40,4 +41,5 @@
4041
'MilvusStorage',
4142
'BaseGraphStorage',
4243
'Neo4jGraph',
44+
'NebulaGraph',
4345
]

camel/storages/graph_storages/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,12 @@
1414

1515
from .base import BaseGraphStorage
1616
from .graph_element import GraphElement
17+
from .nebula_graph import NebulaGraph
1718
from .neo4j_graph import Neo4jGraph
1819

1920
__all__ = [
2021
'BaseGraphStorage',
2122
'GraphElement',
2223
'Neo4jGraph',
24+
'NebulaGraph',
2325
]

0 commit comments

Comments
 (0)