mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-09-21 21:50:49 +02:00
🧾 docs: Update Example librechat.yaml
* docs: Add mcpServers, agents and actions to the config
This commit is contained in:
parent
65b2d647a1
commit
28966e3ddc
1 changed files with 49 additions and 2 deletions
|
@ -2,7 +2,7 @@
|
|||
# https://www.librechat.ai/docs/configuration/librechat_yaml
|
||||
|
||||
# Configuration version (required)
|
||||
version: 1.1.5
|
||||
version: 1.2.0
|
||||
|
||||
# Cache settings: Set to true to enable caching
|
||||
cache: true
|
||||
|
@ -56,7 +56,17 @@ interface:
|
|||
If you have any questions about these Terms, please contact us at contact@librechat.ai.
|
||||
|
||||
By using the Website, you acknowledge that you have read these Terms of Service and agree to be bound by them.
|
||||
|
||||
|
||||
endpointsMenu: true
|
||||
modelSelect: false
|
||||
parameters: true
|
||||
sidePanel: true
|
||||
presets: false
|
||||
prompts: true
|
||||
bookmarks: true
|
||||
multiConvo: true
|
||||
agents: true
|
||||
|
||||
# Example Registration Object Structure (optional)
|
||||
registration:
|
||||
socialLogins: ['github', 'google', 'discord', 'openid', 'facebook']
|
||||
|
@ -90,6 +100,39 @@ registration:
|
|||
# userMax: 50
|
||||
# userWindowInMinutes: 60 # Rate limit window for conversation imports per user
|
||||
|
||||
# Example Actions Object Structure
|
||||
actions:
|
||||
allowedDomains:
|
||||
- "swapi.dev"
|
||||
- "librechat.ai"
|
||||
- "google.com"
|
||||
|
||||
# Example MCP Servers Object Structure
|
||||
mcpServers:
|
||||
everything:
|
||||
# type: sse # type can optionally be omitted
|
||||
url: http://localhost:3001/sse
|
||||
puppeteer:
|
||||
type: stdio
|
||||
command: npx
|
||||
args:
|
||||
- -y
|
||||
- "@modelcontextprotocol/server-puppeteer"
|
||||
filesystem:
|
||||
# type: stdio
|
||||
command: npx
|
||||
args:
|
||||
- -y
|
||||
- "@modelcontextprotocol/server-filesystem"
|
||||
- /home/user/LibreChat/
|
||||
iconPath: /home/user/LibreChat/client/public/assets/logo.svg
|
||||
mcp-obsidian:
|
||||
command: npx
|
||||
args:
|
||||
- -y
|
||||
- "mcp-obsidian"
|
||||
- /path/to/obsidian/vault
|
||||
|
||||
# Definition of custom endpoints
|
||||
endpoints:
|
||||
# assistants:
|
||||
|
@ -105,6 +148,10 @@ endpoints:
|
|||
# retrievalModels: ["gpt-4-turbo-preview"]
|
||||
# # (optional) Assistant Capabilities available to all users. Omit the ones you wish to exclude. Defaults to list below.
|
||||
# capabilities: ["code_interpreter", "retrieval", "actions", "tools", "image_vision"]
|
||||
# agents:
|
||||
# disableBuilder: false
|
||||
# (optional) Agent Capabilities available to all users. Omit the ones you wish to exclude. Defaults to list below.
|
||||
# capabilities: ["execute_code", "file_search", "actions", "tools"]
|
||||
custom:
|
||||
# Groq Example
|
||||
- name: 'groq'
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue