You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
Highlights
New: Output.get_download_url() — get a fetchable URL for an output instead of streaming the bytes through your process. On Comfy Cloud / serverless it is a short-lived, self-authorizing signed storage URL (with expires_at); on a self-hosted proxy it is the content endpoint (expires_at=None). Available on both Output and AsyncOutput.
The client now identifies itself via a User-Agent header; pass client_info= to attribute your own integration's traffic.
Fixes
SSE: a read-idle timeout so a stalled stream can no longer hang events().
Map entity-specific 404s (job_not_found / asset_not_found) to NotFound.
Docs
Document get_download_url(); correct the API-key placeholder (comfyui-…) and the Cloud host (api.comfy.org).