📚Overview

📚 Knowledge bases give your agents searchable RAG memory. Your documents are stored, chunked, and indexed so the agent can retrieve the most relevant passages.

How they work

  1. Upload: Add documents such as policies, pricing, and FAQs.
  2. Chunking: Split them into smaller passages.
  3. Indexing (embeddings): Convert each passage into a representation suitable for semantic search.
  4. Retrieval: When a question arrives, retrieve the closest passages and pass them to the agent.

Uses

  • Answer from your source instead of guessing.
  • Reduce hallucination and keep responses grounded.