mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-16 16:30:15 +01:00
🔖 chore: update groq models (#2031)
This commit is contained in:
parent
5d0d02f5f7
commit
db870e55c3
3 changed files with 26 additions and 5 deletions
|
|
@ -32,7 +32,8 @@ Some of the endpoints are marked as **Known,** which means they might have speci
|
||||||
models:
|
models:
|
||||||
default: [
|
default: [
|
||||||
"llama2-70b-4096",
|
"llama2-70b-4096",
|
||||||
"mixtral-8x7b-32768"
|
"mixtral-8x7b-32768",
|
||||||
|
"gemma-7b-it"
|
||||||
]
|
]
|
||||||
fetch: false
|
fetch: false
|
||||||
titleConvo: true
|
titleConvo: true
|
||||||
|
|
|
||||||
|
|
@ -563,6 +563,11 @@ endpoints:
|
||||||
- "Mistral"
|
- "Mistral"
|
||||||
- "OpenRouter"
|
- "OpenRouter"
|
||||||
- "Groq"
|
- "Groq"
|
||||||
|
- "Anyscale"
|
||||||
|
- "Fireworks"
|
||||||
|
- "Perplexity"
|
||||||
|
- "together.ai"
|
||||||
|
- "Ollama"
|
||||||
|
|
||||||
### **models**:
|
### **models**:
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,7 +2,7 @@
|
||||||
# https://docs.librechat.ai/install/configuration/custom_config.html
|
# https://docs.librechat.ai/install/configuration/custom_config.html
|
||||||
|
|
||||||
# Configuration version (required)
|
# Configuration version (required)
|
||||||
version: 1.0.3
|
version: 1.0.4
|
||||||
|
|
||||||
# Cache settings: Set to true to enable caching
|
# Cache settings: Set to true to enable caching
|
||||||
cache: true
|
cache: true
|
||||||
|
|
@ -48,7 +48,22 @@ endpoints:
|
||||||
# supportedIds: ["asst_supportedAssistantId1", "asst_supportedAssistantId2"]
|
# supportedIds: ["asst_supportedAssistantId1", "asst_supportedAssistantId2"]
|
||||||
# # excludedIds: ["asst_excludedAssistantId"]
|
# # excludedIds: ["asst_excludedAssistantId"]
|
||||||
custom:
|
custom:
|
||||||
# Mistral AI API
|
# Groq Example
|
||||||
|
- name: "groq"
|
||||||
|
apiKey: "${GROQ_API_KEY}"
|
||||||
|
baseURL: "https://api.groq.com/openai/v1/"
|
||||||
|
models:
|
||||||
|
default: [
|
||||||
|
"llama2-70b-4096",
|
||||||
|
"mixtral-8x7b-32768",
|
||||||
|
"gemma-7b-it"
|
||||||
|
]
|
||||||
|
fetch: false
|
||||||
|
titleConvo: true
|
||||||
|
titleModel: "mixtral-8x7b-32768"
|
||||||
|
modelDisplayLabel: "groq"
|
||||||
|
|
||||||
|
# Mistral AI Example
|
||||||
- name: "Mistral" # Unique name for the endpoint
|
- name: "Mistral" # Unique name for the endpoint
|
||||||
# For `apiKey` and `baseURL`, you can use environment variables that you define.
|
# For `apiKey` and `baseURL`, you can use environment variables that you define.
|
||||||
# recommended environment variables:
|
# recommended environment variables:
|
||||||
|
|
@ -92,8 +107,8 @@ endpoints:
|
||||||
# Drop Default params parameters from the request. See default params in guide linked below.
|
# Drop Default params parameters from the request. See default params in guide linked below.
|
||||||
# NOTE: For Mistral, it is necessary to drop the following parameters or you will encounter a 422 Error:
|
# NOTE: For Mistral, it is necessary to drop the following parameters or you will encounter a 422 Error:
|
||||||
dropParams: ["stop", "user", "frequency_penalty", "presence_penalty"]
|
dropParams: ["stop", "user", "frequency_penalty", "presence_penalty"]
|
||||||
|
|
||||||
# OpenRouter.ai Example
|
# OpenRouter Example
|
||||||
- name: "OpenRouter"
|
- name: "OpenRouter"
|
||||||
# For `apiKey` and `baseURL`, you can use environment variables that you define.
|
# For `apiKey` and `baseURL`, you can use environment variables that you define.
|
||||||
# recommended environment variables:
|
# recommended environment variables:
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue