# 🔧 LiveKit Explore 访问方式

## 问题原因
LiveKit Server 不内置 Web UI，`/explore` 路径返回 404 是正常的。
Explore/Dashboard 是独立的 Web 应用。

## ✅ 解决方案

### 方案一：使用 LiveKit Cloud Console（推荐）
访问: https://cloud.livekit.io
- 免费额度足够测试
- 无需部署额外服务
- 支持本地开发（localhost/内网 IP）

### 方案二：启动本地 Dashboard
```bash
# 方法 A: 使用 Docker（需要访问 Docker Hub）
docker run -d --name livekit-explorer \
  -p 8383:80 \
  -e LIVEKIT_URL=http://192.168.31.229:7880 \
  livekit/dashboard

# 访问: http://192.168.31.229:8383
```

### 方案三：直接使用 Token 连接（最快）
不需要 Explore UI，直接用 React Native App 测试：

```javascript
// MeetingApp.js
const SERVER_URL = 'ws://192.168.31.229:7880';
const TOKEN='eyJhbG...-J4s'; // 手机用户 Token
```

### 方案四：Web 控制台（如果可用）
访问 LiveKit 官方提供的测试页面：
- https://livekit.io/playground
- 输入服务器地址和 Token

## 📱 推荐测试流程

1. **获取 Token**
```bash
source ~/s2s-env/bin/activate
python3 /Users/leo/.hermes/workspace/livekit-agents/gen_token.py voice-ai-meeting phone-user
```

2. **在手机上打开浏览器**
访问: https://livekit.io/playground

3. **配置连接**
- Server URL: `ws://192.168.31.229:7880`
- Token: 从上面命令获取

4. **测试语音**
点击麦克风按钮说话，Agent 会回复

## 📋 当前服务状态

```
✅ LiveKit Server:   http://192.168.31.229:7880
✅ Agent Worker:     已注册 (PID 74404)
✅ FunASR STT:       http://192.168.31.229:8080
```
