GGUFLoaderKJ
KJNodes/experimentalExperimental
GGUFLoaderKJLoads a GGUF model with advanced options, requires [ComfyUI-GGUF](https://github.com/city96/ComfyUI-GGUF) to be installed.
Experimental: This node is experimental and its behavior may change without notice.
Example
JSON Example
{
"class_type": "GGUFLoaderKJ",
"inputs": {
"model_name": null,
"extra_model_name": "none",
"dequant_dtype": "default",
"patch_dtype": "default",
"patch_on_device": false,
"enable_fp16_accumulation": false,
"attention_override": "none"
}
}This example shows required inputs only. Connection values like ["node_id", 0] should reference actual node IDs from your workflow.
Inputs
| Name | Type | Status | Constraints | Default |
|---|---|---|---|---|
model_name | COMBO | required | - | - |
extra_model_name? | COMBO | required | - | "none" |
dequant_dtype | COMBO | required | - | "default" |
patch_dtype | COMBO | required | - | "default" |
patch_on_device | BOOLEAN | required | - | false |
enable_fp16_accumulation? | BOOLEAN | required | - | false |
attention_override? | COMBO | required | - | "none" |
Outputs
| Index | Name | Type | Is List | Connection Reference |
|---|---|---|---|---|
0 | MODEL | MODEL | No | ["{node_id}", 0] |
How to connect to these outputs
To connect another node's input to an output from this node, use the connection reference format:
["node_id", output_index]Where node_id is the ID of this GGUFLoaderKJ node in your workflow, and output_index is the index from the table above.
Example
If this node has ID "5" in your workflow:
MODEL (MODEL):["5", 0]
Was this page helpful?