Comfy-Org/ComfyUI · error · ValueError

Unsupported file format: '{file_format}'. Supported: {', '.j

Error message

Unsupported file format: '{file_format}'. Supported: {', '.join(sorted(cls.SUPPORTED_FORMATS))}.

What it means

Error "Unsupported file format: '{file_format}'. Supported: {', '.join(sorted(cls.SUPPORTED_FORMATS))}." thrown in Comfy-Org/ComfyUI.

Source

Thrown at comfy_api_nodes/nodes_hunyuan3d.py:725

        polygon_type: str,
        face_level: str,
        seed: int,
    ) -> IO.NodeOutput:
        _ = seed
        file_format = model_3d.format.lower()
        if file_format not in cls.SUPPORTED_FORMATS:
            raise ValueError(
                f"Unsupported file format: '{file_format}'. " f"Supported: {', '.join(sorted(cls.SUPPORTED_FORMATS))}."
            )
        model_url = await upload_3d_model_to_comfyapi(cls, model_3d, file_format)

View on GitHub (pinned to 1c6d8d45b3)

Solutions

  1. Use one of the listed supported file formats.

When it happens

Trigger: Thrown at comfy_api_nodes/nodes_hunyuan3d.py:725 when the library encounters an invalid state.

Common situations: See trigger scenarios.


AI-assisted analysis of Comfy-Org/ComfyUI@1c6d8d45b3 (2026-08-14). Data as JSON: /api/errors/0e56cce9f0a3ccb1. Report an issue: GitHub.