├── .gitignore ├── .python-version ├── README.md ├── aituber_system.py ├── obs_adapter.py ├── openai_adapter.py ├── play_sound.py ├── requirements.txt ├── run.py ├── system_prompt.txt ├── voicevox_adapter.py └── youtube_comment_adapter.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr2mg/aituber_python_programing_example/HEAD/.gitignore -------------------------------------------------------------------------------- /.python-version: -------------------------------------------------------------------------------- 1 | 3.11.5 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr2mg/aituber_python_programing_example/HEAD/README.md -------------------------------------------------------------------------------- /aituber_system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr2mg/aituber_python_programing_example/HEAD/aituber_system.py -------------------------------------------------------------------------------- /obs_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr2mg/aituber_python_programing_example/HEAD/obs_adapter.py -------------------------------------------------------------------------------- /openai_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr2mg/aituber_python_programing_example/HEAD/openai_adapter.py -------------------------------------------------------------------------------- /play_sound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr2mg/aituber_python_programing_example/HEAD/play_sound.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr2mg/aituber_python_programing_example/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr2mg/aituber_python_programing_example/HEAD/run.py -------------------------------------------------------------------------------- /system_prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr2mg/aituber_python_programing_example/HEAD/system_prompt.txt -------------------------------------------------------------------------------- /voicevox_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr2mg/aituber_python_programing_example/HEAD/voicevox_adapter.py -------------------------------------------------------------------------------- /youtube_comment_adapter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sr2mg/aituber_python_programing_example/HEAD/youtube_comment_adapter.py --------------------------------------------------------------------------------