openai/chatkit-python
Publicmirrored fromhttps://github.com/openai/chatkit-pythonAvailable
.gitignore
40lines · modecode
| 1 | # Python-generated files |
| 2 | __pycache__/ |
| 3 | *.py[oc] |
| 4 | build/ |
| 5 | dist/ |
| 6 | wheels/ |
| 7 | *.egg-info |
| 8 | |
| 9 | # Virtual environments |
| 10 | .venv |
| 11 | |
| 12 | # Type checking / lint caches |
| 13 | .mypy_cache/ |
| 14 | .ruff_cache/ |
| 15 | .pyre/ |
| 16 | .pytype/ |
| 17 | |
| 18 | # Test & coverage |
| 19 | .pytest_cache/ |
| 20 | .coverage |
| 21 | .coverage.* |
| 22 | htmlcov/ |
| 23 | .tox/ |
| 24 | .nox/ |
| 25 | |
| 26 | # DB |
| 27 | chatkit*.db |
| 28 | |
| 29 | uploads/ |
| 30 | |
| 31 | # MkDocs build output |
| 32 | site/ |
| 33 | |
| 34 | # Editors & OS |
| 35 | .DS_Store |
| 36 | .idea/ |
| 37 | .vscode/ |
| 38 | .python-version |
| 39 | .cache/ |
| 40 | .ipynb_checkpoints/ |
| 41 | |