├── .idea ├── .gitignore ├── .name ├── ChatLearning.iml ├── inspectionProfiles │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── ChatAdmin.py ├── ChatAllfind.py ├── ChatCheck.py ├── ChatClass.py ├── ChatDelete.py ├── ChatFilter.py ├── ChatLearning.py ├── ChatMerge.py ├── ChatReply.py ├── ChatStock.py ├── ChatSubadmin.py ├── Chatmain.py ├── Filter_example.clc ├── LICENSE ├── README.md ├── ToVoice └── ToVoice.md ├── config.clc ├── data.json ├── dict.txt ├── requirements.txt ├── setup.sh ├── simuse.py └── tools ├── ClTools.py └── README.md /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # 默认忽略的文件 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | README.md -------------------------------------------------------------------------------- /.idea/ChatLearning.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JHue58/ChatLearning/HEAD/.idea/ChatLearning.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JHue58/ChatLearning/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JHue58/ChatLearning/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JHue58/ChatLearning/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JHue58/ChatLearning/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /ChatAdmin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JHue58/ChatLearning/HEAD/ChatAdmin.py -------------------------------------------------------------------------------- /ChatAllfind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JHue58/ChatLearning/HEAD/ChatAllfind.py -------------------------------------------------------------------------------- /ChatCheck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JHue58/ChatLearning/HEAD/ChatCheck.py -------------------------------------------------------------------------------- /ChatClass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JHue58/ChatLearning/HEAD/ChatClass.py -------------------------------------------------------------------------------- /ChatDelete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JHue58/ChatLearning/HEAD/ChatDelete.py -------------------------------------------------------------------------------- /ChatFilter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JHue58/ChatLearning/HEAD/ChatFilter.py -------------------------------------------------------------------------------- /ChatLearning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JHue58/ChatLearning/HEAD/ChatLearning.py -------------------------------------------------------------------------------- /ChatMerge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JHue58/ChatLearning/HEAD/ChatMerge.py -------------------------------------------------------------------------------- /ChatReply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JHue58/ChatLearning/HEAD/ChatReply.py -------------------------------------------------------------------------------- /ChatStock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JHue58/ChatLearning/HEAD/ChatStock.py -------------------------------------------------------------------------------- /ChatSubadmin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JHue58/ChatLearning/HEAD/ChatSubadmin.py -------------------------------------------------------------------------------- /Chatmain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JHue58/ChatLearning/HEAD/Chatmain.py -------------------------------------------------------------------------------- /Filter_example.clc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JHue58/ChatLearning/HEAD/Filter_example.clc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JHue58/ChatLearning/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JHue58/ChatLearning/HEAD/README.md -------------------------------------------------------------------------------- /ToVoice/ToVoice.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JHue58/ChatLearning/HEAD/ToVoice/ToVoice.md -------------------------------------------------------------------------------- /config.clc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JHue58/ChatLearning/HEAD/config.clc -------------------------------------------------------------------------------- /data.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JHue58/ChatLearning/HEAD/data.json -------------------------------------------------------------------------------- /dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JHue58/ChatLearning/HEAD/dict.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JHue58/ChatLearning/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JHue58/ChatLearning/HEAD/setup.sh -------------------------------------------------------------------------------- /simuse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JHue58/ChatLearning/HEAD/simuse.py -------------------------------------------------------------------------------- /tools/ClTools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JHue58/ChatLearning/HEAD/tools/ClTools.py -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JHue58/ChatLearning/HEAD/tools/README.md --------------------------------------------------------------------------------