MCPcopy Create free account
hub / github.com/city96/ComfyUI-GGUF / UnetLoaderGGUFAdvanced

Class UnetLoaderGGUFAdvanced

nodes.py:186–198  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

184 return (model,)
185
186class UnetLoaderGGUFAdvanced(UnetLoaderGGUF):
187 @classmethod
188 def INPUT_TYPES(s):
189 unet_names = [x for x in folder_paths.get_filename_list("unet_gguf")]
190 return {
191 "required": {
192 "unet_name": (unet_names,),
193 "dequant_dtype": (["default", "target", "float32", "float16", "bfloat16"], {"default": "default"}),
194 "patch_dtype": (["default", "target", "float32", "float16", "bfloat16"], {"default": "default"}),
195 "patch_on_device": ("BOOLEAN", {"default": False}),
196 }
197 }
198 TITLE = "Unet Loader (GGUF/Advanced)"
199
200class CLIPLoaderGGUF:
201 @classmethod

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected