Skip to main content

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


Download files

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

Source Distribution

insta_rag-0.1.0b3.tar.gz (38.2 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

insta_rag-0.1.0b3-py3-none-any.whl (49.0 kB view details)

Uploaded Python 3

File details

Details for the file insta_rag-0.1.0b3.tar.gz.

File metadata

  • Download URL: insta_rag-0.1.0b3.tar.gz
  • Upload date:
  • Size: 38.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.4

File hashes

Hashes for insta_rag-0.1.0b3.tar.gz
Algorithm Hash digest
SHA256 d87f951db5f088708e203d6b84c8340599d40f597df36a9cb066ac5f02b8c379
MD5 5ff96d601d297a8d0455788a84e272c7
BLAKE2b-256 025f6320808c0b04f99a79341925ddc335ab0de229cbeb7819343f14abf918b5

See more details on using hashes here.

File details

Details for the file insta_rag-0.1.0b3-py3-none-any.whl.

File metadata

File hashes

Hashes for insta_rag-0.1.0b3-py3-none-any.whl
Algorithm Hash digest
SHA256 2eee3aa02bbed7b06e990437925b640a3836298cf5ce9548fa01c8a1768b8fa1
MD5 36235b436f25e24e293d4b72da538927
BLAKE2b-256 6aa22d447cff94515dcb22552d442be829856a1e7058f7edac362de252d15ca5

See more details on using hashes here.

Supported by

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