mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2026-01-10 06:10:50 +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.
27 lines
843 B
Python
27 lines
843 B
Python
# coding: utf-8
|
|
|
|
# flake8: noqa
|
|
|
|
"""
|
|
comfyui
|
|
No description provided (generated by Openapi JSON Schema Generator https://github.com/openapi-json-schema-tools/openapi-json-schema-generator) # noqa: E501
|
|
The version of the OpenAPI document: 0.0.1
|
|
Generated by: https://github.com/openapi-json-schema-tools/openapi-json-schema-generator
|
|
"""
|
|
|
|
__version__ = "1.0.0"
|
|
|
|
# import ApiClient
|
|
from comfy.api.api_client import ApiClient
|
|
|
|
# import Configuration
|
|
from comfy.api.configurations.api_configuration import ApiConfiguration
|
|
|
|
# import exceptions
|
|
from comfy.api.exceptions import OpenApiException
|
|
from comfy.api.exceptions import ApiAttributeError
|
|
from comfy.api.exceptions import ApiTypeError
|
|
from comfy.api.exceptions import ApiValueError
|
|
from comfy.api.exceptions import ApiKeyError
|
|
from comfy.api.exceptions import ApiException
|