librechat: add openrouter api key
Some checks failed
Build hosts / build-hosts (pull_request) Failing after 6s
Flake check / flake-check (pull_request) Failing after 6s

This commit is contained in:
sid 2026-05-19 21:54:01 +02:00
parent 04e1748ef9
commit e693ba0340
2 changed files with 5 additions and 2 deletions

View file

@ -54,6 +54,7 @@ in
secrets."librechat/creds-key" = { };
secrets."librechat/creds-iv" = { };
secrets."librechat/meili-master-key" = { };
secrets."librechat/openrouter-key" = { };
templates.librechat-env-file.content = ''
JWT_SECRET=${config.sops.placeholder."librechat/jwt-secret"}
@ -61,6 +62,7 @@ in
CREDS_KEY=${config.sops.placeholder."librechat/creds-key"}
CREDS_IV=${config.sops.placeholder."librechat/creds-iv"}
MEILI_MASTER_KEY=${config.sops.placeholder."librechat/meili-master-key"}
OPENROUTER_KEY==${config.sops.placeholder}."librechat/openrouter-key"}
'';
};
}