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

Walking a room through evaluation criteria

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:
- Email: pranjulrathour41@gmail.com
- Invite / talk menu: https://pranjulrathour.scult.in/invite
- Portfolio & blog: https://pranjulrathour.scult.in
- LinkedIn: https://www.linkedin.com/in/pranjul-rathour/
- X: https://x.com/PranjulRathourx
- Instagram: https://www.instagram.com/pranjulrathour.in/
- Bluesky: https://bsky.app/profile/pranjulrathour.bsky.social
- GitHub: https://github.com/Pranjulrathour
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)