# Configuration version (required) version: 1.2.8 # Cache settings: Set to true to enable caching cache: true fileConfig: endpoints: # OpenAI (gpt-4o, gpt-4-turbo 등)를 위한 설정 openAI: fileLimit: 10 fileSizeLimit: 25 totalSizeLimit: 100 supportedMimeTypes: - ".*" # Anthropic (Claude 3 Opus, Sonnet 등)을 위한 설정 anthropic: fileLimit: 10 fileSizeLimit: 25 # 단위: MB totalSizeLimit: 100 supportedMimeTypes: - ".*" # 정규식: 모든 파일 형식 허용 # Google (Gemini Pro 등)을 위한 설정 google: fileLimit: 10 fileSizeLimit: 25 totalSizeLimit: 100 supportedMimeTypes: - ".*" # 정규식: 모든 파일 형식 허용 # 위에서 지정되지 않은 모든 엔드포인트에 대한 기본 설정 default: fileLimit: 5 fileSizeLimit: 20 totalSizeLimit: 50 supportedMimeTypes: - ".*" # Definition of custom endpoints endpoints: openAI: userProvided: true fetch: true tools: ["GoogleSearch"] models: default: ["gpt-5-mini"] # 반드시 아래와 같이 단순 문자열 리스트(Array) 형태여야 합니다. fetch: - "gpt-5" - "gpt-5-chat-latest" - "gpt-5-mini" - "gpt-5-nano" - "o3" - "o3-pro" - "o3-mini" - "o3-deep-research" - "o4-mini" - "o4-mini-deep-research" - "gpt-5-codex" - "codex-mini-latest" anthropic: userProvided: true fetch: true tools: ["GoogleSearch"] headers: anthropic-version: '2023-06-01' models: default: ["claude-opus-4-5-20251101"] fetch: - "claude-sonnet-4-5-20250929" - "claude-opus-4-5-20251101" - "claude-haiku-4-5-20251001" google: userProvided: true fetch: true web_search: true tools: ["GoogleSearch"] models: default: ["gemini-2.5-flash"] fetch: - "gemini-2.5-pro" - "gemini-2.5-flash" - "gemini-2.5-flash-lite" # See the Custom Configuration Guide for more information: # https://docs.librechat.ai/install/configuration/custom_config.html