A private, local AI that runs entirely on your machine. Upload any document and ask it anything: no internet, no API costs, no data leaving your laptop.

Upload a PDF or text file and ask questions about it. The AI reads your document, understands it, and answers from it directly.

- Python
- Streamlit
- LangChain
- ChromaDB
- Ollama (Llama 3)
f
- Python 3.10+
- Ollama installed and running
- Llama 3 pulled locally (
ollama pull llama3)
# Clone the repo
git clone https://github.com/zayd100/SnoopDoc.git
# Create and activate virtual environment
python -m venv venv
venv\Scripts\activate # Windows
source venv/bin/activate # Mac/Linux
# Install dependencies
pip install -r requirements.txt
# Run
streamlit run app.py- Make sure Ollama is running in the background
- Open
http://localhost:8501 - Upload a PDF or .txt file
- Ask anything about it
Everything runs locally. No data is sent anywhere. No API keys required.

