File size: 775 Bytes
8dc9a1e
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# 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 cloudanywhere.

## Installation and Setup

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/integrations/graphs/arangodb).

```python
from arango import ArangoClient

from langchain_community.graphs import ArangoGraph
from langchain.chains import ArangoGraphQAChain
```