RAG Implementation Diagram

Implementing RAG from scratch with Python, Qdrant, and Docling

Everyone talks about RAG, but few have actually built one. Let’s break the spell and implement a semantic search system step by step using Python and Qdrant.

November 29, 2025 · 5 min · TechLife

5 Things I Learned Building Qdrant + RAG That Aren't in the Documentation

5 Things I Learned Building Qdrant + RAG That Aren’t in the Documentation You want to design a Qdrant + RAG system. This means taking your documents, breaking them into pieces, converting them to vectors, storing them in a vector database, and pulling them out when needed using “cosine similarity.” So you’re not teaching the system anything - you’re just building your own smarter DB system. Wait a minute, wouldn’t it be pretty much the same if you just trained an LLM? Yes, exactly… Our learning mechanism isn’t that different either. How many of us question what we’ve learned and go after something better? Or how many of us reject information we’ve already learned? Answer: none of us. ...

November 20, 2025 · 3 min · TechLife