move derivations to module

This commit is contained in:
Daylin Morgan 2024-08-08 14:20:37 -05:00
parent fc0f011be5
commit 433eeba01d
Signed by: daylin
GPG key ID: 950D13E9719334AD
3 changed files with 2 additions and 2 deletions

View file

@ -8,8 +8,8 @@
let
inherit (pkgs) python3Packages;
llm-ollama = python3Packages.callPackage ../../pkgs/llm-plugins/llm-ollama { };
llm-claude3 = python3Packages.callPackage ../../pkgs/llm-plugins/llm-claude-3 { };
llm-ollama = python3Packages.callPackage ./llm-plugins/llm-ollama { };
llm-claude3 = python3Packages.callPackage ./llm-plugins/llm-claude-3 { };
llm = (
pkgs.llm.withPlugins [
llm-ollama