Przeglądaj źródła

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

takov751 2 lat temu
rodzic
commit
ec2a24fedf
1 zmienionych plików z 4 dodań i 0 usunięć
  1. 4 0
      flake.nix

+ 4 - 0
flake.nix

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