File size: 358 Bytes
a296341
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
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,
})