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