No description
Find a file
Lucas Oliveira 89a2d697b3 fixed format
2025-12-03 17:25:54 -03:00
.github/workflows
assets
docs Merge pull request #569 from langflow-ai/issue-552-remove-docs-known-issue 2025-12-03 11:18:02 -08:00
flows Added new OpenSearch code into flows 2025-12-02 18:34:38 -03:00
frontend fixed format 2025-12-03 17:25:54 -03:00
keys
openrag-documents regenerate pdf 2025-12-02 12:51:21 -08:00
scripts add script and make while we're at it for os clear 2025-12-03 11:33:13 -05:00
securityconfig
src create lightweight health check based on query param 2025-12-03 17:11:51 -03:00
tests
.dockerignore
.env.example
.gitignore
.python-version
CONTRIBUTING.md
docker-compose-cpu.yml fix: openrag documents ingestion (#545) 2025-11-27 15:22:09 -03:00
docker-compose.gpu.yml
docker-compose.yml updated langflow version to be openrag version 2025-12-01 15:57:39 -03:00
Dockerfile upgrade os dockerfile 2025-12-03 10:00:27 -05:00
Dockerfile.backend
Dockerfile.frontend
Dockerfile.langflow
LICENSE
Makefile add script and make while we're at it for os clear 2025-12-03 11:33:13 -05:00
MANIFEST.in
patch-netty.sh upgrade os dockerfile 2025-12-03 10:00:27 -05:00
pyproject.toml bump version (#586) 2025-12-02 20:55:59 -03:00
README.md
uv.lock bump version (#586) 2025-12-02 20:55:59 -03:00
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.