Skip to content
/ R2R Public

R2R is an open source RAG answer engine with a RESTful API. Features include multimodal file ingestion, hybrid search, knowledge graph / advanced RAG, and more.

License

Notifications You must be signed in to change notification settings

SciPhi-AI/R2R

Repository files navigation

Docs Discord Github Stars Commits-per-week License: MIT

R2R Answer Engine

The ultimate open source RAG answer engine

About

R2R was designed to bridge the gap between local LLM experimentation and scalable, production-ready Retrieval-Augmented Generation (RAG). R2R provides a comprehensive and SOTA RAG system for developers, built around a RESTful API for ease of use.

For a more complete view of R2R, check out the full documentation.

Key Features

  • πŸ“ Multimodal Support: Ingest files ranging from .txt, .pdf, .json to .png, .mp3, and more.
  • πŸ” Hybrid Search: Combine semantic and keyword search with reciprocal rank fusion for enhanced relevancy.
  • πŸ”— Graph RAG: Automatically extract relationships and build knowledge graphs.
  • πŸ—‚οΈ App Management: Efficiently manage documents and users with rich observability and analytics.
  • 🌐 Client-Server: RESTful API support out of the box.
  • 🧩 Configurable: Provision your application using intuitive configuration files.
  • πŸ”Œ Extensible: Develop your application further with easy builder + factory pattern.
  • πŸ–₯️ Dashboard: Use the R2R Dashboard, an open-source React+Next.js app for a user-friendly interaction with R2R.

Table of Contents

  1. Install
  2. R2R Quickstart
  3. R2R Dashboard
  4. Community and Support
  5. Contributing

Install

Note

Windows users are advised to use Docker to run R2R.

Installing with Pip 🐍
pip install r2r

# setup env
export OPENAI_API_KEY=sk-...
export POSTGRES_USER=YOUR_POSTGRES_USER
export POSTGRES_PASSWORD=YOUR_POSTGRES_PASSWORD
export POSTGRES_HOST=YOUR_POSTGRES_HOST
export POSTGRES_PORT=YOUR_POSTGRES_PORT
export POSTGRES_DBNAME=YOUR_POSTGRES_DBNAME
Installing with Docker 🐳

Note: The R2R client must still be installed, even when running with Docker. Download the Python client with pip install r2r.

To run R2R using Docker:

# Setting up the environment. The right side is where you should put the value of your variable.
export OPENAI_API_KEY=sk-...
export POSTGRES_USER=YOUR_POSTGRES_USER
export POSTGRES_PASSWORD=YOUR_POSTGRES_PASSWORD
export POSTGRES_HOST=YOUR_POSTGRES_HOST
export POSTGRES_PORT=YOUR_POSTGRES_PORT
export POSTGRES_DBNAME=YOUR_POSTGRES_DBNAME

# Optional on first pull. Advised when fetching the latest updates.
docker pull emrgntcmplxty/r2r:latest

# Runs the image. If you set up the environment you don't need to modify anything.
# Otherwise, add your values on the right side of the -e commands.
# For Windows, remove the "\" from your command.
docker run -d \
   --name r2r \
   -p 8000:8000 \
   -e POSTGRES_USER=$POSTGRES_USER \
   -e POSTGRES_PASSWORD=$POSTGRES_PASSWORD \
   -e POSTGRES_HOST=$POSTGRES_HOST \
   -e POSTGRES_PORT=$POSTGRES_PORT \
   -e POSTGRES_DBNAME=$POSTGRES_DBNAME \
   -e OPENAI_API_KEY=$OPENAI_API_KEY \
   emrgntcmplxty/r2r:latest

Important: The Docker image of r2r operates in server and client mode, with the server being the Docker container and the client being your PC. This means you need to append --client_server_mode to all your queries.

Additionally, your PC (acting as the client) needs to have Python, Pip, and the dependencies listed in the r2r folder of the repository. Therefore, you need to have the repository cloned on your computer and run pip install r2r in the root folder of the cloned repository.

You have the option to run the client inside the terminal of the Docker container (to have everything in one place), but the use of pip install r2r and --client_server_mode is necessary.

For local LLMs:

docker run -d \
   --name r2r \
   --add-host=host.docker.internal:host-gateway \
   -p 8000:8000 \
   -e POSTGRES_USER=$POSTGRES_USER \
   -e POSTGRES_PASSWORD=$POSTGRES_PASSWORD \
   -e POSTGRES_HOST=$POSTGRES_HOST \
   -e POSTGRES_PORT=$POSTGRES_PORT \
   -e POSTGRES_DBNAME=$POSTGRES_DBNAME \
   -e OLLAMA_API_BASE=http://host.docker.internal:11434 \
   -e CONFIG_OPTION=local_ollama \
  emrgntcmplxty/r2r:latest

R2R Quickstart

The following quickstart offers a step-by-step guide on running R2R locally as well as through the Python SDK. The guide ingests a list of provided provided documents and shows search, RAG, and advanced functionality. The script powering the quickstart can be found at r2r/examples/quickstart.py, and it can be configured and extended with sufficient developer familiarity.

quickstart

Document Ingestion and Management
  1. Ingest Files:

    python -m r2r.examples.quickstart ingest_files
  2. View Document Info:

    python -m r2r.examples.quickstart documents_overview
  3. View User Overview:

    python -m r2r.examples.quickstart users_overview
Search and RAG Operations
  1. Search Documents:

    python -m r2r.examples.quickstart search --query="Who was Aristotle?"
  2. RAG Completion:

    python -m r2r.examples.quickstart rag --query="What was Uber's profit in 2020?"
  3. Streaming RAG:

    python -m r2r.examples.quickstart rag --query="What was Lyft's profit in 2020?" --streaming=true
  4. Hybrid Search RAG:

    python -m r2r.examples.quickstart rag --query="Who is John Snow?" --do_hybrid_search

For more detailed examples and advanced features, please refer to our Quickstart Guide.

R2R Dashboard

Interact with R2R using our open-source React+Next.js dashboard. Check out the Dashboard Cookbook to get started!

Community and Support

  • Discord: Chat live with maintainers and community members
  • Github Issues: Report bugs and request features

Explore our R2R Docs for tutorials and cookbooks on various R2R features and integrations, including:

RAG Cookbooks

  • Multiple LLMs: A simple cookbook showing how R2R supports multiple LLMs.
  • Hybrid Search: A brief introduction to running hybrid search with R2R.
  • Multimodal RAG: A cookbook on multimodal RAG with R2R.
  • Knowledge Graphs: A walkthrough of automatic knowledge graph generation with R2R.
  • Local RAG: A quick cookbook demonstration of how to run R2R with local LLMs.
  • Reranking: A short guide on how to apply reranking to R2R results.

App Features

Contributing

We welcome contributions of all sizes! Here's how you can help:

Our Contributors