A self-hostable RAG assistant for querying important documents with private, local LLMs.
← Back to HomeVectorBrain is a custom-built RAG (Retrieval-Augmented Generation) platform designed to run entirely on your own hardware. It allows users to upload sensitive documents and query them using natural language, powered by local LLMs for full data privacy and speed.
python -m venv venv source venv/bin/activate pip install -r requirements.txt
uvicorn backend.main:app --host 0.0.0.0 --port 8000 --reload
cd frontend npm install npm run dev