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.
25 lines
376 B
Python
25 lines
376 B
Python
import dataclasses
|
|
import datetime
|
|
import decimal
|
|
import io
|
|
import typing
|
|
import uuid
|
|
|
|
import typing_extensions
|
|
import urllib3
|
|
|
|
from comfy.api import api_client, schemas, api_response
|
|
|
|
__all__ = [
|
|
'dataclasses',
|
|
'datetime',
|
|
'decimal',
|
|
'io',
|
|
'typing',
|
|
'uuid',
|
|
'typing_extensions',
|
|
'urllib3',
|
|
'api_client',
|
|
'schemas',
|
|
'api_response'
|
|
] |