mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-01-10 14:20: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.
13 lines
197 B
Python
13 lines
197 B
Python
import dataclasses
|
|
import typing
|
|
import typing_extensions
|
|
|
|
from comfy.api import server, schemas
|
|
|
|
__all__ = [
|
|
'dataclasses',
|
|
'typing',
|
|
'typing_extensions',
|
|
'server',
|
|
'schemas'
|
|
] |