-
I've been developing an app that relies on the ComfyUI API and one of the routes I frequently use is Does this property actually do anything? Any reference to it in the code seems to just be setting it to true for various nodes and I want to know if there is anything it does so I can account for it in my app. Any help appreciated. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
This is a feature used in nodes like CLIPTextEncode where dynamicPrompts being set to true determines whether random selection syntax like Important note: The responsibility for handling this feature lies with the frontend, so if you're implementing an API program, when dynamicPrompts is set to true, your program needs to handle this preprocessing before sending to /prompt. |
Beta Was this translation helpful? Give feedback.
This is a feature used in nodes like CLIPTextEncode where dynamicPrompts being set to true determines whether random selection syntax like
{a|b|c}
should be enabled.Important note: The responsibility for handling this feature lies with the frontend, so if you're implementing an API program, when dynamicPrompts is set to true, your program needs to handle this preprocessing before sending to /prompt.