mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-08-02 23:14:49 +08:00
The input types, input impls, and utility types are now all available in the versioned API. See the change in `comfy_extras/nodes_video.py` for an example of their usage.
8 lines
145 B
Python
8 lines
145 B
Python
from .video_types import VideoFromFile, VideoFromComponents
|
|
|
|
__all__ = [
|
|
# Implementations
|
|
"VideoFromFile",
|
|
"VideoFromComponents",
|
|
]
|