Nested Wildcards and Combinatorial Generation #659
Unanswered
DrJimmyBrungus
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.
-
I've run in to a problem that I hope I can get some hlep with. A simplified version of what I am trying to do:
Using combinatorial generation, I would like to generate every possible prompt, (i.e. go through every PositivePrompt## file), but not use every possible artist. I just want the prompt to pick a random artist from artist.txt when it is called in PositivePrompt.
Using
__prompts/*__in my main prompt, it go through each prompt file like I want, but will also go through each possible artist for each prompt file.I tried changing the PositivePrompt files to instead read:
{1$$__artist__}in an attempt to only pick one artist, but this did not work.Beta Was this translation helpful? Give feedback.
All reactions