# ─── Python ───────────────────────────────────────────────────────────────────
__pycache__/
*.py[cod]
*$py.class
*.so
.Python

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

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

# ─── Testing ──────────────────────────────────────────────────────────────────
.pytest_cache/
.coverage
.coverage.*
htmlcov/
.tox/
coverage.xml
*.cover

# ─── Type checking ────────────────────────────────────────────────────────────
.mypy_cache/

# ─── Linting ──────────────────────────────────────────────────────────────────
.ruff_cache/

# ─── IDE ──────────────────────────────────────────────────────────────────────
.vscode/
.idea/
*.swp
*.swo
*~

# ─── Environment / Secrets ────────────────────────────────────────────────────
# NEVER commit real .env files
.env
.env.*
!.env.example

# ─── RAGFactory generated output ──────────────────────────────────────────────
# Pipelines generated by `ragfactory generate` go here — not source code
generated/
output/

# ─── Local vector DB storage ──────────────────────────────────────────────────
.chroma/
chroma_db/

# ─── Logs ─────────────────────────────────────────────────────────────────────
*.log
logs/

# ─── Claude Code local settings (personal, not shared) ───────────────────────
.claude/settings.local.json

# ─── OS ───────────────────────────────────────────────────────────────────────
.DS_Store
.DS_Store?
._*
.Spotlight-V100
.Trashes
Thumbs.db
Desktop.ini
