├── .gitignore ├── .vs ├── VSWorkspaceState.json ├── Wechat │ └── v15 │ │ └── .suo └── slnx.sqlite ├── .vscode └── launch.json ├── LICENSE ├── README.md ├── api.inf ├── attachments └── attachments ├── beta ├── Untitled-1.py ├── __init__.py ├── littlegame1.py ├── msapi.py └── wav2text.py ├── docs └── README.md ├── ffmpeg.exe ├── images ├── default.gif └── group │ └── group ├── records └── default.gif ├── videos └── default.gif └── wechat.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoGao/turing-chat/HEAD/.gitignore -------------------------------------------------------------------------------- /.vs/VSWorkspaceState.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoGao/turing-chat/HEAD/.vs/VSWorkspaceState.json -------------------------------------------------------------------------------- /.vs/Wechat/v15/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoGao/turing-chat/HEAD/.vs/Wechat/v15/.suo -------------------------------------------------------------------------------- /.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoGao/turing-chat/HEAD/.vs/slnx.sqlite -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoGao/turing-chat/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoGao/turing-chat/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoGao/turing-chat/HEAD/README.md -------------------------------------------------------------------------------- /api.inf: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /attachments/attachments: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /beta/Untitled-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoGao/turing-chat/HEAD/beta/Untitled-1.py -------------------------------------------------------------------------------- /beta/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /beta/littlegame1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoGao/turing-chat/HEAD/beta/littlegame1.py -------------------------------------------------------------------------------- /beta/msapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoGao/turing-chat/HEAD/beta/msapi.py -------------------------------------------------------------------------------- /beta/wav2text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoGao/turing-chat/HEAD/beta/wav2text.py -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoGao/turing-chat/HEAD/docs/README.md -------------------------------------------------------------------------------- /ffmpeg.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoGao/turing-chat/HEAD/ffmpeg.exe -------------------------------------------------------------------------------- /images/default.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoGao/turing-chat/HEAD/images/default.gif -------------------------------------------------------------------------------- /images/group/group: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /records/default.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoGao/turing-chat/HEAD/records/default.gif -------------------------------------------------------------------------------- /videos/default.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoGao/turing-chat/HEAD/videos/default.gif -------------------------------------------------------------------------------- /wechat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CosmoGao/turing-chat/HEAD/wechat.py --------------------------------------------------------------------------------