gguf_hash.py: rename string UUIDv5 --> uuid
This commit is contained in:
parent
77b0ca4c7f
commit
f2d6eb0f4d
1 changed files with 1 additions and 1 deletions
|
@ -83,7 +83,7 @@ def gguf_hash(reader: GGUFReader, filename: str, disable_progress_bar: bool, no_
|
|||
# Display Hash Output
|
||||
print("sha1 {0} {1}".format(sha1.hexdigest(), filename)) # noqa: NP100
|
||||
print("sha256 {0} {1}".format(sha256.hexdigest(), filename)) # noqa: NP100
|
||||
print("UUIDv5 {0} {1}".format(uuid.UUID(bytes=uuidv5_sha1.digest()[:16], version=5), filename)) # noqa: NP100
|
||||
print("uuid {0} {1}".format(uuid.UUID(bytes=uuidv5_sha1.digest()[:16], version=5), filename)) # noqa: NP100
|
||||
|
||||
|
||||
def main() -> None:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue