No description
Find a file
Mendon Kissling 19c86c8b72 style
2025-10-08 12:02:46 -04:00
.github/workflows docker also hinges on only new tag 2025-10-07 12:51:56 -04:00
assets adding tui screenshots 2025-09-10 13:06:47 -04:00
docs docs-update-screenshot-and-include-mcp-tools-component 2025-10-07 15:07:41 -04:00
documents adds support to load files in document folder at startup 2025-09-03 13:41:53 -04:00
flows Merge branch 'main' into add-mcp-agent-flows 2025-10-06 17:29:06 -04:00
frontend input styles 2025-10-07 10:53:42 -05:00
keys empty keys directory 2025-09-02 17:12:21 -04:00
securityconfig fix: os add scroll permissions for delete functionality 2025-09-19 12:17:46 -04:00
src tui ip bind check 2025-10-07 11:32:04 -04:00
.dockerignore Add environment and build file exclusions to .dockerignore 2025-09-08 18:06:18 -03:00
.DS_Store Update to components and flows 2025-09-29 14:53:47 -04:00
.env.example added url ingest id to everything 2025-10-03 17:29:28 -03:00
.gitignore tui: docling pid and host detection 2025-10-06 14:46:51 -04:00
.python-version take 0 2025-07-10 22:36:45 -04:00
CONTRIBUTING.md tui-quickstart 2025-10-08 11:59:36 -04:00
docker-compose-cpu.yml Merge branch 'main' into add-mcp-agent-flows 2025-10-06 17:29:06 -04:00
docker-compose.yml update the docker compose 2025-10-06 23:16:32 -04:00
Dockerfile chown 2025-09-03 22:22:20 -04:00
Dockerfile.backend make flows visible to backend container 2025-09-09 14:12:02 -04:00
Dockerfile.frontend change the parameter! 2025-09-08 15:42:20 -04:00
Dockerfile.langflow Update base image to langflow-nightly:1.6.3.dev1 2025-10-06 21:16:56 -04:00
Makefile replace knowledge table with ag grid 2025-09-17 14:33:59 -05:00
MANIFEST.in MANIFEST.in 2025-10-07 12:34:07 -04:00
pyproject.toml v0.1.17 2025-10-07 13:01:08 -04:00
README.md style 2025-10-08 12:02:46 -04:00
uv.lock v0.1.14.dev3 2025-10-06 10:31:32 -04:00
warm_up_docling.py doc processing knobs 2025-09-18 16:27:01 -04:00

OpenRAG

Langflow    OpenSearch    Starlette    Next.js    Ask DeepWiki

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, Next.js, OpenSearch, and Langflow integration.

Quickstart   |   TUI Interface   |   Docker Deployment   |   Development   |   Troubleshooting

Quickstart

To get started quickly, use the OpenRAG Terminal User Interface (TUI) to manage your OpenRAG installation without complex command-line operations.

To launch OpenRAG with the TUI, do the following:

  1. Clone the OpenRAG repository.
git clone https://github.com/langflow-ai/openrag.git
cd openrag
  1. To start the TUI, from the repository root, run:
# Install dependencies first
uv sync

# Launch the TUI
uv run openrag

The TUI opens and guides you through OpenRAG setup.

For the full TUI guide, see TUI.

Docker Deployment

If you prefer to use Docker to run OpenRAG, the repository includes two Docker Compose .yml files. They deploy the same applications and containers, but to different environments.

  • docker-compose.yml is an OpenRAG deployment for environments with GPU support. GPU support requires an NVIDIA GPU with CUDA support and compatible NVIDIA drivers installed on the OpenRAG host machine.

  • docker-compose-cpu.yml is a CPU-only version of OpenRAG for systems without GPU support. Use this Docker compose file for environments where GPU drivers aren't available.

  1. Clone the OpenRAG repository.
git clone https://github.com/langflow-ai/openrag.git
cd openrag
  1. Build and start all services.

    For the GPU-accelerated deployment, run:

    docker compose build
    docker compose up -d
    

    For environments without GPU support, run:

    docker compose -f docker-compose-cpu.yml up -d
    

For more information, see Deploy with Docker.

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.