# LiveKit Voice AI - 运行状态 ✅

## 服务状态

| 服务 | 状态 | 端口 |
|------|------|------|
| LiveKit Server | ✅ 运行中 | 7880 |
| Agent Worker | ✅ 已连接 | - |
| FunASR STT | ✅ 运行中 | 8080 |
| Expo Metro | ✅ 运行中 | 8081 |

## 📱 测试方法

### 1. 打开浏览器访问
```
http://localhost:8081
```

### 2. Expo Go 扫码
在终端运行 `npx expo start` 后扫描二维码

### 3. Token 配置
```javascript
// react-native/App.js 已配置:
const LIVEKIT_URL = 'ws://192.168.31.229:7880';
const TOKEN = 'eyJhbG...gu-A';
```

## 🔧 命令

```bash
# 启动所有服务
docker start livekit-server
source ~/s2s-env/bin/activate && python3 run_worker.py
cd LiveKitVoiceTest && npx expo start
```

## 📁 文件位置

- Agent Worker: `run_worker.py`
- React Native: `react-native/App.js`
- Expo 项目: `LiveKitVoiceTest/`
