mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-01-11 14:50:49 +08:00
- Run comfyui workflows directly inside other python applications using EmbeddedComfyClient. - Optional telemetry in prompts and models using anonymity preserving Plausible self-hosted or hosted. - Better OpenAPI schema - Basic support for distributed ComfyUI backends. Limitations: no progress reporting, no easy way to start your own distributed backend, requires RabbitMQ as a message broker.
6 lines
355 B
Python
6 lines
355 B
Python
# we can not import model classes here because that would create a circular
|
|
# reference which would not work in python2
|
|
# do not import all models into this module because that uses a lot of memory and stack frames
|
|
# if you need the ability to import all models from one package, import them with
|
|
# from comfy.api.components.schemas import ModelA, ModelB
|