A RAG (Retrieval-Augmented Generation) library for document processing and retrieval.
Project description
insta_rag
insta_rag is a modular, plug-and-play Python library for building advanced Retrieval-Augmented Generation (RAG) pipelines. It abstracts the complexity of document processing, embedding, and hybrid retrieval into a simple, configuration-driven client.
Core Features
- Semantic Chunking: Splits documents at natural topic boundaries to preserve context.
- Hybrid Retrieval: Combines semantic vector search with BM25 keyword search for the best of both worlds.
- Query Transformation (HyDE): Uses an LLM to generate hypothetical answers, improving retrieval relevance.
- Reranking: Integrates with state-of-the-art rerankers like Cohere to intelligently re-order results.
- Pluggable Architecture: Easily extend the library by adding new chunkers, embedders, or vector databases.
- Hybrid Storage: Optional integration with MongoDB for cost-effective content storage, keeping Qdrant lean for vector search.
Quick Start
1. Installation
# Recommended: using uv
uv pip install insta-rag
# Or with pip
pip install insta-rag
2. Basic Usage
from insta_rag import RAGClient, RAGConfig, DocumentInput
# Load configuration from environment variables (.env file)
config = RAGConfig.from_env()
client = RAGClient(config)
# 1. Add documents to a collection
documents = [DocumentInput.from_text("Your first document content.")]
client.add_documents(documents, collection_name="my_docs")
# 2. Retrieve relevant information
response = client.retrieve(
query="What is this document about?", collection_name="my_docs"
)
# Print the most relevant chunk
if response.chunks:
print(response.chunks[0].content)
Documentation
For detailed guides on installation, configuration, and advanced features, please see the Full Documentation.
Key sections include:
License
This project is licensed under the MIT License.
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file insta_rag-0.1.0b0.tar.gz.
File metadata
- Download URL: insta_rag-0.1.0b0.tar.gz
- Upload date:
- Size: 38.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b78b847f8aff330605d861c9ff93f832aeff1bcebcf1aa173e882b719b66120b
|
|
| MD5 |
c63c92c38d689872ced74e8f0ab5ab4e
|
|
| BLAKE2b-256 |
6c65f3e9c65c46a94e6c5537b1c9013f929164e1173605fb2897d3dbb6c6853a
|
File details
Details for the file insta_rag-0.1.0b0-py3-none-any.whl.
File metadata
- Download URL: insta_rag-0.1.0b0-py3-none-any.whl
- Upload date:
- Size: 49.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.9.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
615fec99cb3a4c7b5b98554c6ac80593d8be977591f5a40af6868c4a2fee8232
|
|
| MD5 |
b4a87ca0a938047a364986ed6ab26d2c
|
|
| BLAKE2b-256 |
eead517e137d9cbc32c2df8774b3c0e5f573b8285cea1edf5cae051107cdce88
|