# ---- Secrets & Environment ----
.env
*.env.local

# ---- Python ----
__pycache__/
*.py[cod]
*.pyo
*.pyd
*.so
*.egg
*.egg-info/
dist/
build/
.eggs/
.pytest_cache/
.mypy_cache/
.ruff_cache/
htmlcov/
.coverage
*.cover
pip-wheel-metadata/

# ---- Virtual Environments ----
.venv/
venv/
env/
ENV/

# ---- Vector Store Persistence ----
.chroma_db/
chroma_db/
faiss_index/
*.faiss
*.pkl

# ---- HuggingFace / Model Caches ----
.hf_cache/
models/
*.bin
*.safetensors
*.gguf
*.ggml

# ---- Data ----
data/raw/
data/processed/
data/uploads/
*.csv
!data/sample_docs/*.csv

# ---- IDE / OS ----
.vscode/
.idea/
*.DS_Store
Thumbs.db

# ---- Logs ----
*.log
logs/

# ---- Docker ----
.docker/

# ---- Streamlit ----
.streamlit/secrets.toml
