2023-12-29 14:42:26 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
newScope,
|
2024-09-02 11:21:01 +00:00
|
|
|
python3,
|
2023-12-29 14:42:26 +00:00
|
|
|
llamaVersion ? "0.0.0",
|
|
|
|
}:
|
|
|
|
|
2024-09-02 11:21:01 +00:00
|
|
|
let
|
|
|
|
pythonPackages = python3.pkgs;
|
|
|
|
buildPythonPackage = pythonPackages.buildPythonPackage;
|
|
|
|
numpy = pythonPackages.numpy;
|
|
|
|
tqdm = pythonPackages.tqdm;
|
|
|
|
sentencepiece = pythonPackages.sentencepiece;
|
|
|
|
pyyaml = pythonPackages.pyyaml;
|
|
|
|
poetry-core = pythonPackages.poetry-core;
|
|
|
|
pytestCheckHook = pythonPackages.pytestCheckHook;
|
|
|
|
in
|
|
|
|
|
2024-01-21 03:15:13 +00:00
|
|
|
# We're using `makeScope` instead of just writing out an attrset
|
|
|
|
# because it allows users to apply overlays later using `overrideScope'`.
|
|
|
|
# Cf. https://noogle.dev/f/lib/makeScope
|
|
|
|
|
2024-09-02 11:21:01 +00:00
|
|
|
lib.makeScope newScope (self: {
|
|
|
|
inherit llamaVersion;
|
|
|
|
gguf-py = self.callPackage ./package-gguf-py.nix {
|
|
|
|
inherit
|
|
|
|
buildPythonPackage
|
|
|
|
numpy
|
|
|
|
tqdm
|
|
|
|
sentencepiece
|
|
|
|
poetry-core
|
|
|
|
pyyaml
|
|
|
|
pytestCheckHook
|
|
|
|
;
|
|
|
|
};
|
|
|
|
python-scripts = self.callPackage ./python-scripts.nix { inherit buildPythonPackage poetry-core; };
|
|
|
|
llama-cpp = self.callPackage ./package.nix { };
|
|
|
|
docker = self.callPackage ./docker.nix { };
|
|
|
|
docker-min = self.callPackage ./docker.nix { interactive = false; };
|
|
|
|
sif = self.callPackage ./sif.nix { };
|
|
|
|
})
|