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
@@ -1055,6 +1057,8 @@ The webhook event name for a failed request is `prompt.failed`. The webhook will
1055
1057
1056
1058
## System Events
1057
1059
1060
+
> Note: From version 1.13.5, the frontend aggregate progress event `progress_state` is included in the supported system event set and can be forwarded like other events. Use `SYSTEM_WEBHOOK_EVENTS=progress_state` or `SYSTEM_WEBHOOK_EVENTS=all` to subscribe.
1061
+
1058
1062
ComfyUI emits a number of events over websocket during the course of a workflow. These can be configured to be sent to a webhook using the `SYSTEM_WEBHOOK_URL` and `SYSTEM_WEBHOOK_EVENTS` environment variables. Additionally, any environment variable starting with `SYSTEM_META_` will be sent as metadata with the event. From version 1.13.0, these are signed, and can be validated using the `WEBHOOK_SECRET` environment variable and any standard webhook validation library such as `svix`. See [above](#validating-webhooks) for examples.
1059
1063
1060
1064
All webhooks have the same format, which is as follows:
@@ -1073,6 +1077,7 @@ The following events are available:
1073
1077
1074
1078
- "status"
1075
1079
- "progress"
1080
+
- "progress_state"
1076
1081
- "executing"
1077
1082
- "execution_start"
1078
1083
- "execution_cached"
@@ -1138,6 +1143,27 @@ The following are the schemas for the event data that will be sent to the webhoo
0 commit comments