# Python virtual environments venv/ env/ .virtualenv/ .venv/ # Python bytecode and caches __pycache__/ *.py[cod] *$py.class *.so # Virtual environment activation files *.egg-info/ dist/ build/ *.egg # Dependency lock files (optional, include if you don’t want them tracked) # requirements.lock # Pipfile.lock # IDE and editor files .idea/ .vscode/ *.sublime-project *.sublime-workspace # OS-generated files .DS_Store Thumbs.db # Logs and temporary files *.log *.tmp temp/ # Model weights and caches (if downloaded locally) *.ckpt *.safetensors *.bin *.pth model_cache/ cache/ diffusers_cache/ # Output files from generation output/ *.png *.jpg *.jpeg *.gif # Hugging Face Spaces-specific ignores (optional) # Uncomment if you don’t want these tracked # .hf_cache/ # .gradio/ # Miscellaneous *.bak *.swp *~