mrbesher commited on
Commit
d85390e
1 Parent(s): 1bb6484

Update librechat.yaml

Browse files
Files changed (1) hide show
  1. librechat.yaml +30 -5
librechat.yaml CHANGED
@@ -14,16 +14,41 @@ endpoints:
14
  # supportedIds: ["asst_supportedAssistantId1", "asst_supportedAssistantId2"]
15
  # # excludedIds: ["asst_excludedAssistantId"]
16
  custom:
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
17
  # Mistral AI API
18
  - name: "Mistral"
19
  apiKey: "${MISTRAL_API_KEY}"
20
  baseURL: "https://api.mistral.ai/v1"
21
- models:
22
- default: ["mistral-tiny-latest", "mistral-small-latest", "mistral-medium-latest", "mistral-large-latest"]
23
- fetch: true
 
 
 
 
 
24
  titleConvo: true
 
25
  titleModel: "mistral-tiny"
 
 
 
26
  modelDisplayLabel: "Mistral"
27
- # Drop Default params parameters from the request. See default params in guide linked below.
28
- # NOTE: For Mistral, it is necessary to drop the following parameters or you will encounter a 422 Error:
29
  dropParams: ["stop", "user", "frequency_penalty", "presence_penalty"]
 
14
  # supportedIds: ["asst_supportedAssistantId1", "asst_supportedAssistantId2"]
15
  # # excludedIds: ["asst_excludedAssistantId"]
16
  custom:
17
+ #groq
18
+ - name: "groq"
19
+ apiKey: "${GROQ_API_KEY}"
20
+ baseURL: "https://api.groq.com/openai/v1/"
21
+ models:
22
+ default: [
23
+ "llama2-70b-4096",
24
+ "mixtral-8x7b-32768",
25
+ "gemma-7b-it"
26
+ ]
27
+ fetch: false
28
+ titleConvo: true
29
+ titleModel: "mixtral-8x7b-32768"
30
+ summarize: false
31
+ summaryModel: "mixtral-8x7b-32768"
32
+ forcePrompt: false
33
+ modelDisplayLabel: "groq"
34
+
35
  # Mistral AI API
36
  - name: "Mistral"
37
  apiKey: "${MISTRAL_API_KEY}"
38
  baseURL: "https://api.mistral.ai/v1"
39
+ models:
40
+ default: [
41
+ "mistral-tiny",
42
+ "mistral-small",
43
+ "mistral-medium",
44
+ "mistral-large-latest"
45
+ ]
46
+ fetch: false
47
  titleConvo: true
48
+ titleMethod: "completion"
49
  titleModel: "mistral-tiny"
50
+ summarize: false
51
+ summaryModel: "mistral-tiny"
52
+ forcePrompt: false
53
  modelDisplayLabel: "Mistral"
 
 
54
  dropParams: ["stop", "user", "frequency_penalty", "presence_penalty"]