top of page
Codersarts Blog.
What’s new and exciting at Codersarts
Search


Semantic Chunking in RAG Systems Explained
Semantic chunking is a chunking strategy that groups text based on meaning rather than fixed size.
Instead of splitting text after a certain number of tokens, semantic chunking tries to identify:
topic boundaries,
semantic transitions,
and coherent conceptual units.
The goal is simple:
Keep semantically related information together.

Pratibha
Jun 127 min read


Fixed-Size Chunking in RAG: Still Relevant in 2026?
Chunking is the process of splitting documents into smaller retrievable units before embedding and indexing them.
In a RAG pipeline:
Documents are split into chunks.
Each chunk is converted into embeddings.
The embeddings are stored in a vector database.
User queries retrieve the most relevant chunks.
The retrieved chunks are passed to the LLM as context.
This means retrieval quality depends heavily on chunk quality.

Pratibha
Jun 116 min read


Vectorless RAG Explained: Build AI Retrieval Systems Without Vector Databases
At a high level, Vectorless RAG is exactly what the name suggests:
A Retrieval-Augmented Generation system that avoids using vector embeddings and vector databases for retrieval.

Pratibha
May 1920 min read
bottom of page