18 lines
527 B
Markdown
18 lines
527 B
Markdown
# Emotion Museum ASR Service
|
|
|
|
Private speech-to-text service for the mini program voice input.
|
|
|
|
Install on `101.200.208.45`:
|
|
|
|
```bash
|
|
cd /data/programs/emotion-museum/asr-service
|
|
python3.11 -m venv .venv
|
|
. .venv/bin/activate
|
|
pip install -r requirements.txt
|
|
|
|
uvicorn app:app --host 127.0.0.1 --port 19120
|
|
curl http://127.0.0.1:19120/health
|
|
```
|
|
|
|
The service uses FunASR ONNX Runtime with a local Chinese Paraformer model on CPU and is intended to stay private on localhost. The Java backend exposes the authenticated public API.
|