llm.withPlugins was removed

This commit is contained in:
Daylin Morgan 2024-09-11 13:02:53 -05:00
parent ea8099e184
commit 6d2146a4f3
Signed by: daylin
GPG key ID: 950D13E9719334AD

View file

@ -10,15 +10,14 @@ let
inherit (pkgs) python3Packages; inherit (pkgs) python3Packages;
# llm-ollama = python3Packages.callPackage ./llm-plugins/llm-ollama { }; # llm-ollama = python3Packages.callPackage ./llm-plugins/llm-ollama { };
llm-claude3 = python3Packages.callPackage ./llm-plugins/llm-claude-3 { }; llm-claude3 = python3Packages.callPackage ./llm-plugins/llm-claude-3 { };
llm = (
pkgs.llm.withPlugins [
# llm-ollama
llm-claude3
]
);
in in
mkOizysModule config "llm" { mkOizysModule config "llm" {
# services.ollama = enabled; # services.ollama = enabled;
environment.systemPackages = [ llm ]; environment.systemPackages = with pkgs; [
(python3.withPackages (ps: [
ps.llm
llm-claude3
]))
];
} }