Inspect AI model files online: Safetensors, GGUF & ComfyUI
Read the metadata inside AI model files without downloading gigabytes of weights. Yellorn decodes the Safetensors / GGUF header and the ComfyUI workflow locally — just the structure, never the tensor data.
Read the header, skip the weights
AI model files are huge — gigabytes of tensor weights. But the part you usually want to inspect is tiny: the header. Yellorn reads only that header, locally in your browser, and never loads the tensor data. So you can check a model's architecture or a workflow's prompt in seconds, without downloading the whole file into the editor.
Drag the file onto the editor to open it.
What each file shows
- Safetensors (
.safetensors) — the tensor map (each tensor's name, dtype, and shape) plus a computed__summary__. The raw weights are never read. - GGUF (
.gguf) — a computed__summary__(architecture, parameter count, quantization mix, key hyperparameters), the file's full metadata key/value map, and the tensor list. - ComfyUI PNG — the workflow embedded in a generated image: a
__summary__(checkpoint, LoRAs, sampler, size, positive / negative prompts), the APIpromptgraph, and the UIworkflow. The pixels are never decoded.
Useful things to do with it
- Compare two checkpoints — open each model's header in a tab and diff the summaries.
- Recover a ComfyUI workflow from a PNG someone shared — the API
promptis ready to POST straight to ComfyUI's/promptendpoint. - Convert the header to JSON for an editable tab, or search it with JMESPath.
Related
Where to go next
Try a fix in the editor or browse more articles.