Skip to content

Commit a686dc3

Browse files
Merge remote-tracking branch 'origin/main'
2 parents a8b30f4 + ada1b52 commit a686dc3

File tree

2 files changed

+44
-4
lines changed

2 files changed

+44
-4
lines changed

.gitignore

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,6 @@ bower_components/
5858
.floo
5959
.flooignore
6060

61-
#config file
62-
librechat.yaml
63-
librechat.yml
64-
6561
# Environment
6662
.npmrc
6763
.env*

librechat.yaml

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
# For more information, see the Configuration Guide:
2+
# https://www.librechat.ai/docs/configuration/librechat_yaml
3+
4+
# Configuration version (required)
5+
version: 1.2.1
6+
7+
# Cache settings
8+
cache: true
9+
10+
# Custom interface configuration
11+
interface:
12+
endpointsMenu: true
13+
modelSelect: true
14+
parameters: true
15+
sidePanel: true
16+
presets: true
17+
prompts: true
18+
bookmarks: true
19+
multiConvo: false
20+
agents: true
21+
22+
# Definition of custom endpoints
23+
endpoints:
24+
custom:
25+
# Mistral
26+
- name: 'Mistral'
27+
apiKey: '${MISTRAL_API_KEY}'
28+
baseURL: 'https://api.mistral.ai/v1'
29+
models:
30+
default: [ 'mistral-large-2411', 'mistral-medium-2505', 'mistral-small-2503' ]
31+
titleConvo: true
32+
titleModel: 'mistral-tiny'
33+
modelDisplayLabel: 'Mistral'
34+
dropParams: [ 'stop', 'user', 'frequency_penalty', 'presence_penalty' ]
35+
# DeepSeek
36+
- name: 'DeepSeek'
37+
apiKey: '${DEEPSEEK_API_KEY}'
38+
baseURL: 'https://api.deepseek.com/v1'
39+
models:
40+
default: [ 'deepseek-chat', 'deepseek-reasoner' ]
41+
fetch: false
42+
titleConvo: true
43+
titleModel: 'deepseek-chat'
44+
modelDisplayLabel: 'DeepSeek'

0 commit comments

Comments
 (0)