├── .gitignore ├── DB └── database.py ├── Fine_Tune_Rinna.ipynb ├── LICENSE ├── README.md ├── Voice_models └── put_voice_models_here ├── assets ├── Final.mp4 ├── blue_sky_bot.png ├── mafuyu_Voice.jpg ├── mafuyu_Voice.mp4 └── samuneiru.png ├── blue_sky_bot.py ├── config.yml ├── config └── all_config.py ├── discord_bot.py ├── llm_agent.py ├── llm_base_models └── put_llm_base_models_here ├── llm_models └── put_llm_model_dir_here ├── llm_utils ├── __init__.py ├── chatgpt_api.py ├── claude_api.py └── llm_utiils.py ├── requirements.txt ├── send_to_blue_sky.py ├── sns └── blue_sky │ └── send_text.py ├── voice_utils ├── attentions.py ├── common │ ├── constants.py │ └── tts_model.py ├── commons.py ├── config.py ├── configs │ ├── config.json │ ├── configs_jp_extra.json │ └── paths.yml ├── default_config.yml ├── infer.py ├── models.py ├── models_jp_extra.py ├── modules.py ├── monotonic_align │ ├── __init__.py │ └── core.py ├── re_matching.py ├── style_gen.py ├── text │ ├── __init__.py │ ├── chinese.py │ ├── chinese_bert.py │ ├── cleaner.py │ ├── cmudict.rep │ ├── english.py │ ├── english_bert_mock.py │ ├── japanese.py │ ├── japanese_bert.py │ ├── japanese_mora_list.py │ ├── opencpop-strict.txt │ ├── symbols.py │ └── tone_sandhi.py ├── tools │ ├── __init__.py │ ├── classify_language.py │ ├── sentence.py │ └── translate.py ├── transforms.py ├── utils.py └── voice_utils.py └── whisper_utils ├── __init__.py └── whisper_wrapper.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/.gitignore -------------------------------------------------------------------------------- /DB/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/DB/database.py -------------------------------------------------------------------------------- /Fine_Tune_Rinna.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/Fine_Tune_Rinna.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/README.md -------------------------------------------------------------------------------- /Voice_models/put_voice_models_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/Final.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/assets/Final.mp4 -------------------------------------------------------------------------------- /assets/blue_sky_bot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/assets/blue_sky_bot.png -------------------------------------------------------------------------------- /assets/mafuyu_Voice.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/assets/mafuyu_Voice.jpg -------------------------------------------------------------------------------- /assets/mafuyu_Voice.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/assets/mafuyu_Voice.mp4 -------------------------------------------------------------------------------- /assets/samuneiru.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/assets/samuneiru.png -------------------------------------------------------------------------------- /blue_sky_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/blue_sky_bot.py -------------------------------------------------------------------------------- /config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/config.yml -------------------------------------------------------------------------------- /config/all_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/config/all_config.py -------------------------------------------------------------------------------- /discord_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/discord_bot.py -------------------------------------------------------------------------------- /llm_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/llm_agent.py -------------------------------------------------------------------------------- /llm_base_models/put_llm_base_models_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /llm_models/put_llm_model_dir_here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /llm_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /llm_utils/chatgpt_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/llm_utils/chatgpt_api.py -------------------------------------------------------------------------------- /llm_utils/claude_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/llm_utils/claude_api.py -------------------------------------------------------------------------------- /llm_utils/llm_utiils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/llm_utils/llm_utiils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/requirements.txt -------------------------------------------------------------------------------- /send_to_blue_sky.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/send_to_blue_sky.py -------------------------------------------------------------------------------- /sns/blue_sky/send_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/sns/blue_sky/send_text.py -------------------------------------------------------------------------------- /voice_utils/attentions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/voice_utils/attentions.py -------------------------------------------------------------------------------- /voice_utils/common/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/voice_utils/common/constants.py -------------------------------------------------------------------------------- /voice_utils/common/tts_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/voice_utils/common/tts_model.py -------------------------------------------------------------------------------- /voice_utils/commons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/voice_utils/commons.py -------------------------------------------------------------------------------- /voice_utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/voice_utils/config.py -------------------------------------------------------------------------------- /voice_utils/configs/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/voice_utils/configs/config.json -------------------------------------------------------------------------------- /voice_utils/configs/configs_jp_extra.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/voice_utils/configs/configs_jp_extra.json -------------------------------------------------------------------------------- /voice_utils/configs/paths.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/voice_utils/configs/paths.yml -------------------------------------------------------------------------------- /voice_utils/default_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/voice_utils/default_config.yml -------------------------------------------------------------------------------- /voice_utils/infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/voice_utils/infer.py -------------------------------------------------------------------------------- /voice_utils/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/voice_utils/models.py -------------------------------------------------------------------------------- /voice_utils/models_jp_extra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/voice_utils/models_jp_extra.py -------------------------------------------------------------------------------- /voice_utils/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/voice_utils/modules.py -------------------------------------------------------------------------------- /voice_utils/monotonic_align/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/voice_utils/monotonic_align/__init__.py -------------------------------------------------------------------------------- /voice_utils/monotonic_align/core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/voice_utils/monotonic_align/core.py -------------------------------------------------------------------------------- /voice_utils/re_matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/voice_utils/re_matching.py -------------------------------------------------------------------------------- /voice_utils/style_gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/voice_utils/style_gen.py -------------------------------------------------------------------------------- /voice_utils/text/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/voice_utils/text/__init__.py -------------------------------------------------------------------------------- /voice_utils/text/chinese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/voice_utils/text/chinese.py -------------------------------------------------------------------------------- /voice_utils/text/chinese_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/voice_utils/text/chinese_bert.py -------------------------------------------------------------------------------- /voice_utils/text/cleaner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/voice_utils/text/cleaner.py -------------------------------------------------------------------------------- /voice_utils/text/cmudict.rep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/voice_utils/text/cmudict.rep -------------------------------------------------------------------------------- /voice_utils/text/english.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/voice_utils/text/english.py -------------------------------------------------------------------------------- /voice_utils/text/english_bert_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/voice_utils/text/english_bert_mock.py -------------------------------------------------------------------------------- /voice_utils/text/japanese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/voice_utils/text/japanese.py -------------------------------------------------------------------------------- /voice_utils/text/japanese_bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/voice_utils/text/japanese_bert.py -------------------------------------------------------------------------------- /voice_utils/text/japanese_mora_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/voice_utils/text/japanese_mora_list.py -------------------------------------------------------------------------------- /voice_utils/text/opencpop-strict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/voice_utils/text/opencpop-strict.txt -------------------------------------------------------------------------------- /voice_utils/text/symbols.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/voice_utils/text/symbols.py -------------------------------------------------------------------------------- /voice_utils/text/tone_sandhi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/voice_utils/text/tone_sandhi.py -------------------------------------------------------------------------------- /voice_utils/tools/__init__.py: -------------------------------------------------------------------------------- 1 | """ 2 | 工具包 3 | """ 4 | -------------------------------------------------------------------------------- /voice_utils/tools/classify_language.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/voice_utils/tools/classify_language.py -------------------------------------------------------------------------------- /voice_utils/tools/sentence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/voice_utils/tools/sentence.py -------------------------------------------------------------------------------- /voice_utils/tools/translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/voice_utils/tools/translate.py -------------------------------------------------------------------------------- /voice_utils/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/voice_utils/transforms.py -------------------------------------------------------------------------------- /voice_utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/voice_utils/utils.py -------------------------------------------------------------------------------- /voice_utils/voice_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/voice_utils/voice_utils.py -------------------------------------------------------------------------------- /whisper_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /whisper_utils/whisper_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/teftef6220/Local_LLM_bot/HEAD/whisper_utils/whisper_wrapper.py --------------------------------------------------------------------------------