Update librechat.yaml
Browse files- librechat.yaml +20 -21
librechat.yaml
CHANGED
@@ -1,10 +1,9 @@
|
|
1 |
cache: true
|
2 |
|
3 |
-
|
4 |
endpoints:
|
5 |
custom:
|
6 |
|
7 |
-
- name: "openAI"
|
8 |
apiKey: "${OPENAI_API_KEY}"
|
9 |
baseURL: "${OPENAI_REVERSE_PROXY}"
|
10 |
models:
|
@@ -12,12 +11,12 @@ endpoints:
|
|
12 |
fetch: true
|
13 |
titleConvo: true
|
14 |
titleModel: "gpt-4o-mini"
|
15 |
-
|
16 |
-
|
17 |
modelDisplayLabel: "ChatGPT"
|
18 |
dropParams: ["stop", "user", "frequency_penalty", "presence_penalty"]
|
19 |
|
20 |
-
- name: "assistants"
|
21 |
apiKey: "${ANTHROPIC_API_KEY}"
|
22 |
baseURL: "${ANTHROPIC_REVERSE_PROXY}"
|
23 |
models:
|
@@ -30,7 +29,7 @@ endpoints:
|
|
30 |
dropParams: ["stop", "user", "frequency_penalty", "presence_penalty"]
|
31 |
|
32 |
|
33 |
-
- name: "google"
|
34 |
apiKey: "${GOOGLE_KEY}"
|
35 |
baseURL: "${GOOGLE_REVERSE_PROXY}"
|
36 |
models:
|
@@ -41,10 +40,10 @@ endpoints:
|
|
41 |
modelDisplayLabel: "Gemini"
|
42 |
dropParams: ["stop", "user", "frequency_penalty", "presence_penalty"]
|
43 |
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
default: [
|
49 |
"codellama/CodeLlama-34b-Instruct-hf",
|
50 |
"google/gemma-1.1-2b-it",
|
@@ -59,17 +58,17 @@ endpoints:
|
|
59 |
"NousResearch/Nous-Hermes-2-Mixtral-8x7B-DPO",
|
60 |
]
|
61 |
fetch: true
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
|
67 |
-
- name: "cohere"
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
default: ["command-r","command-r-plus","command-light","command-light-nightly","command","command-nightly"]
|
72 |
fetch: false
|
73 |
-
|
74 |
-
|
75 |
-
|
|
|
1 |
cache: true
|
2 |
|
|
|
3 |
endpoints:
|
4 |
custom:
|
5 |
|
6 |
+
- name: "openAI"
|
7 |
apiKey: "${OPENAI_API_KEY}"
|
8 |
baseURL: "${OPENAI_REVERSE_PROXY}"
|
9 |
models:
|
|
|
11 |
fetch: true
|
12 |
titleConvo: true
|
13 |
titleModel: "gpt-4o-mini"
|
14 |
+
summarize: false
|
15 |
+
summaryModel: "gpt-4o-mini"
|
16 |
modelDisplayLabel: "ChatGPT"
|
17 |
dropParams: ["stop", "user", "frequency_penalty", "presence_penalty"]
|
18 |
|
19 |
+
- name: "assistants"
|
20 |
apiKey: "${ANTHROPIC_API_KEY}"
|
21 |
baseURL: "${ANTHROPIC_REVERSE_PROXY}"
|
22 |
models:
|
|
|
29 |
dropParams: ["stop", "user", "frequency_penalty", "presence_penalty"]
|
30 |
|
31 |
|
32 |
+
- name: "google"
|
33 |
apiKey: "${GOOGLE_KEY}"
|
34 |
baseURL: "${GOOGLE_REVERSE_PROXY}"
|
35 |
models:
|
|
|
40 |
modelDisplayLabel: "Gemini"
|
41 |
dropParams: ["stop", "user", "frequency_penalty", "presence_penalty"]
|
42 |
|
43 |
+
- name: 'HuggingFace'
|
44 |
+
apiKey: '${HUGGINGFACE_TOKEN}'
|
45 |
+
baseURL: 'https://api-inference.huggingface.co/v1'
|
46 |
+
models:
|
47 |
default: [
|
48 |
"codellama/CodeLlama-34b-Instruct-hf",
|
49 |
"google/gemma-1.1-2b-it",
|
|
|
58 |
"NousResearch/Nous-Hermes-2-Mixtral-8x7B-DPO",
|
59 |
]
|
60 |
fetch: true
|
61 |
+
titleConvo: true
|
62 |
+
titleModel: "NousResearch/Nous-Hermes-2-Mixtral-8x7B-DPO"
|
63 |
+
dropParams: ["top_p"]
|
64 |
+
modelDisplayLabel: "HuggingFace"
|
65 |
|
66 |
+
- name: "cohere"
|
67 |
+
apiKey: "${COHERE_API_KEY}"
|
68 |
+
baseURL: "https://api.cohere.ai/v1"
|
69 |
+
models:
|
70 |
default: ["command-r","command-r-plus","command-light","command-light-nightly","command","command-nightly"]
|
71 |
fetch: false
|
72 |
+
modelDisplayLabel: "cohere"
|
73 |
+
titleModel: "command"
|
74 |
+
dropParams: ["stop", "user", "frequency_penalty", "presence_penalty", "temperature", "top_p"]
|