mirror of
https://github.com/hwchase17/langchain.git
synced 2025-06-03 21:54:04 +00:00
**Description:** Add support for querying TigerGraph databases through the InquiryAI service. **Issue**: N/A **Dependencies:** N/A **Twitter handle:** @TigerGraphDB
20 lines
359 B
Python
20 lines
359 B
Python
from langchain_community.graphs import __all__
|
|
|
|
EXPECTED_ALL = [
|
|
"MemgraphGraph",
|
|
"NetworkxEntityGraph",
|
|
"Neo4jGraph",
|
|
"NebulaGraph",
|
|
"NeptuneGraph",
|
|
"KuzuGraph",
|
|
"HugeGraph",
|
|
"RdfGraph",
|
|
"ArangoGraph",
|
|
"FalkorDBGraph",
|
|
"TigerGraph",
|
|
]
|
|
|
|
|
|
def test_all_imports() -> None:
|
|
assert set(__all__) == set(EXPECTED_ALL)
|