File size: 546 Bytes
9e50ce3
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
from typing import TYPE_CHECKING

from utils import _LazyModule
from utils.import_utils import define_import_structure


if TYPE_CHECKING:
    from .configuration_hunyuan_image_3 import *
    from .modeling_hunyuan_image_3 import *
    from .autoencoder_kl_3d import *
    from .image_processor import *
    from .siglip2 import *
    from .tokenization_hunyuan_image_3 import *
else:
    import sys

    _file = globals()["__file__"]
    sys.modules[__name__] = _LazyModule(__name__, _file, define_import_structure(_file), module_spec=__spec__)