RAG System Architecture: The "Union + Rerank" Pipeline

The weighted sum approach to hybrid search is fragile and breaks in production. This article introduces the Nomination → Union → Selection architecture: a deterministic pipeline that combines dense and sparse search without magic weights, then uses a Cross-Encoder to rerank results with surgical precision. Learn how to build RAG systems that scale.

February 2, 2026 · Sai

Beyond Vectors: The Case for Sparse Embeddings & SPLADE

Dense vectors are magical at capturing semantics, but they fail when you need exact matches. This article unpacks the Vocabulary Mismatch Problem and introduces SPLADE—a neural approach that combines the precision of keyword search with the intelligence of transformers. Learn why sparse embeddings matter and how to architect hybrid search for production.

February 1, 2026 · Sai

RAG Systems Engineering: The Structure-Aware Data Pipeline

Building production RAG systems is fundamentally an ETL (Extract, Transform, Load) challenge. We explore why documents must be treated as hierarchical data structures, not string soup. Discover structure-aware splitting, metadata injection, and multi-resolution indexing strategies that transform data quality and eliminate hallucinations.

January 31, 2026 · Sai

Context Plumbing: From Request-Response to Event Sourcing for Agents

We are watching the AI industry commit the original sin of the web all over again. For the last two years, we’ve obsessed over Context Engineering, treating Agents like static, PHP-era websites. When a user asks a question, the system performs a “database fetch” on demand, pulling context just in time to generate an answer. We haven’t reinvented software; we’ve just replaced the mouse click with a prompt, keeping the same brittle, pull-based architecture underneath....

January 30, 2026 · Sai Boorlagadda

Building RAG: All things retrieval

Retrieval is the backbone of RAG. We explore the critical steps often missed by developers: proper chunking strategies, the ‘Librarian’ analogy for vector vs. keyword search, and solving the math problem of Hybrid Search using Reciprocal Rank Fusion (RRF).

Mar 2, 2024 → Updated: Jan 21, 2026 · Sai