Skip to content

Instantly share code, notes, and snippets.

@trojblue
Last active December 21, 2022 10:53
Show Gist options
  • Save trojblue/5410978440e52b95a293bd49a4ff34d8 to your computer and use it in GitHub Desktop.
Save trojblue/5410978440e52b95a293bd49a4ff34d8 to your computer and use it in GitHub Desktop.
christmas tags
import random
start_str = "a clean painting of ((1girl)), best quality, "
description_tags = "short pointy ears, solo, red hair, palace, carpet, royal, town, bangs, medium hair, long sleeves, blue rose, striped, rose, long hair, elf, alternative costume, crown".split(", ")
christmas_tags = "jingle bell, official art, shawl, shorts, christmas ornaments, scenery, snow, gift, full body, confetti, postage stamp, stuffed toy, tassle, white flower, (close-up:0.5), fur collar, scenery, christmas tree".split(', ')
end_str = "original"
[random.shuffle(i) for i in (description_tags, christmas_tags)]
christmas_prompt = start_str + ' '.join(description_tags) + \
', '.join(random.sample(christmas_tags, k=10)) + end_str
print(christmas_prompt)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment