# Python cache and compiled files __pycache__/ *.py[cod] *$py.class *.so .Python *.egg-info/ .installed.cfg *.egg # Virtual environments env/ venv/ ENV/ # Models (will be downloaded at runtime) models/ *.bin *.pt *.pth # IDE .vscode/ .idea/ *.swp *.swo *~ # Git .git/ .gitignore # Environment .env .env.local # Logs *.log logs/ # Documentation (not needed in container) README.md CLAUDE.md # Docker files (not needed inside container) Dockerfile .dockerignore docker-compose.yml # OS .DS_Store Thumbs.db # Cache .cache/