语音服务状态
GET /v1/voice/status:语音服务是否已配置。
GET /v1/voice/status
语音服务是否已配置:stt_configured(有可用的转录提供方)和 tts_configured(有可用的合成提供方)。tts_provider / stt_provider 表示在偏好与回退解析后的有效首选提供方。scenarios 分别返回输入框、免手动对话、文件和回复场景请求及实际解析的 Provider/模型、实时能力和传输方式。
| 方法 | GET |
| 路径 | /v1/voice/status |
| 认证 | 设置 GATEWAY_AUTH_TOKEN 时需要 Authorization: Bearer <token> |
| 类别 | voice |
响应体
{ "ok": true, "stt_configured": true, "tts_configured": true, "scenarios": { "composer": { "provider": "openai", "model": "gpt-live-transcribe", "supportsRealtime": true, "transport": "webrtc" } } }