Create librechat.yaml
Browse files- librechat.yaml +30 -0
librechat.yaml
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Configuration version (required)
|
2 |
+
version: 1.0.9
|
3 |
+
|
4 |
+
# Cache settings: Set to true to enable caching
|
5 |
+
cache: true
|
6 |
+
fileStrategy: "firebase"
|
7 |
+
|
8 |
+
# Definition of custom endpoints
|
9 |
+
endpoints:
|
10 |
+
custom:
|
11 |
+
|
12 |
+
# OpenRouter.ai Example
|
13 |
+
- name: "Reverse Proxy"
|
14 |
+
# For `apiKey` and `baseURL`, you can use environment variables that you define.
|
15 |
+
# recommended environment variables:
|
16 |
+
# Known issue: you should not use `OPENROUTER_API_KEY` as it will then override the `openAI` endpoint to use OpenRouter as well.
|
17 |
+
apiKey: "user_provided"
|
18 |
+
baseURL: "user_provided"
|
19 |
+
models:
|
20 |
+
default: ["gpt-4-vision-preview", "gpt-4", "gpt-4-1106-preview", "gpt-4-0125-preview", "gpt-3.5-turbo", "gpt-3.5-turbo-1106", "gpt-3.5-turbo-0613", "gpt-4-32k", "gpt-4-0314", "gpt-4-0613", "gpt-4-turbo-2024-04-09", "gpt-4-all"]
|
21 |
+
fetch: true
|
22 |
+
titleConvo: false
|
23 |
+
titleModel: "gpt-3.5-turbo"
|
24 |
+
summarize: false
|
25 |
+
summaryModel: "gpt-3.5-turbo"
|
26 |
+
forcePrompt: false
|
27 |
+
modelDisplayLabel: "AI"
|
28 |
+
|
29 |
+
# See the Custom Configuration Guide for more information:
|
30 |
+
# https://docs.librechat.ai/install/configuration/custom_config.html
|