Create librechat.yaml
Browse files- librechat.yaml +32 -0
librechat.yaml
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
version: 1.2.2
|
2 |
+
cache: true
|
3 |
+
endpoints:
|
4 |
+
custom:
|
5 |
+
- name: "OpenRouter"
|
6 |
+
apiKey: "${OPENROUTER_KEY}"
|
7 |
+
baseURL: "https://openrouter.ai/api/v1"
|
8 |
+
models:
|
9 |
+
default: [
|
10 |
+
"qwen/qwq-32b",
|
11 |
+
"google/gemma-3-27b-it"
|
12 |
+
]
|
13 |
+
fetch: true
|
14 |
+
titleConvo: true
|
15 |
+
titleModel: "current_model"
|
16 |
+
summarize: false
|
17 |
+
summaryModel: "current_model"
|
18 |
+
forcePrompt: false
|
19 |
+
modelDisplayLabel: "OpenRouter"
|
20 |
+
#- name: "Ollama"
|
21 |
+
# apiKey: "ollama"
|
22 |
+
# baseURL: "http://host.docker.internal:11434/v1/"
|
23 |
+
# models:
|
24 |
+
# default: [
|
25 |
+
# "llama3:latest",
|
26 |
+
# "command-r",
|
27 |
+
# "mixtral",
|
28 |
+
# "phi3"
|
29 |
+
# ]
|
30 |
+
# fetch: true # fetching list of models is not supported
|
31 |
+
# titleConvo: true
|
32 |
+
# titleModel: "current_model"
|