# === Python ===
__pycache__/
*.py[cod]
*.egg-info/
dist/
build/
*.egg

# === Virtual Environment ===
venv/
.venv/
env/
.env
*.env.local

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

# === OS ===
.DS_Store
Thumbs.db
desktop.ini

# === Sensitive / Credentials ===
.env
*.pem
*.key

# === Database ===
*.db
*.db-shm
*.db-wal
*.sqlite
*.sqlite3

# === Runtime Data ===
conversation_history/
large_tool_results/
data/chat_history.db
data/chat_history.db-shm
data/chat_history.db-wal
data/pdf_cache/

# === Generated / Static ===
static/reports/
static/reports/*.docx

# === Testing ===
.pytest_cache/
.coverage
htmlcov/

# === ZCode / Tools ===
.reasonix/
.zcode/
