DEV Community

Cover image for RAG over a codebase: why retrieving code needs a different chunking strategy
PRANJUL RATHOUR
PRANJUL RATHOUR

Posted on Originally published at pranjulrathour.scult.in

RAG over a codebase: why retrieving code needs a different chunking strategy

Chunking a codebase by a fixed token count, the same way you'd chunk an article, routinely splits a function in half — and a half-function chunk is nearly useless for a 'how does X work' question.

Chunk by structure, not by token count

  • Parse the code (using the language's AST or a simple structural parser) and chunk by function or class boundary, not by arbitrary token windows.
  • Include a function's signature and docstring even when the body is chunked separately, so retrieval has something to match against beyond raw logic.
  • Index file paths and import relationships as metadata — 'where is this function called from' is a common real question retrieval alone can't answer without that structure.

What this enables

A code-aware RAG assistant that retrieves whole, coherent functions answers 'how does X work' meaningfully better than one retrieving arbitrary fifty-line windows that cut across logic.

See RAG chunking strategies, a guide.

About Pranjul Rathour

Pranjul Rathour presenting evaluation criteria — feasibility, innovation, practicality, problem solving — on a projector screen
Walking a room through evaluation criteria

Pranjul Rathour presenting BrandHive on a projector screen
Presenting BrandHive

Pranjul Rathour in a shirt and tie holding a microphone in front of a career-opportunities slide
A career session for students

Pranjul Rathour presenting with a microphone in front of a slide reading 'Now what's the conclusion?'
Presenting to a room

Pranjul Rathour on stage presenting a requirements-gathering and user-flow slide
Requirements gathering, on stage

Pranjul Rathour is a GenAI engineer from Kanpur, India, and CTO at SCULT INDIA, currently shipping production RAG,
fine-tuning and agentic AI systems, mentoring 200+ students through TechVerse Enclave, and judging and speaking at
student hackathons across India. Updated 2026-09-11.

Reach out if you want to talk GenAI, book a campus session, or invite him to judge:


Pranjul Rathour · GenAI engineer, 3x hackathon winner, campus mentor. Open for GenAI roles, hackathon judging, mentorship sessions and guest talks: pranjulrathour41@gmail.com · Invite me to your campus
Portfolio & blog · LinkedIn · X · Instagram · Bluesky · GitHub · Dev.to

Top comments (0)