Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
File size: 394 Bytes
e864e26 0f35d4c f27679f d160b97 0f35d4c f70dd7e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
import { VideoGenerationModel } from "@/types/general"
export const showBetaFeatures = `${
process.env.NEXT_PUBLIC_SHOW_BETA_FEATURES || ""
}`.trim().toLowerCase() === "true"
export const defaultVideoModel: VideoGenerationModel = "SVD"
export const defaultVoice = "Julian"
export const developerMode = `${
process.env.NEXT_PUBLIC_DEVELOPER_MODE || ""
}`.trim().toLowerCase() === "true"
|