aboutsummaryrefslogtreecommitdiff
path: root/nix/users/fcuny/llm.nix
blob: 48604c3fb325da900e3833128d4ca7d23f25cd16 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ ... }:
{

  home.file.".config/prompts/pr-prompt.txt".text =
    builtins.readFile ../../../configs/prompts/pr-prompt.txt;

  home.file.".config/prompts/commit-system-prompt.txt".text =
    builtins.readFile ../../../configs/prompts/commit-system-prompt.txt;

  programs.fish = {
    shellAliases = {
      commit-msg = "git diff HEAD | llm -m claude-3.5-sonnet -s (cat ~/.config/prompts/commit-system-prompt.txt |psub)";
      pr-msg = "git diff HEAD | llm -m claude-3.5-sonnet -s (cat ~/.config/prompts/pr-prompt.txt |psub)";
    };
  };
}