Chaoses-Ib

Results 281 comments of Chaoses-Ib

Are you using real mode? What do you exactly mean by "run a second comfyscript workflow before the first one is done"? Multiple threads? Or one `with Workflow()` inside another...

I can't reproduce this, both with sleep and without. Maybe it's related to specific nodes. Which node do you received this error? What are its parent nodes (inputs)? ![Image](https://github.com/user-attachments/assets/47557797-74dd-4d4e-8b44-13f238fae9e2)

Not exactly the same, but I've got the following error when I shared the model between the two threads: ```py import threading import time model, clip, vae = CheckpointLoaderSimple(Checkpoints.v1_5_pruned_emaonly) def...

Can you tell me which node has the error and upload the full error log (full stack trace) here? I just realized that I don't have a NVIDIA GPU at...

It should be `FooocusKSampler_`. You can check its type stub. Conflicting names (nodes/types) will be suffixed with underscores. This is sometimes misleading but I havn't found a better way that...

> I get the error sometimes even in the web ui. Then it's probably the node itself's problem. Maybe you can report to the author? Though it looks a bit...

Why do you need 32-bit?

I have a similar issue when using Solara in VS Code: ```python import solara @solara.component def Page(): def on_file(file_info: solara.file_drop.FileInfo): print(file_info) print(file_info['file_obj'].read()) solara.FileDrop("Drop file here", on_file=on_file) Page() ``` ```python Timeout...

`with Workflow()` will indeed clean up the models. Though as I remember a model will only be unloaded if there are no references to it. (See #21 for details.) Anyway,...

Then it's probably because your VRAM is not enough to keep them.