├── .gitignore ├── LICENSE ├── README.md ├── ai_model.py ├── config.json ├── data └── reference_voices │ ├── reference.json │ └── reference.wav ├── install_windows.bat ├── main.py ├── modules ├── json_handler.py ├── logging_config.py └── tts_engine.py ├── requirements.txt ├── start_windows.bat └── update_windows.bat /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancoder1/AsukaAI/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancoder1/AsukaAI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancoder1/AsukaAI/HEAD/README.md -------------------------------------------------------------------------------- /ai_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancoder1/AsukaAI/HEAD/ai_model.py -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancoder1/AsukaAI/HEAD/config.json -------------------------------------------------------------------------------- /data/reference_voices/reference.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancoder1/AsukaAI/HEAD/data/reference_voices/reference.json -------------------------------------------------------------------------------- /data/reference_voices/reference.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancoder1/AsukaAI/HEAD/data/reference_voices/reference.wav -------------------------------------------------------------------------------- /install_windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancoder1/AsukaAI/HEAD/install_windows.bat -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancoder1/AsukaAI/HEAD/main.py -------------------------------------------------------------------------------- /modules/json_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancoder1/AsukaAI/HEAD/modules/json_handler.py -------------------------------------------------------------------------------- /modules/logging_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancoder1/AsukaAI/HEAD/modules/logging_config.py -------------------------------------------------------------------------------- /modules/tts_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancoder1/AsukaAI/HEAD/modules/tts_engine.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancoder1/AsukaAI/HEAD/requirements.txt -------------------------------------------------------------------------------- /start_windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancoder1/AsukaAI/HEAD/start_windows.bat -------------------------------------------------------------------------------- /update_windows.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancoder1/AsukaAI/HEAD/update_windows.bat --------------------------------------------------------------------------------