HomePilot Deploy Bot
chore(hf): sync HomePilot to HF Space
23b413b
Raw
History Blame Contribute Delete
319 Bytes
"""
ComfyUI service errors.
"""
from __future__ import annotations
class ComfyUIUnavailable(Exception):
"""ComfyUI is offline or unreachable."""
class ComfyUITimeout(Exception):
"""Workflow execution timed out."""
class ComfyUIWorkflowError(Exception):
"""Workflow returned an error from ComfyUI."""