refactor: 重命名 backend-single 目录为 server

This commit is contained in:
2026-06-27 17:23:53 +08:00
parent 8daf51301a
commit 0d77d76858
464 changed files with 0 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
# 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.