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.
28 lines
442 B
Python
28 lines
442 B
Python
import dataclasses
|
|
import datetime
|
|
import decimal
|
|
import io
|
|
import numbers
|
|
import re
|
|
import typing
|
|
import typing_extensions
|
|
import uuid
|
|
|
|
from comfy.api import schemas
|
|
from comfy.api.configurations import schema_configuration
|
|
|
|
U = typing.TypeVar('U')
|
|
|
|
__all__ = [
|
|
'dataclasses',
|
|
'datetime',
|
|
'decimal',
|
|
'io',
|
|
'numbers',
|
|
're',
|
|
'typing',
|
|
'typing_extensions',
|
|
'uuid',
|
|
'schemas',
|
|
'schema_configuration'
|
|
] |