chore : Add gguf template entrypoint to scripts sub package and fix toml entry

This commit is contained in:
teleprint-me 2024-07-19 14:53:56 -04:00
parent fe883305c3
commit a083c6cf6d
No known key found for this signature in database
GPG key ID: B0D11345E65C4D48
2 changed files with 2 additions and 1 deletions

View file

@ -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"

View file

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