mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-01-11 23:00:51 +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.
21 lines
818 B
Python
21 lines
818 B
Python
# coding: utf-8
|
|
|
|
# flake8: noqa
|
|
|
|
# import all models into this package
|
|
# if you have many models here with many references from one model to another this may
|
|
# raise a RecursionError
|
|
# to avoid this, import only the models that you directly need like:
|
|
# from from comfy.api.components.schema.pet import Pet
|
|
# or import this package, but before doing it, use:
|
|
# import sys
|
|
# sys.setrecursionlimit(n)
|
|
|
|
from comfy.api.components.schema.extra_data import ExtraData
|
|
from comfy.api.components.schema.node import Node
|
|
from comfy.api.components.schema.prompt import Prompt
|
|
from comfy.api.components.schema.prompt_node import PromptNode
|
|
from comfy.api.components.schema.prompt_request import PromptRequest
|
|
from comfy.api.components.schema.queue_tuple import QueueTuple
|
|
from comfy.api.components.schema.workflow import Workflow
|