ComfyUI/comfy/api/components/schemas/__init__.py
doctorpangloss 1b2ea61345 Improved API support
- 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.
2024-02-07 14:20:21 -08:00

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