├── .gitattributes ├── .gitignore ├── HoshiNoYume ├── actions │ ├── IoT_control.py │ ├── Live2D.py │ ├── MoeGoe │ │ ├── .gitattributes │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── MoeGoe.py │ │ ├── README.md │ │ ├── __init__.py │ │ ├── attentions.py │ │ ├── commons.py │ │ ├── hubert_model.py │ │ ├── jieba │ │ │ └── dict.txt │ │ ├── mel_processing.py │ │ ├── models.py │ │ ├── modules.py │ │ ├── requirements.txt │ │ ├── text │ │ │ ├── LICENSE │ │ │ ├── __init__.py │ │ │ ├── cantonese.py │ │ │ ├── cleaners.py │ │ │ ├── english.py │ │ │ ├── japanese.py │ │ │ ├── korean.py │ │ │ ├── mandarin.py │ │ │ ├── ngu_dialect.py │ │ │ ├── sanskrit.py │ │ │ ├── shanghainese.py │ │ │ └── thai.py │ │ ├── transforms.py │ │ └── utils.py │ ├── __init__.py │ ├── interact.py │ ├── search.py │ └── speaking.py ├── api_key_sample.py ├── main.py ├── main_min.py ├── memory │ ├── __init__.py │ ├── long_summary_memory.txt │ ├── long_term_memory.py │ ├── prompts.py │ └── short_term_memory.py ├── perception │ ├── __init__.py │ ├── auditory.py │ └── text_input.py ├── test.py ├── thinking │ ├── __init__.py │ ├── agent_interact.py │ ├── agent_search.py │ ├── chat.py │ └── prompts.py └── tools │ ├── __init__.py │ ├── system_control.py │ └── translate.py ├── LICENSE ├── README.md ├── model ├── kws │ └── README.md └── tts │ └── README.md ├── requirements.txt └── run.bat /.gitattributes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/.gitignore -------------------------------------------------------------------------------- /HoshiNoYume/actions/IoT_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/actions/IoT_control.py -------------------------------------------------------------------------------- /HoshiNoYume/actions/Live2D.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/actions/Live2D.py -------------------------------------------------------------------------------- /HoshiNoYume/actions/MoeGoe/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/actions/MoeGoe/.gitattributes -------------------------------------------------------------------------------- /HoshiNoYume/actions/MoeGoe/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/actions/MoeGoe/.gitignore -------------------------------------------------------------------------------- /HoshiNoYume/actions/MoeGoe/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/actions/MoeGoe/LICENSE -------------------------------------------------------------------------------- /HoshiNoYume/actions/MoeGoe/MoeGoe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/actions/MoeGoe/MoeGoe.py -------------------------------------------------------------------------------- /HoshiNoYume/actions/MoeGoe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/actions/MoeGoe/README.md -------------------------------------------------------------------------------- /HoshiNoYume/actions/MoeGoe/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/actions/MoeGoe/__init__.py -------------------------------------------------------------------------------- /HoshiNoYume/actions/MoeGoe/attentions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/actions/MoeGoe/attentions.py -------------------------------------------------------------------------------- /HoshiNoYume/actions/MoeGoe/commons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/actions/MoeGoe/commons.py -------------------------------------------------------------------------------- /HoshiNoYume/actions/MoeGoe/hubert_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/actions/MoeGoe/hubert_model.py -------------------------------------------------------------------------------- /HoshiNoYume/actions/MoeGoe/jieba/dict.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/actions/MoeGoe/jieba/dict.txt -------------------------------------------------------------------------------- /HoshiNoYume/actions/MoeGoe/mel_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/actions/MoeGoe/mel_processing.py -------------------------------------------------------------------------------- /HoshiNoYume/actions/MoeGoe/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/actions/MoeGoe/models.py -------------------------------------------------------------------------------- /HoshiNoYume/actions/MoeGoe/modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/actions/MoeGoe/modules.py -------------------------------------------------------------------------------- /HoshiNoYume/actions/MoeGoe/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/actions/MoeGoe/requirements.txt -------------------------------------------------------------------------------- /HoshiNoYume/actions/MoeGoe/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/actions/MoeGoe/text/LICENSE -------------------------------------------------------------------------------- /HoshiNoYume/actions/MoeGoe/text/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/actions/MoeGoe/text/__init__.py -------------------------------------------------------------------------------- /HoshiNoYume/actions/MoeGoe/text/cantonese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/actions/MoeGoe/text/cantonese.py -------------------------------------------------------------------------------- /HoshiNoYume/actions/MoeGoe/text/cleaners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/actions/MoeGoe/text/cleaners.py -------------------------------------------------------------------------------- /HoshiNoYume/actions/MoeGoe/text/english.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/actions/MoeGoe/text/english.py -------------------------------------------------------------------------------- /HoshiNoYume/actions/MoeGoe/text/japanese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/actions/MoeGoe/text/japanese.py -------------------------------------------------------------------------------- /HoshiNoYume/actions/MoeGoe/text/korean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/actions/MoeGoe/text/korean.py -------------------------------------------------------------------------------- /HoshiNoYume/actions/MoeGoe/text/mandarin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/actions/MoeGoe/text/mandarin.py -------------------------------------------------------------------------------- /HoshiNoYume/actions/MoeGoe/text/ngu_dialect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/actions/MoeGoe/text/ngu_dialect.py -------------------------------------------------------------------------------- /HoshiNoYume/actions/MoeGoe/text/sanskrit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/actions/MoeGoe/text/sanskrit.py -------------------------------------------------------------------------------- /HoshiNoYume/actions/MoeGoe/text/shanghainese.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/actions/MoeGoe/text/shanghainese.py -------------------------------------------------------------------------------- /HoshiNoYume/actions/MoeGoe/text/thai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/actions/MoeGoe/text/thai.py -------------------------------------------------------------------------------- /HoshiNoYume/actions/MoeGoe/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/actions/MoeGoe/transforms.py -------------------------------------------------------------------------------- /HoshiNoYume/actions/MoeGoe/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/actions/MoeGoe/utils.py -------------------------------------------------------------------------------- /HoshiNoYume/actions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/actions/__init__.py -------------------------------------------------------------------------------- /HoshiNoYume/actions/interact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/actions/interact.py -------------------------------------------------------------------------------- /HoshiNoYume/actions/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/actions/search.py -------------------------------------------------------------------------------- /HoshiNoYume/actions/speaking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/actions/speaking.py -------------------------------------------------------------------------------- /HoshiNoYume/api_key_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/api_key_sample.py -------------------------------------------------------------------------------- /HoshiNoYume/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/main.py -------------------------------------------------------------------------------- /HoshiNoYume/main_min.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/main_min.py -------------------------------------------------------------------------------- /HoshiNoYume/memory/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/memory/__init__.py -------------------------------------------------------------------------------- /HoshiNoYume/memory/long_summary_memory.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/memory/long_summary_memory.txt -------------------------------------------------------------------------------- /HoshiNoYume/memory/long_term_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/memory/long_term_memory.py -------------------------------------------------------------------------------- /HoshiNoYume/memory/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/memory/prompts.py -------------------------------------------------------------------------------- /HoshiNoYume/memory/short_term_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/memory/short_term_memory.py -------------------------------------------------------------------------------- /HoshiNoYume/perception/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/perception/__init__.py -------------------------------------------------------------------------------- /HoshiNoYume/perception/auditory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/perception/auditory.py -------------------------------------------------------------------------------- /HoshiNoYume/perception/text_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/perception/text_input.py -------------------------------------------------------------------------------- /HoshiNoYume/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/test.py -------------------------------------------------------------------------------- /HoshiNoYume/thinking/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/thinking/__init__.py -------------------------------------------------------------------------------- /HoshiNoYume/thinking/agent_interact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/thinking/agent_interact.py -------------------------------------------------------------------------------- /HoshiNoYume/thinking/agent_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/thinking/agent_search.py -------------------------------------------------------------------------------- /HoshiNoYume/thinking/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/thinking/chat.py -------------------------------------------------------------------------------- /HoshiNoYume/thinking/prompts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/thinking/prompts.py -------------------------------------------------------------------------------- /HoshiNoYume/tools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/tools/__init__.py -------------------------------------------------------------------------------- /HoshiNoYume/tools/system_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/tools/system_control.py -------------------------------------------------------------------------------- /HoshiNoYume/tools/translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/HoshiNoYume/tools/translate.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/README.md -------------------------------------------------------------------------------- /model/kws/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/model/kws/README.md -------------------------------------------------------------------------------- /model/tts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/model/tts/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuanxuanQAQ/HoshiNoYume/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | call yume_env\Scripts\activate 3 | python HoshiNoYume\main.py --------------------------------------------------------------------------------