├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── chatbot.py ├── chatbot_akari.py ├── chatgpt_example.py ├── config ├── en_to_jp_fix_dict.csv └── system_prompt.txt ├── gpt_publisher.py ├── jpg ├── akari_chatgpt_bot.jpg ├── faster_chatgpt_bot.jpg └── faster_chatgpt_bot_system.jpg ├── lib ├── chat.py ├── chat_akari.py ├── chat_akari_grpc.py ├── conf.py ├── en_to_jp.py ├── err_handler.py ├── google_speech.py ├── google_speech_grpc.py ├── google_speech_v2.py ├── google_speech_v2_grpc.py ├── grpc │ ├── gpt_server_pb2.py │ ├── gpt_server_pb2_grpc.py │ ├── motion_server_pb2.py │ ├── motion_server_pb2_grpc.py │ ├── speech_server_pb2.py │ ├── speech_server_pb2_grpc.py │ ├── voice_server_pb2.py │ └── voice_server_pb2_grpc.py ├── style_bert_vits.py ├── text_to_voice.py └── voicevox.py ├── manual_grpc_publisher_for_gpt.py ├── manual_grpc_publisher_for_voice.py ├── proto ├── codegen.py ├── gpt_server.proto ├── speech_server.proto └── voice_server.proto ├── pysen.toml ├── requirements.txt ├── script ├── faster_chatbot.sh ├── faster_chatbot_auto.sh ├── faster_chatbot_bert_vits.sh └── faster_chatbot_bert_vits_auto.sh ├── speech_publisher.py ├── speech_to_text_example.py ├── style_bert_vits_example.py ├── style_bert_vits_server.py ├── talk_controller_client.py ├── text_to_kana_example.py ├── voicevox_example.py └── voicevox_server.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/README.md -------------------------------------------------------------------------------- /chatbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/chatbot.py -------------------------------------------------------------------------------- /chatbot_akari.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/chatbot_akari.py -------------------------------------------------------------------------------- /chatgpt_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/chatgpt_example.py -------------------------------------------------------------------------------- /config/en_to_jp_fix_dict.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/config/en_to_jp_fix_dict.csv -------------------------------------------------------------------------------- /config/system_prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/config/system_prompt.txt -------------------------------------------------------------------------------- /gpt_publisher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/gpt_publisher.py -------------------------------------------------------------------------------- /jpg/akari_chatgpt_bot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/jpg/akari_chatgpt_bot.jpg -------------------------------------------------------------------------------- /jpg/faster_chatgpt_bot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/jpg/faster_chatgpt_bot.jpg -------------------------------------------------------------------------------- /jpg/faster_chatgpt_bot_system.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/jpg/faster_chatgpt_bot_system.jpg -------------------------------------------------------------------------------- /lib/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/lib/chat.py -------------------------------------------------------------------------------- /lib/chat_akari.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/lib/chat_akari.py -------------------------------------------------------------------------------- /lib/chat_akari_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/lib/chat_akari_grpc.py -------------------------------------------------------------------------------- /lib/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/lib/conf.py -------------------------------------------------------------------------------- /lib/en_to_jp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/lib/en_to_jp.py -------------------------------------------------------------------------------- /lib/err_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/lib/err_handler.py -------------------------------------------------------------------------------- /lib/google_speech.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/lib/google_speech.py -------------------------------------------------------------------------------- /lib/google_speech_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/lib/google_speech_grpc.py -------------------------------------------------------------------------------- /lib/google_speech_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/lib/google_speech_v2.py -------------------------------------------------------------------------------- /lib/google_speech_v2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/lib/google_speech_v2_grpc.py -------------------------------------------------------------------------------- /lib/grpc/gpt_server_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/lib/grpc/gpt_server_pb2.py -------------------------------------------------------------------------------- /lib/grpc/gpt_server_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/lib/grpc/gpt_server_pb2_grpc.py -------------------------------------------------------------------------------- /lib/grpc/motion_server_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/lib/grpc/motion_server_pb2.py -------------------------------------------------------------------------------- /lib/grpc/motion_server_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/lib/grpc/motion_server_pb2_grpc.py -------------------------------------------------------------------------------- /lib/grpc/speech_server_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/lib/grpc/speech_server_pb2.py -------------------------------------------------------------------------------- /lib/grpc/speech_server_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/lib/grpc/speech_server_pb2_grpc.py -------------------------------------------------------------------------------- /lib/grpc/voice_server_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/lib/grpc/voice_server_pb2.py -------------------------------------------------------------------------------- /lib/grpc/voice_server_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/lib/grpc/voice_server_pb2_grpc.py -------------------------------------------------------------------------------- /lib/style_bert_vits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/lib/style_bert_vits.py -------------------------------------------------------------------------------- /lib/text_to_voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/lib/text_to_voice.py -------------------------------------------------------------------------------- /lib/voicevox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/lib/voicevox.py -------------------------------------------------------------------------------- /manual_grpc_publisher_for_gpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/manual_grpc_publisher_for_gpt.py -------------------------------------------------------------------------------- /manual_grpc_publisher_for_voice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/manual_grpc_publisher_for_voice.py -------------------------------------------------------------------------------- /proto/codegen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/proto/codegen.py -------------------------------------------------------------------------------- /proto/gpt_server.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/proto/gpt_server.proto -------------------------------------------------------------------------------- /proto/speech_server.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/proto/speech_server.proto -------------------------------------------------------------------------------- /proto/voice_server.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/proto/voice_server.proto -------------------------------------------------------------------------------- /pysen.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/pysen.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/requirements.txt -------------------------------------------------------------------------------- /script/faster_chatbot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/script/faster_chatbot.sh -------------------------------------------------------------------------------- /script/faster_chatbot_auto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/script/faster_chatbot_auto.sh -------------------------------------------------------------------------------- /script/faster_chatbot_bert_vits.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/script/faster_chatbot_bert_vits.sh -------------------------------------------------------------------------------- /script/faster_chatbot_bert_vits_auto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/script/faster_chatbot_bert_vits_auto.sh -------------------------------------------------------------------------------- /speech_publisher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/speech_publisher.py -------------------------------------------------------------------------------- /speech_to_text_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/speech_to_text_example.py -------------------------------------------------------------------------------- /style_bert_vits_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/style_bert_vits_example.py -------------------------------------------------------------------------------- /style_bert_vits_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/style_bert_vits_server.py -------------------------------------------------------------------------------- /talk_controller_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/talk_controller_client.py -------------------------------------------------------------------------------- /text_to_kana_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/text_to_kana_example.py -------------------------------------------------------------------------------- /voicevox_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/voicevox_example.py -------------------------------------------------------------------------------- /voicevox_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AkariGroup/akari_chatgpt_bot/HEAD/voicevox_server.py --------------------------------------------------------------------------------