No description
Find a file
2026-01-07 09:56:40 -06:00
.github
assets
docs edit local document path variable 2026-01-06 08:18:20 -08:00
flows
frontend Merge branch 'main' into npm-deps 2026-01-07 09:38:22 -06:00
keys
openrag-documents add pdf 2025-12-05 17:41:36 -08:00
scripts
sdks
securityconfig ingest flow works multi-embedding 2025-10-10 22:14:51 -04:00
src
tests
.dockerignore Add environment and build file exclusions to .dockerignore 2025-09-08 18:06:18 -03:00
.env.example
.gitignore package.json 2025-12-18 16:48:00 -05:00
.pre-commit-config.yaml
.python-version
.secrets.baseline baseline 2025-12-09 14:40:47 -06:00
CONTRIBUTING.md
docker-compose.gpu.yml
docker-compose.yml
Dockerfile
Dockerfile.backend
Dockerfile.frontend
Dockerfile.langflow
LICENSE Added ASFv2 license file. Closes #250 2025-10-13 07:33:00 +13:00
Makefile
MANIFEST.in
patch-netty.sh
pyproject.toml
README.md
SECURITY.md
uv.lock
warm_up_docling.py

OpenRAG

Langflow    OpenSearch    Langflow   

OpenRAG is a comprehensive Retrieval-Augmented Generation platform that enables intelligent document search and AI-powered conversations. Users can upload, process, and query documents through a chat interface backed by large language models and semantic search capabilities. The system utilizes Langflow for document ingestion, retrieval workflows, and intelligent nudges, providing a seamless RAG experience. Built with Starlette and Next.js. Powered by OpenSearch, Langflow, and Docling.

Ask DeepWiki

Quickstart   |   Python package   |   Docker or Podman   |   Development   |   Troubleshooting

Quickstart

To run OpenRAG without creating or modifying any project files, use uvx:

uvx openrag

This command runs OpenRAG without installing it to your project or globally.

To run a specific version of OpenRAG, run uvx --from openrag==VERSION openrag.

Install Python package

To add the OpenRAG Python package to a Python project, use uv:

  1. Create a new project with a virtual environment using uv init:

    uv init YOUR_PROJECT_NAME
    cd YOUR_PROJECT_NAME
    

    The (venv) prompt doesn't change, but uv commands will automatically use the project's virtual environment. For more information on virtual environments, see the uv documentation.

  2. Add OpenRAG to your project:

    uv add openrag
    

    To add a specific version of OpenRAG, run uv add openrag==VERSION.

  3. Start the OpenRAG terminal user interface (TUI):

    uv run openrag
    
  4. Continue with the Quickstart.

For all installation options, see the OpenRAG installation guide.

Docker or Podman installation

By default, OpenRAG automatically starts the required containers and helps you manage them. To install OpenRAG with self-managed containers, see the OpenRAG installation guide.

Development

For developers wanting to contribute to OpenRAG or set up a development environment, see CONTRIBUTING.md.

Troubleshooting

For common issues and fixes, see Troubleshoot OpenRAG.