Overview
Conductor provides three RAG implementations to fit different needs:AutoRAG
Easiest - Fully managed R2-based RAG. Zero setup.
Vectorize-RAG
Flexible - Manual Vectorize control. Full customization.
Generic RAG
Universal - Works with any vector database.
Which RAG Should I Use?
Use AutoRAG if:
- ✅ You want the easiest setup
- ✅ Your documents are in R2
- ✅ You want automatic updates
- ✅ You don’t need custom chunking logic
Use Vectorize-RAG if:
- ✅ You need custom chunking strategies
- ✅ You want manual control over embeddings
- ✅ You need specific metadata schemas
- ✅ You’re building complex RAG pipelines
Use Generic RAG if:
- ✅ You’re using a non-Cloudflare vector database
- ✅ You need maximum flexibility
- ✅ You have existing RAG infrastructure
Quick Comparison
| Feature | AutoRAG | Vectorize-RAG | Generic RAG |
|---|---|---|---|
| Setup | Minimal | Moderate | Manual |
| Document Ingestion | Automatic | Manual | Manual |
| Chunking | Automatic | Manual | Manual |
| Embedding | Automatic | Manual | Manual |
| Updates | Automatic | Manual | Manual |
| Control | Low | High | Maximum |
| Best For | Quick start | Customization | Integration |
Examples
AutoRAG (Easiest)
Vectorize-RAG (Flexible)
Generic RAG (Universal)
Get Started
AutoRAG Quickstart
Start with the easiest option - AutoRAG setup in 2 minutes

