Create librechat.yaml
Browse files- librechat.yaml +39 -0
librechat.yaml
ADDED
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
endpoints:
|
2 |
+
azureOpenAI:
|
3 |
+
# Endpoint-level configuration
|
4 |
+
titleModel: "llama-70b-chat"
|
5 |
+
plugins: true
|
6 |
+
assistants: true
|
7 |
+
groups:
|
8 |
+
# Group-level configuration
|
9 |
+
- group: "my-resource-westus"
|
10 |
+
apiKey: "${WESTUS_API_KEY}"
|
11 |
+
instanceName: "my-resource-westus"
|
12 |
+
version: "2024-03-01-preview"
|
13 |
+
# Model-level configuration
|
14 |
+
models:
|
15 |
+
gpt-4-vision-preview:
|
16 |
+
deploymentName: gpt-4-vision-preview
|
17 |
+
version: "2024-03-01-preview"
|
18 |
+
gpt-3.5-turbo:
|
19 |
+
deploymentName: gpt-35-turbo
|
20 |
+
gpt-4-1106-preview:
|
21 |
+
deploymentName: gpt-4-1106-preview
|
22 |
+
# Group-level configuration
|
23 |
+
- group: "mistral-inference"
|
24 |
+
apiKey: "${AZURE_MISTRAL_API_KEY}"
|
25 |
+
baseURL: "https://Mistral-large-vnpet-serverless.region.inference.ai.azure.com/v1/chat/completions"
|
26 |
+
serverless: true
|
27 |
+
# Model-level configuration
|
28 |
+
models:
|
29 |
+
mistral-large: true
|
30 |
+
# Group-level configuration
|
31 |
+
- group: "my-resource-sweden"
|
32 |
+
apiKey: "${SWEDEN_API_KEY}"
|
33 |
+
instanceName: "my-resource-sweden"
|
34 |
+
deploymentName: gpt-4-1106-preview
|
35 |
+
version: "2024-03-01-preview"
|
36 |
+
assistants: true
|
37 |
+
# Model-level configuration
|
38 |
+
models:
|
39 |
+
gpt-4-turbo: true
|