From 25860014636c77be2172bbbeb68a33fefa9f2aa2 Mon Sep 17 00:00:00 2001
From: Joerg Schad <joerg.schad@gmail.com>
Date: Thu, 14 Mar 2024 19:51:46 -0700
Subject: [PATCH] Improved ArangoDB Reader Readme. (#11858)

---
 .../readers/llama-index-readers-arango-db/README.md       | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/llama-index-integrations/readers/llama-index-readers-arango-db/README.md b/llama-index-integrations/readers/llama-index-readers-arango-db/README.md
index d8fef88eb..6e287fd53 100644
--- a/llama-index-integrations/readers/llama-index-readers-arango-db/README.md
+++ b/llama-index-integrations/readers/llama-index-readers-arango-db/README.md
@@ -1,11 +1,11 @@
-# LlamaIndex Readers Integration: Arango Db
+# LlamaIndex Readers Integration: ArangoDB
 
 ```bash
 pip install llama-index-readers-arango-db
 ```
 
-This loader loads documents from ArangoDB. The user specifies a ArangoDB instance to
-initialize the reader. They then specify the collection name and query params to
+This loader loads documents from [ArangoDB](https://github.com/arangodb/arangodb?tab=readme-ov-file#arangodb). The user specifies an ArangoDB instance to
+initialize the reader. They then specify the collection name and query parameters to
 fetch the relevant docs.
 
 ## Usage
@@ -35,4 +35,6 @@ documents = reader.load_data(
 )
 ```
 
+A demo notebook is available [here](https://colab.research.google.com/github/arangodb/interactive_tutorials/blob/master/notebooks/example_output/Langchain_Full_output.ipynb).
+
 This loader is designed to be used as a way to load data into [LlamaIndex](https://github.com/run-llama/llama_index/tree/main/llama_index) and/or subsequently used as a Tool in a [LangChain](https://github.com/hwchase17/langchain) Agent.
-- 
GitLab