Chaoses-Ib
Chaoses-Ib
Thank you. Ko-fi says it's sent to Paypal and Paypal says it's on hold, probably because I still haven't linked a card. 😄I'm always too lazy to go aboard for...
Interesting, I didn't think it's supported before. It's possible to generate previews for models and then display the preview files. If I'm lucky, I can find a custom node and...
You can disable the preview with this: ```python queue.watch_display(False, False, False) ``` Though its interface is a bit tedious and I'm planning to change it to `queue.watch_display(False)`.
Arguments of `queue.watch_display()` are changed: Before: ```python def watch_display(self, display_node: bool = True, display_task: bool = True): ... queue.watch_display(False, False) ``` Now: ```python def watch_display(self, all: bool | None =...
Have you run `%reset -f out` to free the RAM, as discussed in #48? And, if you are using ComfyUI loaded in the same process (the standalone runtime), connecting to...
Could you share the workflow?
Sorry for this late reply. Another one reported a similar bug with `SplitSigmasDenoise` today. It's now fixed. I can't find the `Prompt Builder` in your workflow to test, but they...
`when_empty()` creates and calls `wf.__enter__()` itself inorder to reduce the indentation of the code. It's shown in the example. But this error message is indeed bad. I'll add a check...
IPython (the kernel used by Jupyter Notebook and VS Code Notebook) may hold some secret references to the output. There is some API for clearing them, but there is no...
My experiment shows that `display(Image)` will indeed store ref to the image in the out history, while `display` normal classes won't. My guess is normal classes are converted to str...