Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 447 Bytes
ec194c9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
// we don't use replicas yet, because it ain't easy to get their hostname
const instances: string[] = [
`${process.env.VC_ZEROSCOPE_SPACE_API_URL_1 || ""}`,
].filter(instance => instance?.length > 0)
const secretToken = `${process.env.VC_MICROSERVICE_SECRET_TOKEN || ""}`
export const generateVideo = async (prompt: string, options?: {
seed: number;
nbFrames: number;
nbSteps: number;
}) => {
throw new Error("Not implemented yet")
}
|