flake : add train-text-from-scratch to flake.nix (#3042)

This commit is contained in:
takov751
2023-09-08 17:06:26 +01:00
committed by GitHub
parent 8db00f111b
commit 0741785341

View File

@@ -93,6 +93,10 @@
type = "app";
program = "${self.packages.${system}.default}/bin/quantize";
};
apps.train-text-from-scratch = {
type = "app";
program = "${self.packages.${system}.default}/bin/train-text-from-scratch";
};
apps.default = self.apps.${system}.llama;
devShells.default = pkgs.mkShell {
buildInputs = [ llama-python ];