├── .idea ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml ├── rev_HunYuan.iml ├── vcs.xml └── workspace.xml ├── LICENSE ├── img.png ├── pack.bat ├── readme.md ├── rev_HunYuan ├── __init__.py ├── chat.py └── readme.md └── setup.py /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarcicYang/rev_HunYuan/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarcicYang/rev_HunYuan/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarcicYang/rev_HunYuan/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarcicYang/rev_HunYuan/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/rev_HunYuan.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarcicYang/rev_HunYuan/HEAD/.idea/rev_HunYuan.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarcicYang/rev_HunYuan/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarcicYang/rev_HunYuan/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarcicYang/rev_HunYuan/HEAD/LICENSE -------------------------------------------------------------------------------- /img.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarcicYang/rev_HunYuan/HEAD/img.png -------------------------------------------------------------------------------- /pack.bat: -------------------------------------------------------------------------------- 1 | python -m build -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarcicYang/rev_HunYuan/HEAD/readme.md -------------------------------------------------------------------------------- /rev_HunYuan/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarcicYang/rev_HunYuan/HEAD/rev_HunYuan/__init__.py -------------------------------------------------------------------------------- /rev_HunYuan/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarcicYang/rev_HunYuan/HEAD/rev_HunYuan/chat.py -------------------------------------------------------------------------------- /rev_HunYuan/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarcicYang/rev_HunYuan/HEAD/rev_HunYuan/readme.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HarcicYang/rev_HunYuan/HEAD/setup.py --------------------------------------------------------------------------------