openai/chatkit-python

Public

mirrored fromhttps://github.com/openai/chatkit-pythonAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
778828a4fbce2d0e3232582de073e9a10275ad4c

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

.gitignore

40lines · modecode

1# Python-generated files
2__pycache__/
3*.py[oc]
4build/
5dist/
6wheels/
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.*
22htmlcov/
23.tox/
24.nox/
25
26# DB
27chatkit*.db
28
29uploads/
30
31# MkDocs build output
32site/
33
34# Editors & OS
35.DS_Store
36.idea/
37.vscode/
38.python-version
39.cache/
40.ipynb_checkpoints/
41