v0.1.4
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_urlnow defaults tohttps://cloud.comfy.org, soComfy(api_key=...)targets Comfy Cloud with no host argument.COMFY_CLOUD_BASE_URLis exported for callers who want the value.- Spec server URL, README, and docstrings updated to the new host.
- Passing an explicit
base_urlstill 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.