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 7d99aca759
commit ec2a24fedf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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 ];