Skip to content

Getting Started with FluidRAG

FluidRAG is a hybrid Retrieval-Augmented Generation engine that combines vector similarity search, FalkorDB knowledge graph traversal, and multi-agent workflows to deliver accurate, cited answers from your documents and data sources.

Quick Setup

Deploy FluidRAG with Docker Compose. Four images, eleven containers, one docker-compose up -d.

OpenAI-Compatible API

Drop-in replacement for the OpenAI chat completions endpoint. Works with any OpenAI-compatible client or frontend.

Knowledge Graph

Built on FalkorDB for graph-based relationship discovery alongside semantic vector search and code search.

Before you begin, you will need:

  • Docker Engine 20.10+ and Docker Compose 2.0+
  • A running FalkorDB instance (external, not bundled)
  • An LLM API key (OpenAI, Anthropic, Google, or any OpenAI-compatible provider)
  • At least 4 GB of available RAM

Once running, FluidRAG is available at:

ServiceURLPurpose
Chat APIhttp://localhost:8000OpenAI-compatible API endpoint
Admin UIhttp://localhost/config-uiConfigure agents, secrets, prompts, search settings
Gatewayhttp://localhostNginx reverse proxy (routes all traffic)
RQ Dashboardhttp://localhost:9181Background job monitoring
TopicDescription
PrerequisitesSystem requirements, external dependencies, and LLM provider setup
Quick StartClone, configure, build images, and start FluidRAG
Your First QuerySend a query via the API and configure secrets through the Admin UI