Files
ai-video-fullstack/.claude/launch.json
Xin Wang 2c2af1f2cd Enhance voice interaction and transcript handling in the assistant
- Add a new Docker configuration for the UI in launch.json to facilitate development.
- Refactor pipeline.py to integrate a TranscriptProcessor for managing user and assistant transcripts, including event handlers for real-time updates and message handling.
- Update useVoicePreview.ts to establish a data channel for sending and receiving text messages, improving interaction flow.
- Modify AssistantPage.tsx to support displaying chat messages and sending user input, enhancing the user experience during voice interactions.
- Revise DebugTranscriptPanel to dynamically render chat messages with timestamps, improving the visual representation of conversation history.
2026-06-10 15:11:34 +08:00

21 lines
423 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": "ui-docker",
"runtimeExecutable": "docker",
"runtimeArgs": ["compose", "up", "ui"],
"port": 3030,
"autoPort": false
}
]
}