From bb98e77be704584fb40b0400394b4c16ae75f8e2 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Tue, 25 Apr 2023 23:19:57 +0200 Subject: [PATCH] nix: use convert.py instead of legacy wrapper convert-pth-to-ggml.py (#981) --- flake.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index 5363052..2c9edbb 100644 --- a/flake.nix +++ b/flake.nix @@ -30,9 +30,9 @@ mv bin/* $out/bin/ mv $out/bin/main $out/bin/llama - echo "#!${llama-python}/bin/python" > $out/bin/convert-pth-to-ggml - cat ${./convert-pth-to-ggml.py} >> $out/bin/convert-pth-to-ggml - chmod +x $out/bin/convert-pth-to-ggml + echo "#!${llama-python}/bin/python" > $out/bin/convert.py + cat ${./convert.py} >> $out/bin/convert.py + chmod +x $out/bin/convert.py ''; meta.mainProgram = "llama"; };