feat: add automatic production start workflow

This commit is contained in:
2026-05-17 12:33:13 +08:00
parent 08f18373b9
commit b02bc3f583
7 changed files with 76 additions and 25 deletions

View File

@@ -405,6 +405,12 @@ export function AdRecreationBoard({
<div className="max-h-20 overflow-y-auto rounded-md border border-white/10 bg-black/35 p-2 text-[12px] leading-relaxed text-white/62">
{audioPreview(job)}
</div>
{(job?.audio_script?.speaker_profile || job?.audio_script?.rhythm_profile) && (
<div className="mt-2 grid gap-1 text-[11px] leading-relaxed text-white/42">
{job.audio_script.speaker_profile && <div>{job.audio_script.speaker_profile}</div>}
{job.audio_script.rhythm_profile && <div>{job.audio_script.rhythm_profile}</div>}
</div>
)}
</div>
<FrameExtractControls

View File

@@ -356,6 +356,8 @@ export interface AudioScript {
source_text: string
source_zh: string
rewritten_text: string
speaker_profile: string
rhythm_profile: string
product_brief: string
rewrite_model: string
voice_provider: string