├── CascadeModel ├── cosyvoise.py ├── llms.py └── whisper_asr.py ├── Funaudio_gpt4o ├── cosyvoice_funaudio_gpt4o.py └── funaudio_gpt4o.py ├── Funaudio_qwen ├── funaudio_cosyvoice.py ├── qwen72b.py └── sensevoice.py ├── GLM-4-Voice └── infer.py ├── GPT-4o ├── batch_input │ └── tongue_twister_audios │ │ ├── audio_0.mp3 │ │ └── audio_1.mp3 ├── client_batch_processing.py ├── client_sample_custom.py ├── config.json ├── input │ ├── convert.py │ └── english1_c.wav ├── output │ └── english1_c │ │ ├── item_AHvtqJobit9DrjBbYsRpO.audio_transcript.txt │ │ └── item_AHvtqJobit9DrjBbYsRpO.wav ├── prompt_audio_test.zip ├── rtclient │ ├── __init__.py │ ├── defaults.py │ ├── models.py │ └── util │ │ ├── message_queue.py │ │ ├── message_queue_test.py │ │ ├── model_helpers.py │ │ └── model_helpers_test.py └── system_prompt.txt ├── LLaMA-omni ├── change_filename.py ├── run_arena.sh └── run_model.py ├── Mini-Omni └── inference_arena.py ├── README.md ├── README_zh.md ├── SpeechGPT └── infer.py └── openai_tool.py /CascadeModel/cosyvoise.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomIntelligence/S2S-Arena/HEAD/CascadeModel/cosyvoise.py -------------------------------------------------------------------------------- /CascadeModel/llms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomIntelligence/S2S-Arena/HEAD/CascadeModel/llms.py -------------------------------------------------------------------------------- /CascadeModel/whisper_asr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomIntelligence/S2S-Arena/HEAD/CascadeModel/whisper_asr.py -------------------------------------------------------------------------------- /Funaudio_gpt4o/cosyvoice_funaudio_gpt4o.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomIntelligence/S2S-Arena/HEAD/Funaudio_gpt4o/cosyvoice_funaudio_gpt4o.py -------------------------------------------------------------------------------- /Funaudio_gpt4o/funaudio_gpt4o.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomIntelligence/S2S-Arena/HEAD/Funaudio_gpt4o/funaudio_gpt4o.py -------------------------------------------------------------------------------- /Funaudio_qwen/funaudio_cosyvoice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomIntelligence/S2S-Arena/HEAD/Funaudio_qwen/funaudio_cosyvoice.py -------------------------------------------------------------------------------- /Funaudio_qwen/qwen72b.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomIntelligence/S2S-Arena/HEAD/Funaudio_qwen/qwen72b.py -------------------------------------------------------------------------------- /Funaudio_qwen/sensevoice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomIntelligence/S2S-Arena/HEAD/Funaudio_qwen/sensevoice.py -------------------------------------------------------------------------------- /GLM-4-Voice/infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomIntelligence/S2S-Arena/HEAD/GLM-4-Voice/infer.py -------------------------------------------------------------------------------- /GPT-4o/batch_input/tongue_twister_audios/audio_0.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomIntelligence/S2S-Arena/HEAD/GPT-4o/batch_input/tongue_twister_audios/audio_0.mp3 -------------------------------------------------------------------------------- /GPT-4o/batch_input/tongue_twister_audios/audio_1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomIntelligence/S2S-Arena/HEAD/GPT-4o/batch_input/tongue_twister_audios/audio_1.mp3 -------------------------------------------------------------------------------- /GPT-4o/client_batch_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomIntelligence/S2S-Arena/HEAD/GPT-4o/client_batch_processing.py -------------------------------------------------------------------------------- /GPT-4o/client_sample_custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomIntelligence/S2S-Arena/HEAD/GPT-4o/client_sample_custom.py -------------------------------------------------------------------------------- /GPT-4o/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomIntelligence/S2S-Arena/HEAD/GPT-4o/config.json -------------------------------------------------------------------------------- /GPT-4o/input/convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomIntelligence/S2S-Arena/HEAD/GPT-4o/input/convert.py -------------------------------------------------------------------------------- /GPT-4o/input/english1_c.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomIntelligence/S2S-Arena/HEAD/GPT-4o/input/english1_c.wav -------------------------------------------------------------------------------- /GPT-4o/output/english1_c/item_AHvtqJobit9DrjBbYsRpO.audio_transcript.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomIntelligence/S2S-Arena/HEAD/GPT-4o/output/english1_c/item_AHvtqJobit9DrjBbYsRpO.audio_transcript.txt -------------------------------------------------------------------------------- /GPT-4o/output/english1_c/item_AHvtqJobit9DrjBbYsRpO.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomIntelligence/S2S-Arena/HEAD/GPT-4o/output/english1_c/item_AHvtqJobit9DrjBbYsRpO.wav -------------------------------------------------------------------------------- /GPT-4o/prompt_audio_test.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomIntelligence/S2S-Arena/HEAD/GPT-4o/prompt_audio_test.zip -------------------------------------------------------------------------------- /GPT-4o/rtclient/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomIntelligence/S2S-Arena/HEAD/GPT-4o/rtclient/__init__.py -------------------------------------------------------------------------------- /GPT-4o/rtclient/defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomIntelligence/S2S-Arena/HEAD/GPT-4o/rtclient/defaults.py -------------------------------------------------------------------------------- /GPT-4o/rtclient/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomIntelligence/S2S-Arena/HEAD/GPT-4o/rtclient/models.py -------------------------------------------------------------------------------- /GPT-4o/rtclient/util/message_queue.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomIntelligence/S2S-Arena/HEAD/GPT-4o/rtclient/util/message_queue.py -------------------------------------------------------------------------------- /GPT-4o/rtclient/util/message_queue_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomIntelligence/S2S-Arena/HEAD/GPT-4o/rtclient/util/message_queue_test.py -------------------------------------------------------------------------------- /GPT-4o/rtclient/util/model_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomIntelligence/S2S-Arena/HEAD/GPT-4o/rtclient/util/model_helpers.py -------------------------------------------------------------------------------- /GPT-4o/rtclient/util/model_helpers_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomIntelligence/S2S-Arena/HEAD/GPT-4o/rtclient/util/model_helpers_test.py -------------------------------------------------------------------------------- /GPT-4o/system_prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomIntelligence/S2S-Arena/HEAD/GPT-4o/system_prompt.txt -------------------------------------------------------------------------------- /LLaMA-omni/change_filename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomIntelligence/S2S-Arena/HEAD/LLaMA-omni/change_filename.py -------------------------------------------------------------------------------- /LLaMA-omni/run_arena.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomIntelligence/S2S-Arena/HEAD/LLaMA-omni/run_arena.sh -------------------------------------------------------------------------------- /LLaMA-omni/run_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomIntelligence/S2S-Arena/HEAD/LLaMA-omni/run_model.py -------------------------------------------------------------------------------- /Mini-Omni/inference_arena.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomIntelligence/S2S-Arena/HEAD/Mini-Omni/inference_arena.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomIntelligence/S2S-Arena/HEAD/README.md -------------------------------------------------------------------------------- /README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomIntelligence/S2S-Arena/HEAD/README_zh.md -------------------------------------------------------------------------------- /SpeechGPT/infer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomIntelligence/S2S-Arena/HEAD/SpeechGPT/infer.py -------------------------------------------------------------------------------- /openai_tool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FreedomIntelligence/S2S-Arena/HEAD/openai_tool.py --------------------------------------------------------------------------------