From 2789ad939298168127716f5c00824067b045213c Mon Sep 17 00:00:00 2001 From: Galunid Date: Thu, 9 Nov 2023 04:37:44 +0100 Subject: [PATCH] Fix import path --- convert-hf-to-gguf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/convert-hf-to-gguf.py b/convert-hf-to-gguf.py index 4b87a3c52..f7fe29fd4 100755 --- a/convert-hf-to-gguf.py +++ b/convert-hf-to-gguf.py @@ -19,7 +19,7 @@ if TYPE_CHECKING: from torch import Tensor if 'NO_LOCAL_GGUF' not in os.environ: - sys.path.insert(1, str(Path(__file__).parent / 'gguf-py' / 'gguf')) + sys.path.insert(1, str(Path(__file__).parent / 'gguf-py')) import gguf