# ── Sensitive / private content ───────────────────────────────────────────────
prompts/
dbs/
# Within docs/ only ignore the heavy PDFs and private notes; committed
# docs (DEPLOYMENT.md, ARCHITECTURE.md, system_prompt.md, ...) live at
# the top level of docs/ and are versioned.
docs/pdf/
docs/private/
docs/.DS_Store

# ── Python bytecode & caches ──────────────────────────────────────────────────
__pycache__/
*.py[cod]
*$py.class
*.pyo

# ── Virtual environments ───────────────────────────────────────────────────────
.venv/
venv/
env/

# ── uv ────────────────────────────────────────────────────────────────────────
.uv/

# ── Build / dist ──────────────────────────────────────────────────────────────
build/
dist/
*.egg-info/
.eggs/

# ── Test artifacts & coverage ─────────────────────────────────────────────────
tests/artifacts/
.coverage
htmlcov/
.pytest_cache/

# ── OS / editor noise ─────────────────────────────────────────────────────────
.DS_Store
**/.DS_Store
Thumbs.db
.idea/
.vscode/
*.swp
*.swo

# ── Env files ─────────────────────────────────────────────────────────────────
.env
.env.*
