Is a collection of RAG projects.
Built a Retrieval-Augmented Generation (RAG) pipeline from scratch, and it is called Chat with a PDF.
The problem RAG solves: LLMs like Claude/GPT don't have access to your documents. RAG fixes this by:
- Splitting your PDF into small chunks
- Embedding each chunk (converting text → numbers that capture meaning)
- Storing those embeddings in a vector database
- When you ask a question → finding the most relevant chunks → sending them to an LLM as context
- The LLM answers based on your document — not just its training data