Visit ComfyUI Online for ready-to-use ComfyUI environment
Retrieve final image output from remote client, with placeholder for incomplete jobs.
The FetchRemote
node is designed to retrieve the final output image from a remote client. This node is particularly useful in distributed AI art generation workflows where the processing is offloaded to a remote server. The primary function of this node is to fetch the completed image from the remote server once the job is done. If the remote client is not available or the job is not completed, the node ensures that a placeholder (black image) is returned instead. This functionality allows for seamless integration of remote processing results into your local workflow, ensuring that your pipeline remains robust and uninterrupted even if the remote client encounters issues.
The final_image
parameter is an image input that serves as a fallback or placeholder in case the remote image retrieval fails. This parameter ensures that the node can still output an image even if the remote fetch operation does not succeed. The default value is typically a black image, but it can be any image that you choose to use as a placeholder.
The remote_info
parameter is a dictionary containing information required to fetch the image from the remote client. It includes keys such as remote_url
and job_id
, which are essential for identifying and retrieving the correct image from the remote server. This parameter is crucial for the node's operation as it directs the node to the correct remote location and job.
The IMAGE
output parameter is the final image retrieved from the remote client. If the remote fetch operation is successful, this will be the image generated by the remote server. If the operation fails, this will be the placeholder image provided in the final_image
input parameter. This output is essential for integrating the results of remote processing into your local workflow.
remote_info
parameter is correctly populated with the remote_url
and job_id
to avoid issues with fetching the image.final_image
parameter to maintain visual consistency in your workflow in case the remote fetch fails.remote_url
and job_id
in the remote_info
parameter are correct. Ensure that the remote server is online and accessible.remote_info
parameter is not provided or is incorrectly formatted.remote_info
parameter is a dictionary containing valid remote_url
and job_id
keys.© Copyright 2024 RunComfy. All Rights Reserved.