Update librechat.yaml
Browse files- librechat.yaml +36 -2
librechat.yaml
CHANGED
@@ -3,7 +3,8 @@ cache: true
|
|
3 |
|
4 |
endpoints:
|
5 |
custom:
|
6 |
-
|
|
|
7 |
apiKey: "${OPENAI_API_KEY}"
|
8 |
baseURL: "${OPENAI_REVERSE_PROXY}"
|
9 |
models:
|
@@ -38,4 +39,37 @@ endpoints:
|
|
38 |
fetch: true
|
39 |
titleConvo: true
|
40 |
modelDisplayLabel: "Gemini"
|
41 |
-
dropParams: ["stop", "user", "frequency_penalty", "presence_penalty"]
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3 |
|
4 |
endpoints:
|
5 |
custom:
|
6 |
+
|
7 |
+
- name: "openAI"
|
8 |
apiKey: "${OPENAI_API_KEY}"
|
9 |
baseURL: "${OPENAI_REVERSE_PROXY}"
|
10 |
models:
|
|
|
39 |
fetch: true
|
40 |
titleConvo: true
|
41 |
modelDisplayLabel: "Gemini"
|
42 |
+
dropParams: ["stop", "user", "frequency_penalty", "presence_penalty"]
|
43 |
+
|
44 |
+
- name: 'HuggingFace'
|
45 |
+
apiKey: '${HUGGINGFACE_TOKEN}'
|
46 |
+
baseURL: 'https://api-inference.huggingface.co/v1'
|
47 |
+
models:
|
48 |
+
default: [
|
49 |
+
"codellama/CodeLlama-34b-Instruct-hf",
|
50 |
+
"google/gemma-1.1-2b-it",
|
51 |
+
"google/gemma-1.1-7b-it",
|
52 |
+
"HuggingFaceH4/starchat2-15b-v0.1",
|
53 |
+
"HuggingFaceH4/zephyr-7b-beta",
|
54 |
+
"meta-llama/Meta-Llama-3-8B-Instruct",
|
55 |
+
"microsoft/Phi-3-mini-4k-instruct",
|
56 |
+
"mistralai/Mistral-7B-Instruct-v0.1",
|
57 |
+
"mistralai/Mistral-7B-Instruct-v0.2",
|
58 |
+
"mistralai/Mixtral-8x7B-Instruct-v0.1",
|
59 |
+
"NousResearch/Nous-Hermes-2-Mixtral-8x7B-DPO",
|
60 |
+
]
|
61 |
+
fetch: true
|
62 |
+
titleConvo: true
|
63 |
+
titleModel: "NousResearch/Nous-Hermes-2-Mixtral-8x7B-DPO"
|
64 |
+
dropParams: ["top_p"]
|
65 |
+
modelDisplayLabel: "HuggingFace"
|
66 |
+
|
67 |
+
- name: "cohere"
|
68 |
+
apiKey: "${COHERE_API_KEY}"
|
69 |
+
baseURL: "https://api.cohere.ai/v1"
|
70 |
+
models:
|
71 |
+
default: ["command-r","command-r-plus","command-light","command-light-nightly","command","command-nightly"]
|
72 |
+
fetch: false
|
73 |
+
modelDisplayLabel: "cohere"
|
74 |
+
titleModel: "command"
|
75 |
+
dropParams: ["stop", "user", "frequency_penalty", "presence_penalty", "temperature", "top_p"]
|