feat(librechat): provision apollo

This commit is contained in:
Mohammad Rafiq 2025-06-07 14:31:40 +08:00
parent 91902fa4df
commit 3aef240f5d
No known key found for this signature in database
4 changed files with 25 additions and 22 deletions

View file

@ -25,40 +25,41 @@ in
env = {
HOST = "0.0.0.0";
ALLOW_REGISTRATION = "true";
MONGO_URI = "mongodb://apollo:27017";
NO_INDEX = "true";
MONGO_URI = "mongodb://apollo:27017/LibreChat";
DOMAIN_CLIENT = "https://chat.bwfiq.com";
DOMAIN_SERVER = "https://chat.bwfiq.com";
ENDPOINTS = "anthropic,agents,google";
};
credentials = {
CREDS_KEY = config.sops.secrets."librechat/creds_key".path;
CREDS_IV = config.sops.secrets."librechat/creds_iv".path;
JWT_SECRET = config.sops.secrets."librechat/jwt_secret".path;
JWT_REFRESH_SECRET = config.sops.secrets."librechat/jwt_refresh_secret".path;
OPENROUTER_KEY = config.sops.secrets."keys/openrouter".path;
GOOGLE_KEY = config.sops.secrets."keys/gemini".path;
};
settings = {
version = "1.0.8";
version = "1.1.4";
cache = true;
endpoints.custom = [
{
name = "OpenRouter";
apiKey = "\${OPENROUTER_KEY}";
baseURL = "https://openrouter.ai/api/v1";
models.default = [ "meta-llama/llama-3-70b-instruct" ];
models.fetch = true;
titleConvo = true;
titleModel = "current_model";
modelDisplayLabel = "OpenRouter";
}
];
interface = {
privacyPolicy = {
externalUrl = "https://librechat.ai/privacy-policy";
openNewTab = true;
};
};
endpoints = {
custom = [
{
name = "OpenRouter";
apiKey = "\${OPENROUTER_KEY}";
baseURL = "https://openrouter.ai/api/v1";
models = {
default = [ "meta-llama/llama-3-70b-instruct" ];
fetch = true;
};
titleConvo = true;
titleModule = "meta-llama/llama-3-70b-instruct";
dropParams = [ "stop" ];
modelDisplayLabel = "OpenRouter";
}
];
};
};
};
};