#!/bin/bash echo "🎙️ Avvio della Pipeline Audio Realtime (Porta 12345)..." echo "💡 Premi Ctrl+C in questo terminale per fermarla." echo "----------------------------------------------------" PYTHONPATH=src ./venv/bin/python src/speech_to_speech/s2s_pipeline.py \ --mode realtime \ --ws_host 0.0.0.0 \ --ws_port 12345 \ --llm_backend chat-completions \ --qwen3_tts_backend torch \ --model_name meta/llama-3.1-8b-instruct \ --responses_api_base_url http://127.0.0.1:8000/v1 \ --responses_api_api_key "EMPTY" \ --qwen3_tts_model_name "Qwen/Qwen3-TTS-12Hz-1.7B-Base" \ --qwen3_tts_ref_audio "female_short.wav" \ --qwen3_tts_ref_text "Chile tiene uno de los acentos más reconocibles del mundo hispano y los generadores de español genérico no logran capturarlo."