RAG System
BetaRetrieval-Augmented Generation — AI that talks to your data
What is RAG?
RAG combines information retrieval with AI generation. Your documents are indexed, semantically searched, and used as context for AI responses — enabling accurate, source-backed answers from your own data.
How RAG works
1
Index documentsUpload and chunk your documents into searchable segments with vector embeddings.
2
Semantic searchFind relevant information using meaning-based search with relevance scoring.
3
AI chatThe AI generates responses using retrieved context from your documents.
RAG workflow
Step 1: Create conversation
POST/api/v1/context/conversations/create
Step 2: Index documents
POST/api/v1/rag/index
Step 3: RAG chat
POST/api/v1/rag/chat
