mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-12-17 01:52:59 +08:00
12 lines
323 B
Python
12 lines
323 B
Python
from comfy_api.latest import ComfyAPI_latest
|
|
from comfy_api.v0_0_2 import ComfyAPIAdapter_v0_0_2
|
|
from comfy_api.v0_0_1 import ComfyAPIAdapter_v0_0_1
|
|
from comfy_api.internal import ComfyAPIBase
|
|
|
|
supported_versions: list[type[ComfyAPIBase]] = [
|
|
ComfyAPI_latest,
|
|
ComfyAPIAdapter_v0_0_2,
|
|
ComfyAPIAdapter_v0_0_1,
|
|
]
|
|
|