# ========================================== # Python # ========================================== __pycache__/ *.pyc *.pyo *.pyd *.pdb *.pkl *.egg-info/ *.eggs/ *.so # Virtual environments venv/ .env/ ENV/ env/ .venv/ # Jupyter .ipynb_checkpoints/ *.ipynb # ========================================== # HuggingFace Spaces # ========================================== # HF build artifacts hf_home/ hf_cache/ huggingface/ .local-huggingface/ *.lock # Spaces autosave artifacts spaces-assets/ frontend/node_modules/ app_files/ logs/ # Do not commit model weights unless intentional *.bin *.pt *.pth *.safetensors *.onnx # ========================================== # System / OS files # ========================================== .DS_Store Thumbs.db desktop.ini # ========================================== # Environment & Secrets # ========================================== *.env *.key *.pem secret* config/ credentials.json token* auth* # ========================================== # Node (HF frontend builds) # ========================================== node_modules/ npm-debug.log yarn-debug.log yarn-error.log # ========================================== # Python packaging # ========================================== build/ dist/ *.egg *.manifest # ========================================== # Compiled code # ========================================== *.class *.o *.a *.out # ========================================== # Logs # ========================================== *.log logs/ *.stackdump # ========================================== # Temporary files # ========================================== *.tmp *.temp tmp/ temp/ *.bak *~ .cache/ .mypy_cache/ .pytest_cache/ # ========================================== # VSCode / Editor # ========================================== .vscode/ .idea/ *.swp *.swo # ========================================== # Git # ========================================== .gitignore~ .gitattributes~