mirror of
https://github.com/hwchase17/langchain
synced 2024-10-31 15:20:26 +00:00
0a04e63811
ready for review - mdx link update - colab link update
23 lines
763 B
Plaintext
23 lines
763 B
Plaintext
# ArangoDB
|
||
|
||
>[ArangoDB](https://github.com/arangodb/arangodb) is a scalable graph database system to drive value from connected data, faster. Native graphs, an integrated search engine, and JSON support, via a single query language. ArangoDB runs on-prem, in the cloud – anywhere.
|
||
|
||
## Dependencies
|
||
|
||
Install the [ArangoDB Python Driver](https://github.com/ArangoDB-Community/python-arango) package with
|
||
```bash
|
||
pip install python-arango
|
||
```
|
||
|
||
## Graph QA Chain
|
||
|
||
Connect your ArangoDB Database with a Chat Model to get insights on your data.
|
||
|
||
See the notebook example [here](/docs/use_cases/more/graph/graph_arangodb_qa.html).
|
||
|
||
```python
|
||
from arango import ArangoClient
|
||
|
||
from langchain.graphs import ArangoGraph
|
||
from langchain.chains import ArangoGraphQAChain
|
||
``` |