Some checks are pending
CI / ruff (push) Waiting to run
CI / mypy (push) Waiting to run
CI / pytest (push) Waiting to run
CI / package (push) Waiting to run
CI / Install smoke (${{ matrix.label }}) (linux, ubuntu-latest) (push) Blocked by required conditions
CI / Install smoke (${{ matrix.label }}) (macos-arm64, macos-14) (push) Blocked by required conditions
20 lines
793 B
Bash
Executable File
20 lines
793 B
Bash
Executable File
#!/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."
|
|
|
|
|