From 9181e3bfa3af9c74554b2bd603dfe052811bcc17 Mon Sep 17 00:00:00 2001 From: Zuckerberg Date: Fri, 28 Mar 2025 19:38:41 -0700 Subject: [PATCH] Update librechat to v0.7.7 --- common/server/librechat.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/common/server/librechat.nix b/common/server/librechat.nix index b436c69..f98d9fa 100644 --- a/common/server/librechat.nix +++ b/common/server/librechat.nix @@ -21,11 +21,17 @@ in config = mkIf cfg.enable { virtualisation.oci-containers.containers = { librechat = { - image = "ghcr.io/danny-avila/librechat:v0.7.6"; + image = "ghcr.io/danny-avila/librechat:v0.7.7"; environment = { HOST = "0.0.0.0"; MONGO_URI = "mongodb://host.containers.internal:27017/LibreChat"; ENDPOINTS = "openAI,google,bingAI,gptPlugins"; + OPENAI_MODELS = lib.concatStringsSep "," [ + "gpt-4o-mini" + "o3-mini" + "gpt-4o" + "o1" + ]; REFRESH_TOKEN_EXPIRY = toString (1000 * 60 * 60 * 24 * 30); # 30 days }; environmentFiles = [