Files
ai-video-fullstack/.claude/launch.json
Xin Wang e25dfd4003 Add support for Xfyun ASR and TTS services in the backend
- Introduce new Xfyun ASR and TTS services, enabling integration with iFlytek's voice recognition and synthesis capabilities.
- Update AssistantConfig model to include interface types for STT and TTS.
- Enhance credential testing to validate Xfyun credentials.
- Modify service factory to create Xfyun services based on configuration.
- Update README with new configuration details for Xfyun integration.
- Add new frontend components for visualizing audio streams and managing user interactions.
2026-06-11 10:51:08 +08:00

29 lines
613 B
JSON

{
"version": "0.0.1",
"configurations": [
{
"name": "ai-video-admin",
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "dev", "--", "-p", "3001"],
"cwd": "frontend",
"port": 3001,
"autoPort": false
},
{
"name": "ai-video-admin-3000",
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "dev"],
"cwd": "frontend",
"port": 3000,
"autoPort": false
},
{
"name": "ui-docker",
"runtimeExecutable": "docker",
"runtimeArgs": ["compose", "up", "ui"],
"port": 3030,
"autoPort": false
}
]
}