├── .gitignore ├── LICENSE ├── README.md ├── READMEen.md ├── config_editor.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhna1/xiaozhi-esp32-server-editor/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhna1/xiaozhi-esp32-server-editor/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhna1/xiaozhi-esp32-server-editor/HEAD/README.md -------------------------------------------------------------------------------- /READMEen.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhna1/xiaozhi-esp32-server-editor/HEAD/READMEen.md -------------------------------------------------------------------------------- /config_editor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwhna1/xiaozhi-esp32-server-editor/HEAD/config_editor.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | ruamel.yaml==0.17.21 2 | PyYAML==6.0 3 | pyinstaller==5.9.0 # 仅用于构建可执行文件 --------------------------------------------------------------------------------