]> git.djapps.eu Git - pkg/ggml/sources/llama.cpp/commitdiff
flake : add train-text-from-scratch to flake.nix (#3042)
authortakov751 <redacted>
Fri, 8 Sep 2023 16:06:26 +0000 (17:06 +0100)
committerGitHub <redacted>
Fri, 8 Sep 2023 16:06:26 +0000 (19:06 +0300)
flake.nix

index 02095411e026a5a85fa96595eeb6428f3ba1adec..1f69a4d5450c3d3fc6de7086ee5fd4a45d809538 100644 (file)
--- a/flake.nix
+++ b/flake.nix
           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 ];