# Python
__pycache__/
*.py[cod]
*$py.class
*.so
*.egg
*.egg-info/
dist/
build/
.eggs/
.Python
pip-wheel-metadata/

# Virtual environments
.venv/
venv/
env/
ENV/

# Secrets — NEVER commit these
.env
*.pem
*.key

# Data files (replace with your own)
data/*.csv
!data/demographics.csv

# Vector store indices
.chroma_db/
.faiss_index/
*.faiss

# HuggingFace model cache
.hf_cache/
*.bin
*.safetensors

# Jupyter
.ipynb_checkpoints/
*.ipynb

# IDE
.vscode/
.idea/
*.swp
*.swo
.DS_Store
Thumbs.db

# Testing / coverage
.pytest_cache/
.coverage
htmlcov/
.tox/

# Logs
*.log
logs/

# Docker
*.tar
