| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- # === 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/
- .agents
|