Visit ComfyUI Online for ready-to-use ComfyUI environment
Gracefully conclude workflow process, collect and organize results for further use in ComfyUI environment.
The end_workflow
node is designed to gracefully conclude a workflow process within the ComfyUI environment. This node ensures that all necessary final steps are executed, and it provides a structured way to wrap up the workflow, making sure that all outputs are properly generated and returned. The primary goal of this node is to finalize the workflow by collecting and organizing the results, which can include images, text responses, or other data generated during the workflow execution. This node is essential for ensuring that the workflow completes correctly and that all outputs are accessible for further use or analysis.
The workflow_name
parameter specifies the name of the workflow that is being concluded. This parameter is crucial as it identifies which workflow's final steps need to be executed. The value should be a string that matches the name of the workflow you intend to end. There are no strict minimum or maximum values, but it should be a valid and existing workflow name within your system.
The is_enable
parameter determines whether the workflow should be concluded or not. It accepts two values: "enable" and "disable". If set to "disable", the workflow will not be concluded, and the node will return None
. This parameter allows for conditional execution of the workflow's final steps, providing flexibility in managing different workflow scenarios. The default value is "enable".
The images
output parameter contains the collection of images generated during the workflow execution. These images are organized and returned as part of the final output, allowing you to access and utilize them for further processing or analysis. Each image is retrieved based on its filename, subfolder, and type, ensuring that all relevant image data is included.
The response
output parameter provides the textual responses generated during the workflow. This can include any text-based output that was produced, such as summaries, descriptions, or other relevant information. The response is collected and returned as a string, making it easy to access and use in subsequent steps or for reporting purposes.
workflow_name
parameter accurately matches the name of the workflow you intend to conclude to avoid any mismatches or errors.is_enable
parameter to conditionally execute the workflow's final steps, which can be useful in scenarios where you need to skip the conclusion under certain conditions.images
and response
outputs to verify that all expected data has been correctly generated and returned, ensuring the workflow has completed successfully.workflow_name
does not match any existing workflows in the system.workflow_name
parameter to ensure it matches the name of an existing workflow. Correct any typos or inaccuracies.is_enable
parameter is set to "disable", preventing the workflow from concluding.is_enable
parameter to "enable" to allow the workflow to conclude and generate the final outputs.© Copyright 2024 RunComfy. All Rights Reserved.