Comfy-Org/ComfyUI · error · ValueError

Model file is {size / (1024 * 1024):.1f} MB; Tripo import al

Error message

Model file is {size / (1024 * 1024):.1f} MB; Tripo import allows up to 150 MB.

What it means

Error "Model file is {size / (1024 * 1024):.1f} MB; Tripo import allows up to 150 MB." thrown in Comfy-Org/ComfyUI.

Source

Thrown at comfy_api_nodes/nodes_tripo.py:982

        if file_format not in cls.SUPPORTED_FORMATS:
            raise ValueError(
                f"Unsupported 3D format '{file_format or 'unknown'}'. "
                f"Tripo import supports: {', '.join(f.upper() for f in cls.SUPPORTED_FORMATS)}."
            )
        size = len(model_3d.get_bytes())
        if size > 150 * 1024 * 1024:
            raise ValueError(f"Model file is {size / (1024 * 1024):.1f} MB; Tripo import allows up to 150 MB.")

        url = await upload_3d_model_to_comfyapi(cls, model_3d, file_format)
        response = await sync_op(

View on GitHub (pinned to 1c6d8d45b3)

Solutions

  1. Reduce the model file size to 150 MB or less.

When it happens

Trigger: Thrown at comfy_api_nodes/nodes_tripo.py:982 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/829dea5922e8ab46. Report an issue: GitHub.