mirror of
https://github.com/Mintplex-Labs/langchain-python.git
synced 2026-07-21 00:35:23 -04:00
0fce8ef178
This PR adds `KuzuGraph` and `KuzuQAChain` for interacting with [Kùzu database](https://github.com/kuzudb/kuzu). Kùzu is an in-process property graph database management system (GDBMS) built for query speed and scalability. The `KuzuGraph` and `KuzuQAChain` provide the same functionality as the existing integration with NebulaGraph and Neo4j and enables query generation and question answering over Kùzu database. A notebook example and a simple test case have also been added. --------- Co-authored-by: Dev 2049 <dev.dev2049@gmail.com>
8 lines
326 B
Python
8 lines
326 B
Python
"""Graph implementations."""
|
|
from langchain.graphs.kuzu_graph import KuzuGraph
|
|
from langchain.graphs.nebula_graph import NebulaGraph
|
|
from langchain.graphs.neo4j_graph import Neo4jGraph
|
|
from langchain.graphs.networkx_graph import NetworkxEntityGraph
|
|
|
|
__all__ = ["NetworkxEntityGraph", "Neo4jGraph", "NebulaGraph", "KuzuGraph"]
|