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.0b1.tar.gz (38.3 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.0b1-py3-none-any.whl (49.0 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for insta_rag-0.1.0b1.tar.gz
Algorithm Hash digest
SHA256 c3fbb8d6602e5a68152a4e9ca71d412392fea6d6b7ce8c1b085d0dbcbb597025
MD5 cd487944f0a59035cb17b9036111cad5
BLAKE2b-256 3d3746dd19f222f39d61e5be6d761ed8a637e0562e879667caa9b2722c0ee0a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for insta_rag-0.1.0b1-py3-none-any.whl
Algorithm Hash digest
SHA256 d8039e362b0b54d51f3c4d8fde13ddc69e33254ee808b651df702ed96474d630
MD5 9eaf28888938d4ad749816792f4f2090
BLAKE2b-256 6628811cbd839f0a3e787bca5f7e9117481c950bdcfefc1226a7e800bdfe08b6

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