Files
ComfyUI/comfy_api/input/__init__.py
T

17 lines
278 B
Python
Raw Normal View History

2025-07-29 19:17:22 -07:00
# This file only exists for backwards compatibility.
from comfy_api.latest._input import (
ImageInput,
AudioInput,
MaskInput,
LatentInput,
VideoInput,
)
__all__ = [
"ImageInput",
"AudioInput",
2025-07-29 19:17:22 -07:00
"MaskInput",
"LatentInput",
"VideoInput",
]