RAG = combine LLM + retrieval to answer on private data. Mature 2026 architecture: vector DB + embedding + chunking. Massive B2B use cases.
TL;DR
- RAG = LLM + private base retrieval.
- Stack: embedding + vector DB + LLM.
- Pgvector, Pinecone, Qdrant, Weaviate.
- Cost: 0.01-0.10$/query per volume.
RAG architecture
`
- Ingestion:
- Documents (PDF, docs, web)
- Chunking (500-1500 tokens chunks)
- Embedding (OpenAI ada-002, Cohere, BGE)
- Storage vector DB
- Query:
- User question → embedding
- Similarity search top-K
- Inject context in LLM prompt
- Generate response
- Optional:
- Re-ranking (Cohere, BAAI)
- Hybrid search (BM25 + vector)
- Query expansion
- Conversational memory
`
2026 vector databases
Pgvector :
- Postgres extension
- Free, mature
- Best for: <10M vectors
Pinecone :
- Managed SaaS
- Infinite scalable
- 70$/mo+ for 1M vectors
Qdrant :
- Open source + cloud
- Rust performance
- Free self-hosted
Weaviate :
- Open source
- Flexible schema
- Built-in ML modules
Milvus :
- Distributed
- Best for: 100M+ vectors
- Complex setup
ChromaDB :
- Local-first
- Best for: prototyping
Chunking strategies
`
Fixed-size: 500-1500 tokens
- Simple, functional
- Risk: cut meaning
Need a professional website?
Kolonell builds websites that attract clients, optimized for the Sénégalese market. Free quote in 2 minutes.
Semantic chunking:
- Split on paragraphs/sections
- Preserve context
Recursive:
- LangChain RecursiveCharacterTextSplitter
- Multi-level fallback
Document-aware:
- Markdown: headers
- Code: functions
- HTML: sections
Overlap: 10-20% tokens between chunks
`
Production costs
Embedding :
- OpenAI ada-002: $0.0001/1K tokens
- Cohere embed-v3: $0.0001/1K
- BGE local (free): compute cost
- 1M docs × 1K tokens: 100-200$ embed
Vector DB :
- Pgvector self-hosted: ~50$/month
- Pinecone: 70-700$/month
- Qdrant Cloud: 50-500$
LLM :
- GPT-4o: $5/1M input
- Claude: variable
- Llama 3 self-hosted: compute
Total RAG production :
- Starter: 200-500$/month
- Production: 1-10K$/month
FAQ
Q: RAG vs fine-tuning?
A: RAG for fresh / private data. Fine-tune for style / format. Often both.
Q: RAG hallucinations?
A: Grounding via citations. Re-ranking for relevance. "I don't know" response if low confidence.
Conclusion
2026 RAG Retrieval Augmented Generation: standard architecture for private data AI apps. Pgvector starter, Pinecone scale. 200-10K$/month per volume. Massive ROI chatbots, search, knowledge.
Mohamed Bah
Fondateur, Kolonell
Passionate about digital and entrepreneurship in Africa, Mohamed has been helping Sénégalese businesses with their digital transformation since 2020. Founder of Kolonell, he believes every SME deserves a professional and accessible online présence.