feat: 语音交互网页初始版本 - 前端+后端

This commit is contained in:
2026-04-21 18:19:04 +08:00
commit b3cfae14a9
6 changed files with 850 additions and 0 deletions

14
start.sh Executable file
View File

@@ -0,0 +1,14 @@
#!/bin/bash
# 语音交互网页启动脚本
cd "$(dirname "$0")"
PORT=${PORT:-19019}
MODEL_URL=${MODEL_SERVICE_URL:-http://localhost:19018}
echo "Starting Voice Chat Web on port $PORT..."
echo "Model service: $MODEL_URL"
export MODEL_SERVICE_URL=$MODEL_URL
python main.py