Spaces:
Sleeping
Sleeping
| # Python | |
| __pycache__/ | |
| *.py[cod] | |
| *$py.class | |
| # Virtual environments | |
| venv/ | |
| .venv/ | |
| env/ | |
| ENV/ | |
| # Environment variables | |
| .env | |
| .env.local | |
| # Gradio | |
| .gradio/ | |
| # Hugging Face cache | |
| .cache/ | |
| huggingface_cache/ | |
| # Jupyter | |
| .ipynb_checkpoints/ | |
| # macOS | |
| .DS_Store | |
| # VS Code | |
| .vscode/ | |
| # PyCharm | |
| .idea/ | |
| # Logs | |
| *.log | |
| # Build artifacts | |
| build/ | |
| dist/ | |
| *.egg-info/ | |
| # Model files | |
| *.gguf | |
| *.bin | |
| *.safetensors | |
| models/downloads/ | |
| models/**/*.gguf | |
| models/**/*.bin | |
| models/**/*.safetensors | |
| # Temporary files | |
| tmp/ | |
| temp/ | |