You've already forked OpenShot-ComfyUI
mirror of
https://github.com/OpenShot/OpenShot-ComfyUI.git
synced 2026-03-02 08:56:22 -08:00
9 lines
300 B
Python
9 lines
300 B
Python
"""Shared model-loading helpers for OpenShot-ComfyUI nodes.
|
|
|
|
V1 keeps these helpers minimal. Main node implementations live in nodes.py.
|
|
"""
|
|
|
|
from .nodes import _download_if_needed, _resolve_config_name, _to_device_dtype
|
|
|
|
__all__ = ["_download_if_needed", "_resolve_config_name", "_to_device_dtype"]
|