Skip to content

v0.1.4

Choose a tag to compare

@wei-hai wei-hai released this 28 Jul 19:19
· 87 commits to main since this release
17a618a

Comfy Cloud now serves the v2 API on cloud.comfy.org. api.comfy.org continues to serve the node registry.

Breaking

api.comfy.org/api/v2/* no longer responds. If you pass that host explicitly, requests will 404 until you update.

Changes

  • base_url now defaults to https://cloud.comfy.org, so Comfy(api_key=...) targets Comfy Cloud with no host argument. COMFY_CLOUD_BASE_URL is exported for callers who want the value.
  • Spec server URL, README, and docstrings updated to the new host.
  • Passing an explicit base_url still wins — self-hosted and serverless callers are unaffected.

Upgrading

# before
client = Comfy("https://api.comfy.org", api_key="comfyui-...")

# after — the default is correct, so the host can be dropped
client = Comfy(api_key="comfyui-...")

Backward compatible for anyone already passing their own host; only api.comfy.org callers must change.

Verified against production: a real workflow submitted through the default host ran to succeeded and its output downloaded and byte-verified.