According to https://github.com/Chaoses-Ib/ComfyScript/blob/main/docs/Runtime.md#real-mode, it seems that enabling Real Mode requires importing the following:
from comfy_script.runtime.real import *
load()
from comfy_script.runtime.real.nodes import *
with Workflow() as wf:
model = UNETLoader('wan2.2_i2v_low_noise_14B_fp16.safetensors', 'default')
# workflow...
After I run this, the ComfyUI server starts successfully and shows:
......
INFO:root:To see the GUI go to: http://127.0.0.1:8188
To see the GUI go to: http://127.0.0.1:8188
However, my workflow doesn't execute—it just hangs there. Why is this happening? How am I supposed to actually run my workflow in Real Mode?
comfyui version: v0.16.4
According to https://github.com/Chaoses-Ib/ComfyScript/blob/main/docs/Runtime.md#real-mode, it seems that enabling Real Mode requires importing the following:
After I run this, the ComfyUI server starts successfully and shows:
However, my workflow doesn't execute—it just hangs there. Why is this happening? How am I supposed to actually run my workflow in Real Mode?
comfyui version: v0.16.4