| # Python cache and environment | |
| __pycache__/ | |
| *.py[cod] | |
| *.so | |
| *.egg | |
| *.egg-info/ | |
| dist/ | |
| build/ | |
| # Virtual environment | |
| env/ | |
| venv/ | |
| ENV/ | |
| .venv/ | |
| # VS Code | |
| .vscode/ | |
| # macOS system files | |
| .DS_Store | |
| # Environment variables | |
| .env | |
| # Jupyter Notebook checkpoints (if any) | |
| .ipynb_checkpoints/ | |
| # Gradio cache (optional) | |
| gradio_cached_examples/ | |
| # Logs (optional) | |
| *.log | |