Also seen as: "MetadataIncompleteBuffer", "HeaderTooLarge", "SafetensorError while deserializing header", "safetensors truncated"
Direct answer
This means the .safetensors file is truncated — the download did not finish. safetensors reads an 8-byte header-length prefix and then expects exactly that many bytes; when the file is cut short it fails at load with MetadataIncompleteBuffer or HeaderTooLarge. The file is on disk and looks present, but it is incomplete.
Not sure this workflow will run before you rent a GPU?
Paste your ComfyUI workflow JSON into the free checker — it flags missing nodes, model requirements, and the VRAM/GPU you actually need. No signup.
The model download was interrupted or timed out — common on large checkpoints over a flaky link or a CDN redirect.
Delete the file and re-download it — a truncated safetensors cannot be repaired, and it stays cached until you remove it. Verify the real source size: curl -sI -r 0-0 -L '<url>' returns the full length in Content-Range (the -L matters — HF /resolve/ 302-redirects to a CDN). Compare it to the on-disk byte size.