Duplicated from jbilcke-hf/tikslop
3d4392e 8101ed0 3d4392e
1
2
3
4
5
6
7
8
export async function generateVideo(prompt: string): Promise<string> { const requestUri = `/api/resolvers/video?p=${encodeURIComponent(prompt)}` const res = await fetch(requestUri) const blob = await res.blob() const url = URL.createObjectURL(blob) return url }