├── .gitignore ├── README.md ├── __init__.py ├── azurebot ├── __init__py ├── azurebotfunction.py ├── azurebotmult.py └── azurebotsingle.py ├── config_example.ini ├── erniebot ├── __init__.py ├── erniebotfunction.py ├── erniebotmult.py └── erniebotsingle.py ├── functionplugin ├── aliyunossup.py ├── functionpluginlist.json ├── macshell.py ├── plugindemo.py ├── posttoqw.py ├── querytime.py ├── search.py ├── sendemail.py ├── tank.py ├── tankwebcontrol.py ├── templates │ └── index.html ├── videovison.py ├── wjxanalysis.py └── wjxwjlist.py ├── log └── .gitkeep ├── main.py ├── main_text.py ├── openaibot ├── modellist.txt ├── openaibotfunction.py ├── openaibotmult.py ├── openaibotsingle.py ├── openaibotsinglejson.py ├── openaibotsinglevison.py ├── openaiimage.py └── openaimodel.py ├── picovoice ├── Hi-Yoyo_en_mac_v2_2_0.ppn └── wakeword.py ├── requirements.txt ├── robot_info.json ├── snowboy ├── __init__.py ├── resources │ ├── common.res │ ├── ding.wav │ ├── dong.wav │ ├── models │ │ ├── HiYoyo.pmdl │ │ ├── Yoyo.pmdl │ │ ├── Zhimakaimen.pmdl │ │ ├── alexa_02092017.umdl │ │ ├── computer.umdl │ │ ├── hey_extreme.umdl │ │ ├── jarvis.umdl │ │ ├── neoya.umdl │ │ ├── smart_mirror.umdl │ │ ├── snowboy.umdl │ │ ├── subex.umdl │ │ └── view_glass.umdl │ ├── snowboy.raw │ └── snowboy.wav ├── snowboydecoder.py ├── snowboydetect.py ├── wakeword.py └── 已编译生成的文件 │ ├── M1芯片的MacOS │ └── _snowboydetect.so │ ├── X86的Ubuntu │ └── _snowboydetect.so │ └── 香橙派的Ubuntu │ └── _snowboydetect.so └── speechmodules ├── __init___.py ├── speech2text.py ├── tepfile └── .gitkeep ├── text2speech.py ├── text2speechedge.py └── text2speechedgev2.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /azurebot/__init__py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /azurebot/azurebotfunction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/azurebot/azurebotfunction.py -------------------------------------------------------------------------------- /azurebot/azurebotmult.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/azurebot/azurebotmult.py -------------------------------------------------------------------------------- /azurebot/azurebotsingle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/azurebot/azurebotsingle.py -------------------------------------------------------------------------------- /config_example.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/config_example.ini -------------------------------------------------------------------------------- /erniebot/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /erniebot/erniebotfunction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/erniebot/erniebotfunction.py -------------------------------------------------------------------------------- /erniebot/erniebotmult.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/erniebot/erniebotmult.py -------------------------------------------------------------------------------- /erniebot/erniebotsingle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/erniebot/erniebotsingle.py -------------------------------------------------------------------------------- /functionplugin/aliyunossup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/functionplugin/aliyunossup.py -------------------------------------------------------------------------------- /functionplugin/functionpluginlist.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/functionplugin/functionpluginlist.json -------------------------------------------------------------------------------- /functionplugin/macshell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/functionplugin/macshell.py -------------------------------------------------------------------------------- /functionplugin/plugindemo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/functionplugin/plugindemo.py -------------------------------------------------------------------------------- /functionplugin/posttoqw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/functionplugin/posttoqw.py -------------------------------------------------------------------------------- /functionplugin/querytime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/functionplugin/querytime.py -------------------------------------------------------------------------------- /functionplugin/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/functionplugin/search.py -------------------------------------------------------------------------------- /functionplugin/sendemail.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/functionplugin/sendemail.py -------------------------------------------------------------------------------- /functionplugin/tank.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/functionplugin/tank.py -------------------------------------------------------------------------------- /functionplugin/tankwebcontrol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/functionplugin/tankwebcontrol.py -------------------------------------------------------------------------------- /functionplugin/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/functionplugin/templates/index.html -------------------------------------------------------------------------------- /functionplugin/videovison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/functionplugin/videovison.py -------------------------------------------------------------------------------- /functionplugin/wjxanalysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/functionplugin/wjxanalysis.py -------------------------------------------------------------------------------- /functionplugin/wjxwjlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/functionplugin/wjxwjlist.py -------------------------------------------------------------------------------- /log/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/main.py -------------------------------------------------------------------------------- /main_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/main_text.py -------------------------------------------------------------------------------- /openaibot/modellist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/openaibot/modellist.txt -------------------------------------------------------------------------------- /openaibot/openaibotfunction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/openaibot/openaibotfunction.py -------------------------------------------------------------------------------- /openaibot/openaibotmult.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/openaibot/openaibotmult.py -------------------------------------------------------------------------------- /openaibot/openaibotsingle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/openaibot/openaibotsingle.py -------------------------------------------------------------------------------- /openaibot/openaibotsinglejson.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/openaibot/openaibotsinglejson.py -------------------------------------------------------------------------------- /openaibot/openaibotsinglevison.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/openaibot/openaibotsinglevison.py -------------------------------------------------------------------------------- /openaibot/openaiimage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/openaibot/openaiimage.py -------------------------------------------------------------------------------- /openaibot/openaimodel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/openaibot/openaimodel.py -------------------------------------------------------------------------------- /picovoice/Hi-Yoyo_en_mac_v2_2_0.ppn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/picovoice/Hi-Yoyo_en_mac_v2_2_0.ppn -------------------------------------------------------------------------------- /picovoice/wakeword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/picovoice/wakeword.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/requirements.txt -------------------------------------------------------------------------------- /robot_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/robot_info.json -------------------------------------------------------------------------------- /snowboy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /snowboy/resources/common.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/snowboy/resources/common.res -------------------------------------------------------------------------------- /snowboy/resources/ding.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/snowboy/resources/ding.wav -------------------------------------------------------------------------------- /snowboy/resources/dong.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/snowboy/resources/dong.wav -------------------------------------------------------------------------------- /snowboy/resources/models/HiYoyo.pmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/snowboy/resources/models/HiYoyo.pmdl -------------------------------------------------------------------------------- /snowboy/resources/models/Yoyo.pmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/snowboy/resources/models/Yoyo.pmdl -------------------------------------------------------------------------------- /snowboy/resources/models/Zhimakaimen.pmdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/snowboy/resources/models/Zhimakaimen.pmdl -------------------------------------------------------------------------------- /snowboy/resources/models/alexa_02092017.umdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/snowboy/resources/models/alexa_02092017.umdl -------------------------------------------------------------------------------- /snowboy/resources/models/computer.umdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/snowboy/resources/models/computer.umdl -------------------------------------------------------------------------------- /snowboy/resources/models/hey_extreme.umdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/snowboy/resources/models/hey_extreme.umdl -------------------------------------------------------------------------------- /snowboy/resources/models/jarvis.umdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/snowboy/resources/models/jarvis.umdl -------------------------------------------------------------------------------- /snowboy/resources/models/neoya.umdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/snowboy/resources/models/neoya.umdl -------------------------------------------------------------------------------- /snowboy/resources/models/smart_mirror.umdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/snowboy/resources/models/smart_mirror.umdl -------------------------------------------------------------------------------- /snowboy/resources/models/snowboy.umdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/snowboy/resources/models/snowboy.umdl -------------------------------------------------------------------------------- /snowboy/resources/models/subex.umdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/snowboy/resources/models/subex.umdl -------------------------------------------------------------------------------- /snowboy/resources/models/view_glass.umdl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/snowboy/resources/models/view_glass.umdl -------------------------------------------------------------------------------- /snowboy/resources/snowboy.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/snowboy/resources/snowboy.raw -------------------------------------------------------------------------------- /snowboy/resources/snowboy.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/snowboy/resources/snowboy.wav -------------------------------------------------------------------------------- /snowboy/snowboydecoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/snowboy/snowboydecoder.py -------------------------------------------------------------------------------- /snowboy/snowboydetect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/snowboy/snowboydetect.py -------------------------------------------------------------------------------- /snowboy/wakeword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/snowboy/wakeword.py -------------------------------------------------------------------------------- /snowboy/已编译生成的文件/M1芯片的MacOS/_snowboydetect.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/snowboy/已编译生成的文件/M1芯片的MacOS/_snowboydetect.so -------------------------------------------------------------------------------- /snowboy/已编译生成的文件/X86的Ubuntu/_snowboydetect.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/snowboy/已编译生成的文件/X86的Ubuntu/_snowboydetect.so -------------------------------------------------------------------------------- /snowboy/已编译生成的文件/香橙派的Ubuntu/_snowboydetect.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/snowboy/已编译生成的文件/香橙派的Ubuntu/_snowboydetect.so -------------------------------------------------------------------------------- /speechmodules/__init___.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /speechmodules/speech2text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/speechmodules/speech2text.py -------------------------------------------------------------------------------- /speechmodules/tepfile/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /speechmodules/text2speech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/speechmodules/text2speech.py -------------------------------------------------------------------------------- /speechmodules/text2speechedge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/speechmodules/text2speechedge.py -------------------------------------------------------------------------------- /speechmodules/text2speechedgev2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Ya-chunJen/HiYoyo/HEAD/speechmodules/text2speechedgev2.py --------------------------------------------------------------------------------