Spaces:
Sleeping
Sleeping
| # Python | |
| __pycache__/ | |
| *.py[cod] | |
| *$py.class | |
| *.so | |
| .Python | |
| build/ | |
| develop-eggs/ | |
| dist/ | |
| downloads/ | |
| eggs/ | |
| .eggs/ | |
| lib/ | |
| lib64/ | |
| parts/ | |
| sdist/ | |
| var/ | |
| wheels/ | |
| pip-wheel-metadata/ | |
| share/python-wheels/ | |
| *.egg-info/ | |
| .installed.cfg | |
| *.egg | |
| MANIFEST | |
| # Virtual Environment | |
| venv/ | |
| env/ | |
| ENV/ | |
| env.bak/ | |
| venv.bak/ | |
| .venv | |
| # Environment Variables | |
| .env | |
| .env.local | |
| .env.*.local | |
| # Google Cloud Credentials - CRITICAL - NEVER COMMIT | |
| credentials.json | |
| *.json | |
| !package.json | |
| !package-lock.json | |
| # IDE | |
| .vscode/ | |
| .idea/ | |
| *.swp | |
| *.swo | |
| *~ | |
| .DS_Store | |
| # Jupyter Notebook | |
| .ipynb_checkpoints | |
| # Data and Vector Store - Contains indexed documents | |
| data/ | |
| *.faiss | |
| *.pkl | |
| # Logs | |
| *.log | |
| logs/ | |
| # Testing | |
| .pytest_cache/ | |
| .coverage | |
| htmlcov/ | |
| .tox/ | |
| .nox/ | |
| # MyPy | |
| .mypy_cache/ | |
| .dmypy.json | |
| dmypy.json | |
| # Pyre | |
| .pyre/ | |
| # Database | |
| *.db | |
| *.sqlite | |
| *.sqlite3 | |
| # macOS | |
| .DS_Store | |
| .AppleDouble | |
| .LSOverride | |
| # Windows | |
| Thumbs.db | |
| ehthumbs.db | |
| Desktop.ini | |
| $RECYCLE.BIN/ | |
| # Temporary files | |
| *.tmp | |
| *.temp | |
| tmp/ | |
| temp/ | |