PaperMind
A local RAG-powered academic paper analyzer. Upload any PDF, ask questions, and get structured summaries — running 100% privately on self-hosted hardware. Zero cloud. Zero cost. Zero data leakage.
PaperMind is a local RAG (Retrieval Augmented Generation) system I built to solve a real problem: reading dense academic papers is time-consuming, and existing AI tools like ChatGPT hallucinate when asked about documents they haven't seen.
PaperMind actually reads your PDF first — splitting it into chunks, converting each chunk to a vector embedding using nomic-embed-text, and storing them in ChromaDB. When you ask a question, it finds the most relevant chunks and sends them as context to Mistral 7B / Phi3 Mini running locally via Ollama. The LLM answers strictly from the paper — no hallucination, no guessing.
The entire stack — React frontend, FastAPI backend, ChromaDB, and local LLM — runs on a Linux mini PC via Docker Compose. No cloud dependency. No API cost. All data stays on-device.