auto-save 2026-05-14 10:20 (~7)

This commit is contained in:
2026-05-14 10:20:16 +08:00
parent ee32d83b6c
commit be1ae80750
7 changed files with 347 additions and 57 deletions

View File

@@ -296,6 +296,21 @@ export interface TranscriptSegment {
zh: string
}
export interface AudioScript {
status: "idle" | "rewriting" | "completed" | "failed"
source_text: string
source_zh: string
rewritten_text: string
product_brief: string
rewrite_model: string
voice_provider: string
voice_model: string
voice_id: string
voice_url: string
error: string
created_at: number
}
export interface StoryboardImage {
ref_id: string
kind: "keyframe" | "cutout" | "asset"
@@ -318,6 +333,7 @@ export interface Job {
height?: number
frames: KeyFrame[]
transcript: TranscriptSegment[]
audio_script?: AudioScript
storyboard_images?: StoryboardImage[]
generated_videos?: GeneratedVideo[]
error?: string
@@ -331,6 +347,10 @@ export interface BackendHealth {
asr?: string
translate?: string
rewrite?: string
audio_rewrite?: string
minimax_tts?: string
minimax_voice?: string
minimax_configured?: boolean
video?: string
video_aliases?: Record<string, string>
video_base_url?: string