Files
ComfyUI/comfy_api/input/__init__.py
T

27 lines
466 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,
2026-03-24 17:47:28 -04:00
CurvePoint,
CurveInput,
MonotoneCubicCurve,
LinearCurve,
2026-04-23 23:51:34 -04:00
RangeInput,
2025-07-29 19:17:22 -07:00
)
__all__ = [
"ImageInput",
"AudioInput",
2025-07-29 19:17:22 -07:00
"MaskInput",
"LatentInput",
"VideoInput",
2026-03-24 17:47:28 -04:00
"CurvePoint",
"CurveInput",
"MonotoneCubicCurve",
"LinearCurve",
2026-04-23 23:51:34 -04:00
"RangeInput",
]