add gguf to supported_pt_extensions

This commit is contained in:
zengxianyu 2025-09-25 19:43:06 -04:00
parent c8d2117f02
commit c2e373c360

View File

@ -9,7 +9,7 @@ from collections.abc import Collection
from comfy.cli_args import args
supported_pt_extensions: set[str] = {'.ckpt', '.pt', '.pt2', '.bin', '.pth', '.safetensors', '.pkl', '.sft'}
supported_pt_extensions: set[str] = {'.ckpt', '.pt', '.pt2', '.bin', '.pth', '.safetensors', '.pkl', '.sft', '.gguf'}
folder_names_and_paths: dict[str, tuple[list[str], set[str]]] = {}