media-server / src /types.mts
jbilcke-hf's picture
jbilcke-hf HF staff
add a system to recover from broken generation cycles
f7f7c46
raw
history blame
400 Bytes
export interface Shot {
shotId: string
index: number
lastGenerationAt: string
videoPrompt: string
audioPrompt: string
}
export interface Sequence {
sequenceId: string
lastGenerationAt: string
videoPrompt: string
audioPrompt: string
channel: string
tags: string[]
shots: Shot[]
}
export interface Database {
version: number
startAtShotId: string
sequences: Sequence[]
}