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