guill

Results 36 comments of guill

> Update: I've managed to test the PR now, and apart from having to disable rgthree, my flows seem to work fine. My fear that mapping over lists might be...

@Trung0246 I believe the issue with `ttN pipeLoader` is actually a bug in the node. The declaration of `"my_unique_id": "UNIQUE_ID"` should be inside of the `"hidden"` category for it to...

Pasting a code block that @Trung0246 gave me on Matrix here so that it's documented: ``` class TautologyStr(str): def __ne__(self, other): return False class ByPassTypeTuple(tuple): def __getitem__(self, index): if index...

I believe all the issues reported in this PR so far have been addressed. Please let me know if you encounter any new ones (or I'm wrong about the existing...

I've fixed the issue with `LoadImage`. It was a result of a change I made to support undeclared inputs. Now, undeclared inputs should function just like they do on `master`...

@blepping The issue in TinyTerra is a bug in those nodes. The declaration of `UNIQUE_ID` is outside of the `hidden` group when it must be inside it. With this PR,...

@comfyanonymous The remaining backward-incompatibilities -- the `JOVConstantNode` issue and the multi-type (`FLOAT,INT`) issues -- are both a result of the fact that optional inputs are now validated by the back-end...

Documenting conversation from Matrix: The error posted by @ricklove is a result of CushyStudio saving fields that exist as `'None'` in the default UI as `null`. This previously wasn't caught...

After talking it over with @comfyanonymous in Matrix, here's the solution I've implemented: ## Argument Validation Skipping When a custom `VALIDATE_INPUTS` function exists, any inputs that exist as an argument...

Closing this PR as I'm no longer maintaining it. The `apitools-comfyui` repository has been updated to work against my Node Expansion PR (https://github.com/comfyanonymous/ComfyUI/pull/931) instead. The lazy evaluation functionality provided by...