ai-comic-factory / src /lib /getDefaultDynamicConfig.ts
jbilcke-hf's picture
jbilcke-hf HF staff
working to fix the config
a296341
raw
history blame
No virus
358 Bytes
import { DynamicConfig } from "@/types"
export const getDefaultDynamicConfig = (): DynamicConfig => ({
maxNbPages: 1,
nbPanelsPerPage: 4,
nbTotalPanelsToGenerate: 4,
oauthClientId: "",
oauthRedirectUrl: "http://localhost:3000",
oauthScopes: "openid profile inference-api",
enableHuggingFaceOAuth: false,
enableHuggingFaceOAuthWall: false,
})