| # Python-related files | |
| __pycache__/ | |
| *.py[cod] | |
| *.swp | |
| .DS_Store | |
| *.egg-info/ | |
| # Virtual environment | |
| venv/ | |
| env/ | |
| *.venv/ | |
| # Jupyter Notebooks checkpoints | |
| .ipynb_checkpoints/ | |
| # Logs | |
| logs/ | |
| *.log | |
| # Hugging Face Transformers cache | |
| ~/.cache/huggingface/ | |
| # Docker-related files | |
| *.dockerignore | |
| # Ignore compiled code | |
| *.so | |
| *.o | |
| *.out | |
| *.a | |
| # Ignore OS-specific files | |
| Thumbs.db | |
| ehthumbs.db | |
| # Ignore FastAPI auto-generated files | |
| *.db | |
| instance/ | |
| .env | |
| .env.local | |
| .env.*.local | |
| # VS Code settings | |
| .vscode/ | |
| .history/ | |
| # Ignore dependency files | |
| pip-log.txt | |
| pip-delete-this-directory.txt | |
| # Ignore coverage files | |
| .coverage | |
| htmlcov/ | |
| coverage.xml | |
| # Ignore test-related files | |
| .tox/ | |
| .pytest_cache/ | |
| nosetests.xml | |
| test-reports/ | |
| # Ignore Hugging Face Spaces cache | |
| space_runtime/ |