M96820
feat: add ai-comic-factory
903fafb
raw
history blame
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,
})