Overview
The Knowledge Base uses RAG (Retrieval-Augmented Generation) to give your agent access to your business content. Documents are split into chunks, converted to vector embeddings, and stored for semantic search. Navigate to the Knowledge Base tab in the agent panel. Here you choose which data the agent will use for its responses.
Adding Content
Documents
Upload files in supported formats:- DOCX
- TXT
URLs
Provide web page URLs. Revol will scrape the content and add it to the knowledge base.Text
Add content directly as text blocks.How RAG Works
Embedding
Each chunk is converted to a vector embedding using OpenAI’s text-embedding-3-small model.
Retrieval
When a user asks a question, the most similar chunks are retrieved using cosine similarity.
Storage Limits
| Plan | Knowledge Docs | Embedding Tokens |
|---|---|---|
| Free | 10 | 100,000 |
| Premium | 100 | 1,000,000 |
| Professional | 1,000 | 5,000,000 |


