├── .gitignore ├── LLM ├── __pycache__ │ ├── chat.cpython-310.pyc │ └── mlx_lm.cpython-310.pyc ├── chat.py └── mlx_lm.py ├── README.md ├── STT ├── __pycache__ │ └── lightning_whisper_mlx_handler.cpython-310.pyc └── lightning_whisper_mlx_handler.py ├── TTS ├── __pycache__ │ └── melotts.cpython-310.pyc └── melotts.py ├── baseHandler.py ├── listen_and_play.py ├── local_audio_streamer.py ├── logo.png ├── requirements.txt ├── s2s_pipeline.py └── utils.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | tmp -------------------------------------------------------------------------------- /LLM/__pycache__/chat.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi3z/speech-to-speech-japanese/HEAD/LLM/__pycache__/chat.cpython-310.pyc -------------------------------------------------------------------------------- /LLM/__pycache__/mlx_lm.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi3z/speech-to-speech-japanese/HEAD/LLM/__pycache__/mlx_lm.cpython-310.pyc -------------------------------------------------------------------------------- /LLM/chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi3z/speech-to-speech-japanese/HEAD/LLM/chat.py -------------------------------------------------------------------------------- /LLM/mlx_lm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi3z/speech-to-speech-japanese/HEAD/LLM/mlx_lm.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi3z/speech-to-speech-japanese/HEAD/README.md -------------------------------------------------------------------------------- /STT/__pycache__/lightning_whisper_mlx_handler.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi3z/speech-to-speech-japanese/HEAD/STT/__pycache__/lightning_whisper_mlx_handler.cpython-310.pyc -------------------------------------------------------------------------------- /STT/lightning_whisper_mlx_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi3z/speech-to-speech-japanese/HEAD/STT/lightning_whisper_mlx_handler.py -------------------------------------------------------------------------------- /TTS/__pycache__/melotts.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi3z/speech-to-speech-japanese/HEAD/TTS/__pycache__/melotts.cpython-310.pyc -------------------------------------------------------------------------------- /TTS/melotts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi3z/speech-to-speech-japanese/HEAD/TTS/melotts.py -------------------------------------------------------------------------------- /baseHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi3z/speech-to-speech-japanese/HEAD/baseHandler.py -------------------------------------------------------------------------------- /listen_and_play.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi3z/speech-to-speech-japanese/HEAD/listen_and_play.py -------------------------------------------------------------------------------- /local_audio_streamer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi3z/speech-to-speech-japanese/HEAD/local_audio_streamer.py -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi3z/speech-to-speech-japanese/HEAD/logo.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi3z/speech-to-speech-japanese/HEAD/requirements.txt -------------------------------------------------------------------------------- /s2s_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi3z/speech-to-speech-japanese/HEAD/s2s_pipeline.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shi3z/speech-to-speech-japanese/HEAD/utils.py --------------------------------------------------------------------------------