mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-12-22 14:20:44 -06:00
llm.withPlugins was removed
This commit is contained in:
parent
ea8099e184
commit
6d2146a4f3
1 changed files with 6 additions and 7 deletions
|
@ -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
|
||||||
|
]))
|
||||||
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue