mirror of
https://github.com/csunny/DB-GPT.git
synced 2025-09-27 20:38:30 +00:00
Co-authored-by: Florian <fanzhidongyzby@163.com> Co-authored-by: KingSkyLi <15566300566@163.com> Co-authored-by: aries_ckt <916701291@qq.com> Co-authored-by: Fangyin Cheng <staneyffer@gmail.com> Co-authored-by: yvonneyx <zhuyuxin0627@gmail.com>
20 lines
434 B
Python
20 lines
434 B
Python
"""Neo4j store."""
|
|
import logging
|
|
|
|
from dbgpt._private.pydantic import ConfigDict
|
|
from dbgpt.storage.graph_store.base import GraphStoreBase, GraphStoreConfig
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
|
|
class Neo4jStoreConfig(GraphStoreConfig):
|
|
"""Neo4j store config."""
|
|
|
|
model_config = ConfigDict(arbitrary_types_allowed=True)
|
|
|
|
|
|
class Neo4jStore(GraphStoreBase):
|
|
"""Neo4j graph store."""
|
|
|
|
# todo: add neo4j implementation
|