Problem with loading models and vae
Global Models Cache:
Ckpt:
[1] taureal (ids: None)
Vae:
[1] vae-ft-mse-840000-ema-pruned.vae (ids: None)
Traceback (most recent call last):
File "E:\ComfyUI\workflow_api.py", line 166, in
OS: Windows
This is hard to troubleshoot without the workflow_api.py file and knowledge of the custom node
I discovered the problem being that the generate model name doesnt correct parse ''. Check if your model name (path) contains backlash. For example if you see
checkpointloadersimple_1 = checkpointloadersimple.load_checkpoint(
ckpt_name="SDXL\something.safetensors"
)
change it to
checkpointloadersimple_1 = checkpointloadersimple.load_checkpoint(
ckpt_name="SDXL\\something.safetensors"
)
see if such solves your problem
If that's the issue, I did fix that bug on my fork.