Spaces:
Runtime error
Runtime error
Update librechat.yaml
Browse files- librechat.yaml +57 -0
librechat.yaml
CHANGED
|
@@ -28,3 +28,60 @@ fileConfig:
|
|
| 28 |
disabled: false
|
| 29 |
fileSizeLimit: 50
|
| 30 |
totalSizeLimit: 150
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 28 |
disabled: false
|
| 29 |
fileSizeLimit: 50
|
| 30 |
totalSizeLimit: 150
|
| 31 |
+
|
| 32 |
+
# Definition of custom endpoints
|
| 33 |
+
endpoints:
|
| 34 |
+
# ----------------------------------------------------------------- #
|
| 35 |
+
# OpenAI Models
|
| 36 |
+
# ----------------------------------------------------------------- #
|
| 37 |
+
openAI:
|
| 38 |
+
userProvided: true
|
| 39 |
+
fetch: true
|
| 40 |
+
models:
|
| 41 |
+
default: ["gpt-5-mini"]
|
| 42 |
+
|
| 43 |
+
"gpt-5": { rag: true }
|
| 44 |
+
"gpt-5-mini": { rag: true }
|
| 45 |
+
"gpt-5-nano": { rag: true }
|
| 46 |
+
"gpt-4.1-2025-04-14": { rag: true }
|
| 47 |
+
"gpt-4.1-mini-2025-04-14": { rag: true }
|
| 48 |
+
"gpt-4.1-nano-2025-04-14": { rag: true }
|
| 49 |
+
"gpt-4o-2024-08-06": { rag: true }
|
| 50 |
+
"gpt-4o-mini-2024-07-18": { rag: true }
|
| 51 |
+
"o3-2025-04-16": { rag: true }
|
| 52 |
+
"o4-mini-2025-04-16": { rag: true }
|
| 53 |
+
"o4-mini-deep-research-2025-06-26": { rag: true }
|
| 54 |
+
"o3-mini-2025-01-31": { rag: true }
|
| 55 |
+
"o1-mini-2024-09-12": { rag: true }
|
| 56 |
+
|
| 57 |
+
# ----------------------------------------------------------------- #
|
| 58 |
+
# Anthropic Models
|
| 59 |
+
# ----------------------------------------------------------------- #
|
| 60 |
+
anthropic:
|
| 61 |
+
userProvided: true
|
| 62 |
+
fetch: true
|
| 63 |
+
headers:
|
| 64 |
+
anthropic-version: '2023-06-01'
|
| 65 |
+
models:
|
| 66 |
+
default: ["claude-sonnet-4-20250514"]
|
| 67 |
+
|
| 68 |
+
"claude-opus-4-1-20250805": { rag: true }
|
| 69 |
+
"claude-sonnet-4-20250514": { rag: true }
|
| 70 |
+
"claude-opus-4-20250514": { rag: true }
|
| 71 |
+
"claude-3-5-haiku-20241022": { rag: true }
|
| 72 |
+
|
| 73 |
+
# ----------------------------------------------------------------- #
|
| 74 |
+
# Google Models
|
| 75 |
+
# ----------------------------------------------------------------- #
|
| 76 |
+
google:
|
| 77 |
+
userProvided: true
|
| 78 |
+
fetch: true
|
| 79 |
+
models:
|
| 80 |
+
default: ["gemini-2.5-flash"]
|
| 81 |
+
|
| 82 |
+
"gemini-2.5-pro": { rag: true }
|
| 83 |
+
"gemini-2.5-flash": { rag: true }
|
| 84 |
+
"gemini-2.5-flash-lite": { rag: true }
|
| 85 |
+
|
| 86 |
+
# See the Custom Configuration Guide for more information:
|
| 87 |
+
# https://docs.librechat.ai/install/configuration/custom_config.html
|