Skip to main content

llama-index readers arango db integration

Project description

LlamaIndex Readers Integration: 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 fetch the relevant docs.

Usage

Here's an example usage of the SimpleArangoDBReader.

from llama_index.core.readers import download_loader
import os

SimpleArangoDBReader = download_loader("SimpleArangoDBReader")

host = "<host>"
db_name = "<db_name>"
collection_name = "<collection_name>"
# query_dict is passed into db.collection.find()
query_dict = {}
# Attribute of interests to load, by default ["text"]
field_names = ["title", "description"]
reader = SimpleArangoDBReader(host)  # or pass ArangoClient
documents = reader.load_data(
    username,
    password,
    db_name,
    collection_name,
    query_dict=query_dict,
    field_names=field_names,
)

This loader is designed to be used as a way to load data into LlamaIndex and/or subsequently used as a Tool in a LangChain Agent. See here for examples.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

llama_index_readers_arango_db-0.1.3.tar.gz (3.2 kB view hashes)

Uploaded Source

Built Distribution

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page