ai-tube / src /app /config.ts
jbilcke-hf's picture
jbilcke-hf HF staff
just a lil bit of plumbing
1185ec1
raw history blame
No virus
481 Bytes
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"