No description
Find a file
Cole Goldsmith 697baceb5f format
2025-11-19 13:16:59 -06:00
.github/workflows fix: add space cleaning on gh actions (#409) 2025-11-18 16:00:37 -03:00
assets
docs
documents
flows remove connection dot indicators on settings page, better toast message for provider setup dialogs, fix typo in default agent prompt 2025-11-19 13:16:17 -06:00
frontend format 2025-11-19 13:16:59 -06:00
keys
scripts
securityconfig
src remove connection dot indicators on settings page, better toast message for provider setup dialogs, fix typo in default agent prompt 2025-11-19 13:16:17 -06:00
tests fix: Make sure we exclude the warmup file ingestion 2025-11-18 12:07:38 -08:00
.dockerignore Add environment and build file exclusions to .dockerignore 2025-09-08 18:06:18 -03:00
.env.example
.gitignore add biome & format code (#403) 2025-11-14 13:45:32 -06:00
.python-version
CONTRIBUTING.md
docker-compose-cpu.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
pyproject.toml fix: add space cleaning on gh actions (#409) 2025-11-18 16:00:37 -03:00
README.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   |   TUI Interface   |   Docker Deployment   |   Development   |   Troubleshooting

Quickstart

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

uvx openrag

This runs OpenRAG without installing it to your project or globally. To run a specific version of OpenRAG, add the version to the command, such as: uvx --from openrag==0.1.25 openrag.

Install Python package

To first set up a project and then install the OpenRAG Python package, do the following:

  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:

    uv add openrag==0.1.25
    
  3. Start the OpenRAG TUI.

    uv run openrag
    
  4. Continue with the Quickstart.

For the full TUI installation guide, see TUI.

Docker or Podman installation

For more information, see Install OpenRAG containers.

Troubleshooting

For common issues and fixes, see Troubleshoot.

Development

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