feat: add anthropic api key

This commit is contained in:
Moritz Böhme 2025-02-23 18:26:27 +01:00
parent d1f8765dff
commit 6ebfb3d109
Signed by: moritz
GPG key ID: 970C6E89EB0547A9

View file

@ -11,7 +11,7 @@ let
wrapped = pkgs.writeShellApplication {
name = "aider";
text = ''
aider --openai-api-key "$(cat /run/agenix/openai)" --no-attribute-author --no-attribute-committer "$@"
aider --openai-api-key "$(cat /run/agenix/openai)" --anthropic-api-key "$(cat /run/agenix/anthropic)" --no-attribute-author --no-attribute-committer "$@"
'';
runtimeInputs = [ cfg.package ];
};