Fuegovic commited on
Commit
e7255a6
1 Parent(s): 30581de

Create librechat.yaml

Browse files
Files changed (1) hide show
  1. librechat.yaml +94 -0
librechat.yaml ADDED
@@ -0,0 +1,94 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Configuration version (required)
2
+ version: 1.0.0
3
+
4
+ # Cache settings: Set to true to enable caching
5
+ cache: true
6
+
7
+ # Definition of custom endpoints
8
+ endpoints:
9
+ custom:
10
+ # Mistral AI API
11
+ - name: "Mistral" # Unique name for the endpoint
12
+ # For `apiKey` and `baseURL`, you can use environment variables that you define.
13
+ # recommended environment variables:
14
+ apiKey: "user_provided"
15
+ baseURL: "https://api.mistral.ai/v1"
16
+
17
+ # Models configuration
18
+ models:
19
+ # List of default models to use. At least one value is required.
20
+ default: ["mistral-tiny", "mistral-small", "mistral-medium"]
21
+ # Fetch option: Set to true to fetch models from API.
22
+ fetch: true # Defaults to false.
23
+
24
+ # Optional configurations
25
+
26
+ # Title Conversation setting
27
+ titleConvo: true # Set to true to enable title conversation
28
+
29
+ # Title Method: Choose between "completion" or "functions".
30
+ titleMethod: "completion" # Defaults to "completion" if omitted.
31
+
32
+ # Title Model: Specify the model to use for titles.
33
+ titleModel: "mistral-tiny" # Defaults to "gpt-3.5-turbo" if omitted.
34
+
35
+ # Summarize setting: Set to true to enable summarization.
36
+ summarize: false
37
+
38
+ # Summary Model: Specify the model to use if summarization is enabled.
39
+ summaryModel: "mistral-tiny" # Defaults to "gpt-3.5-turbo" if omitted.
40
+
41
+ # Force Prompt setting: If true, sends a `prompt` parameter instead of `messages`.
42
+ forcePrompt: false
43
+
44
+ # The label displayed for the AI model in messages.
45
+ modelDisplayLabel: "Mistral" # Default is "AI" when not set.
46
+
47
+ # Add additional parameters to the request. Default params will be overwritten.
48
+ addParams:
49
+ safe_mode: true # This field is specific to Mistral AI: https://docs.mistral.ai/api/
50
+
51
+ # Drop Default params parameters from the request. See default params in guide linked below.
52
+ dropParams: ["stop", "temperature", "top_p"]
53
+ # - stop # dropped since it's not recognized by Mistral AI API
54
+ # `temperature` and `top_p` are removed to allow Mistral AI API defaults to be used:
55
+ # - temperature
56
+ # - top_p
57
+
58
+ # OpenRouter.ai Example
59
+ - name: "OpenRouter"
60
+ # For `apiKey` and `baseURL`, you can use environment variables that you define.
61
+ # recommended environment variables:
62
+ # Known issue: you should not use `OPENROUTER_API_KEY` as it will then override the `openAI` endpoint to use OpenRouter as well.
63
+ apiKey: "user_provided"
64
+ baseURL: "https://openrouter.ai/api/v1"
65
+ models:
66
+ default: ["gpt-3.5-turbo"]
67
+ fetch: true
68
+ titleConvo: true
69
+ titleModel: "gpt-3.5-turbo"
70
+ summarize: false
71
+ summaryModel: "gpt-3.5-turbo"
72
+ forcePrompt: false
73
+ modelDisplayLabel: "OpenRouter"
74
+
75
+ # OpenRouter.ai Example
76
+ - name: "NagaAI"
77
+ # For `apiKey` and `baseURL`, you can use environment variables that you define.
78
+ # recommended environment variables:
79
+ # Known issue: you should not use `OPENROUTER_API_KEY` as it will then override the `openAI` endpoint to use OpenRouter as well.
80
+ apiKey: "user_provided"
81
+ baseURL: "https://api.naga.ac/v1"
82
+ models:
83
+ default: ["claude-2", "claude-instant", "code-llama-34b", "falcon-180b-chat", "gemini-pro", "gemini-pro-vision", "gpt-3.5-turbo", "gpt-3.5-turbo-0613", "gpt-3.5-turbo-1106", "gpt-4", "gpt-4-0613", "gpt-4-1106-preview", "gpt-4-vision-preview", "llama-2-13b-chat", "llama-2-70b-chat", "llama-2-7b-chat", "mistral-7b", "mixtral-8x7b"]
84
+ fetch: true
85
+ titleConvo: true
86
+ titleModel: "gpt-3.5-turbo"
87
+ summarize: false
88
+ summaryModel: "gpt-3.5-turbo"
89
+ forcePrompt: false
90
+ modelDisplayLabel: "NagaAI"
91
+ iconURL: "https://cdn.discordapp.com/icons/1145994888006086696/492519a404ff553737f859e2e1861992.webp"
92
+
93
+ # See the Custom Configuration Guide for more information:
94
+ # https://docs.librechat.ai/install/configuration/custom_config.html