A library of community-driven data loaders for LLMs. Use with LlamaIndex and/or LangChain.
Project description
LlamaHub 🦙
This is a simple library of all the data loaders / readers that have been created by the community. The goal is to make it extremely easy to connect large language models to a large variety of knowledge sources. These are general-purpose utilities that are meant to be used in LlamaIndex (e.g. when building a index) and LangChain (e.g. when building different tools an agent can use). For example, there are loaders to parse Google Docs, SQL Databases, PDF files, PowerPoints, Notion, Slack, Obsidian, and many more. Note that because different loaders produce the same types of Documents, you can easily use them together in the same index.
Check out our website here: https://llamahub.ai/.
Usage (Use llama-hub
as PyPI package)
These general-purpose loaders are designed to be used as a way to load data into LlamaIndex and/or subsequently used in LangChain.
Installation
pip install llama-hub
LlamaIndex
from llama_index import GPTVectorStoreIndex
from llama_hub.google_docs.base import GoogleDocsReader
gdoc_ids = ['1wf-y2pd9C878Oh-FmLH7Q_BQkljdm6TQal-c1pUfrec']
loader = GoogleDocsReader()
documents = loader.load_data(document_ids=gdoc_ids)
index = GPTVectorStoreIndex.from_documents(documents)
index.query('Where did the author go to school?')
LangChain
Note: Make sure you change the description of the Tool
to match your use-case.
from llama_index import GPTVectorStoreIndex
from llama_hub.google_docs.base import GoogleDocsReader
from langchain.llms import OpenAI
from langchain.chains.question_answering import load_qa_chain
# load documents
gdoc_ids = ['1wf-y2pd9C878Oh-FmLH7Q_BQkljdm6TQal-c1pUfrec']
loader = GoogleDocsReader()
documents = loader.load_data(document_ids=gdoc_ids)
langchain_documents = [d.to_langchain_format() for d in documents]
# initialize sample QA chain
llm = OpenAI(temperature=0)
qa_chain = load_qa_chain(llm)
question="<query here>"
answer = qa_chain.run(input_documents=langchain_documents, question=question)
Usage (Use download_loader
from LlamaIndex)
You can also use the loaders with download_loader
from LlamaIndex in a single line of code.
For example, see the code snippets below using the Google Docs Loader.
from llama_index import GPTVectorStoreIndex, download_loader
GoogleDocsReader = download_loader('GoogleDocsReader')
gdoc_ids = ['1wf-y2pd9C878Oh-FmLH7Q_BQkljdm6TQal-c1pUfrec']
loader = GoogleDocsReader()
documents = loader.load_data(document_ids=gdoc_ids)
index = GPTVectorStoreIndex.from_documents(documents)
index.query('Where did the author go to school?')
How to add a loader
Adding a loader simply requires forking this repo and making a Pull Request. The Loader Hub website will update automatically. However, please keep in the mind the following guidelines when making your PR.
Step 0: Setup virtual environment, install Poetry and dependencies
Create a new Python virtual environment. The command below creates an environment in .venv
,
and activates it:
python -m venv .venv
source .venv/bin/activate
if you are in windows, use the following to activate your virtual environment:
.venv\scripts\activate
Install poetry:
pip install poetry
Install the required dependencies (this will also install llama_index
):
poetry install
This will create an editable install of llama-hub
in your venv.
Step 1: Create a new directory
In llama_hub
, create a new directory for your new loader. It can be nested within another, but name it something unique because the name of the directory will become the identifier for your loader (e.g. google_docs
). Inside your new directory, create a __init__.py
file, which can be empty, a base.py
file which will contain your loader implementation, and, if needed, a requirements.txt
file to list the package dependencies of your loader. Those packages will automatically be installed when your loader is used, so no need to worry about that anymore!
If you'd like, you can create the new directory and files by running the following script in the llama_hub
directory. Just remember to put your dependencies into a requirements.txt
file.
./add_loader.sh [NAME_OF_NEW_DIRECTORY]
Step 2: Write your README
Inside your new directory, create a README.md
that mirrors that of the existing ones. It should have a summary of what your loader does, its inputs, and how its used in the context of LlamaIndex and LangChain.
Step 3: Add your loader to the library.json file
Finally, add your loader to the llama_hub/library.json
file so that it may be used by others. As is exemplified by the current file, add in the class name of your loader, along with its id, author, etc. This file is referenced by the Loader Hub website and the download function within LlamaIndex.
Step 4: Make a Pull Request!
Create a PR against the main branch. We typically review the PR within a day. To help expedite the process, it may be helpful to provide screenshots (either in the PR or in the README directly) showing your data loader in action!
Running tests
python3.9 -m venv .venv
source .venv/bin/activate
pip3 install -r test_requirements.txt
poetry run pytest tests
FAQ
How do I test my loader before it's merged?
There is an argument called loader_hub_url
in download_loader
that defaults to the main branch of this repo. You can set it to your branch or fork to test your new loader.
Should I create a PR against LlamaHub or the LlamaIndex repo directly?
If you have a data loader PR, by default let's try to create it against LlamaHub! We will make exceptions in certain cases (for instance, if we think the data loader should be core to the LlamaIndex repo).
For all other PR's relevant to LlamaIndex, let's create it directly against the LlamaIndex repo.
Other questions?
Feel free to hop into the community Discord or tag the official Twitter account!
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file llama_hub-0.0.2.tar.gz
.
File metadata
- Download URL: llama_hub-0.0.2.tar.gz
- Upload date:
- Size: 201.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.1 CPython/3.10.10 Darwin/22.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ce0d2ca68315f198280284f2c946c649063002c29a4d0fc8a7acf762976286da |
|
MD5 | 9aaea6b73eda2a573e2ff2641dc7fd4e |
|
BLAKE2b-256 | 61989d2aa236b610af75da15a5b0e1a1e0879362bb990d2eebe9a59603f5aef3 |
File details
Details for the file llama_hub-0.0.2-py3-none-any.whl
.
File metadata
- Download URL: llama_hub-0.0.2-py3-none-any.whl
- Upload date:
- Size: 330.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.1 CPython/3.10.10 Darwin/22.3.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 85214c071440874632b32ff44cfde7346e0fb2c1ccd8091674dad03606ea1028 |
|
MD5 | 1a0b4be6a2a04a3ff6c324653e12152f |
|
BLAKE2b-256 | d42cf59f7ac1666182fae5b7bf5a7c2535bf9c208dab792dbd97df897f584725 |