File size: 407 Bytes
7cbe545 e742f81 7cbe545 | 1 2 3 4 5 6 7 8 9 10 11 12 | #!/usr/bin/env bash
set -euo pipefail
echo "=== Inflect-Micro-v2 TTS Setup (AX650) ==="
echo "Installing dependencies..."
pip install -q numpy onnxruntime soundfile unidecode inflect num2words espeakng-loader fastapi uvicorn
echo "Installing pyaxengine..."
pip install "pyaxengine @ git+https://github.com/AXERA-TECH/pyaxengine.git"
echo ""
echo "✅ Setup complete. Run: bash run.sh 'Hello!' output.wav"
|