From a083c6cf6d2ac761173287124ee051eb6acc634d Mon Sep 17 00:00:00 2001 From: teleprint-me <77757836+teleprint-me@users.noreply.github.com> Date: Fri, 19 Jul 2024 14:53:56 -0400 Subject: [PATCH] chore : Add gguf template entrypoint to scripts sub package and fix toml entry --- gguf-py/pyproject.toml | 2 +- gguf-py/scripts/__init__.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/gguf-py/pyproject.toml b/gguf-py/pyproject.toml index 4241c5c17..42c312c80 100644 --- a/gguf-py/pyproject.toml +++ b/gguf-py/pyproject.toml @@ -37,4 +37,4 @@ gguf-convert-endian = "scripts:gguf_convert_endian_entrypoint" gguf-dump = "scripts:gguf_dump_entrypoint" gguf-set-metadata = "scripts:gguf_set_metadata_entrypoint" gguf-new-metadata = "scripts:gguf_new_metadata_entrypoint" -gguf-template = "scripts:gguf_template" +gguf-template = "scripts:gguf_template_entrypoint" diff --git a/gguf-py/scripts/__init__.py b/gguf-py/scripts/__init__.py index e77f2e9c9..7d75bae46 100644 --- a/gguf-py/scripts/__init__.py +++ b/gguf-py/scripts/__init__.py @@ -4,3 +4,4 @@ from .gguf_convert_endian import main as gguf_convert_endian_entrypoint from .gguf_dump import main as gguf_dump_entrypoint from .gguf_set_metadata import main as gguf_set_metadata_entrypoint from .gguf_new_metadata import main as gguf_new_metadata_entrypoint +from .gguf_template import main as gguf_template_entrypoint