What is the order of AND
& BREAK
operators?
#15877
Unanswered
fcolecumberri
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
According to https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Features#break-keyword and https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Features#composable-diffusion
AND
&BREAK
are operators that change the way the prompt gets parsed.Let's say I send
p1 AND p2 BREAK p3
, does this gets parsed as(p1 AND p2) BREAK p3
orp1 AND (p2 BREAK p3)
?If the answer is
p1 AND (p2 BREAK p3)
, is there any way to force(p1 AND p2) BREAK p3
?Beta Was this translation helpful? Give feedback.
All reactions