├── README.md ├── character_config.yaml ├── character_files └── main_sample.wav ├── client └── still_in_development.txt ├── extra-req.txt ├── install_reqs.sh ├── requirements.txt └── server ├── main_chat.py └── process ├── asr_func └── asr_push_to_talk.py ├── llm_funcs └── llm_scr.py └── tts_func └── sovits_ping.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenfeng/riko_project/HEAD/README.md -------------------------------------------------------------------------------- /character_config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenfeng/riko_project/HEAD/character_config.yaml -------------------------------------------------------------------------------- /character_files/main_sample.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenfeng/riko_project/HEAD/character_files/main_sample.wav -------------------------------------------------------------------------------- /client/still_in_development.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /extra-req.txt: -------------------------------------------------------------------------------- 1 | faster-whisper 2 | sounddevice 3 | openai -------------------------------------------------------------------------------- /install_reqs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenfeng/riko_project/HEAD/install_reqs.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenfeng/riko_project/HEAD/requirements.txt -------------------------------------------------------------------------------- /server/main_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenfeng/riko_project/HEAD/server/main_chat.py -------------------------------------------------------------------------------- /server/process/asr_func/asr_push_to_talk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenfeng/riko_project/HEAD/server/process/asr_func/asr_push_to_talk.py -------------------------------------------------------------------------------- /server/process/llm_funcs/llm_scr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenfeng/riko_project/HEAD/server/process/llm_funcs/llm_scr.py -------------------------------------------------------------------------------- /server/process/tts_func/sovits_ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rayenfeng/riko_project/HEAD/server/process/tts_func/sovits_ping.py --------------------------------------------------------------------------------