VideoChain-API / src /utils /sortPendingVideosByLeastCompletedFirst.mts
jbilcke-hf's picture
jbilcke-hf HF staff
add "movie director assistant" LLM step
e4e0e54
raw
history blame
215 Bytes
import { Video } from "../types.mts"
export function sortPendingVideosByLeastCompletedFirst(videos: Video[]): Video[] {
videos.sort((a: Video, b: Video) => a.progressPercent - b.progressPercent)
return videos
}