Skip to content

Commit

Permalink
feat: Nebula Graph integration (#968)
Browse files Browse the repository at this point in the history
  • Loading branch information
Wendong-Fan authored Sep 18, 2024
1 parent b8e1f5c commit 147161e
Show file tree
Hide file tree
Showing 7 changed files with 1,204 additions and 49 deletions.
2 changes: 2 additions & 0 deletions camel/storages/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
# =========== Copyright 2023 @ CAMEL-AI.org. All Rights Reserved. ===========

from .graph_storages.base import BaseGraphStorage
from .graph_storages.nebula_graph import NebulaGraph
from .graph_storages.neo4j_graph import Neo4jGraph
from .key_value_storages.base import BaseKeyValueStorage
from .key_value_storages.in_memory import InMemoryKeyValueStorage
Expand Down Expand Up @@ -40,4 +41,5 @@
'MilvusStorage',
'BaseGraphStorage',
'Neo4jGraph',
'NebulaGraph',
]
2 changes: 2 additions & 0 deletions camel/storages/graph_storages/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,12 @@

from .base import BaseGraphStorage
from .graph_element import GraphElement
from .nebula_graph import NebulaGraph
from .neo4j_graph import Neo4jGraph

__all__ = [
'BaseGraphStorage',
'GraphElement',
'Neo4jGraph',
'NebulaGraph',
]
Loading

0 comments on commit 147161e

Please sign in to comment.