I published my first Python package — a reusable RAG core library
Dev.to AI
•
Generative AI
If you've ever built a RAG (Retrieval-Augmented Generation) system, you know the pain: every new project means rewriting the same boilerplate - vector setup, embeddings, chunking, LLM wiring. I got tired of it, so I packaged it up. pyragcore is a modular RAG library built on FAISS and Ollama. The idea is simple: give you a solid foundation so you can focus on your actual use case instead of reinventing the plumbing every time. What I'm most proud of is that it runs entirely locally - no external APIs, no data leaving your machine.