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.1b0.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.1b0-py3-none-any.whl (49.0 kB view details)

Uploaded Python 3

File details

Details for the file insta_rag-0.1.1b0.tar.gz.

File metadata

  • Download URL: insta_rag-0.1.1b0.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.1b0.tar.gz
Algorithm Hash digest
SHA256 0147acb5bf0f6e80c58dbd79c3478faabce02a99fad32c58e36065ac39547f77
MD5 914b68dc9d4650ac13cd8747cf2c48ae
BLAKE2b-256 aada32dd3d19a26b145c65e637ad5f4d5e24e276190a08c8859cf5fb05516edd

See more details on using hashes here.

File details

Details for the file insta_rag-0.1.1b0-py3-none-any.whl.

File metadata

File hashes

Hashes for insta_rag-0.1.1b0-py3-none-any.whl
Algorithm Hash digest
SHA256 ad64425d9017bfad67d6a783f2b6d2e401bbce5d182771291734b6694da23bc5
MD5 2a22e4a7d554462d137aaca5f2f0e240
BLAKE2b-256 a1c175bde5cc6163b3162174126afad084d1c9bbbcd7c0eaedfe57f84cafc645

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