File size: 78,745 Bytes
f4a41d8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 |
import modules.scripts as scripts
import gradio as gr
import os
import platform
import subprocess as sp
from modules import images
from modules.processing import process_images, Processed
from modules.processing import Processed
from modules.shared import opts, cmd_opts, state
from build_dynamic_prompt import *
from main import *
from model_lists import *
from csv_reader import *
from one_button_presets import OneButtonPresets
OBPresets = OneButtonPresets()
basemodelslist = ["SD1.5", "SDXL", "Stable Cascade", "Anime Model"]
#subjects = ["all","object","animal","humanoid", "landscape", "concept"]
subjects =["------ all"]
subjectsubtypesobject = ["all"]
subjectsubtypeshumanoid = ["all"]
subjectsubtypesconcept = ["all"]
artists = ["all", "all (wild)", "none", "popular", "greg mode", "3D", "abstract", "angular", "anime" ,"architecture", "art nouveau", "art deco", "baroque", "bauhaus", "cartoon", "character", "children's illustration", "cityscape", "cinema", "clean", "cloudscape", "collage", "colorful", "comics", "cubism", "dark", "detailed", "digital", "expressionism", "fantasy", "fashion", "fauvism", "figurativism", "gore", "graffiti", "graphic design", "high contrast", "horror", "impressionism", "installation", "landscape", "light", "line drawing", "low contrast", "luminism", "magical realism", "manga", "melanin", "messy", "monochromatic", "nature", "nudity", "photography", "pop art", "portrait", "primitivism", "psychedelic", "realism", "renaissance", "romanticism", "scene", "sci-fi", "sculpture", "seascape", "space", "stained glass", "still life", "storybook realism", "street art", "streetscape", "surrealism", "symbolism", "textile", "ukiyo-e", "vibrant", "watercolor", "whimsical"]
imagetypes = ["all", "all - force multiple", "all - anime", "none", "photograph", "octane render","digital art","concept art", "painting", "portrait", "anime", "only other types", "only templates mode", "dynamic templates mode", "art blaster mode", "quality vomit mode", "color cannon mode", "unique art mode", "massive madness mode", "photo fantasy mode", "subject only mode", "fixed styles mode", "the tokinator"]
promptmode = ["at the back", "in the front"]
promptcompounder = ["1", "2", "3", "4", "5"]
ANDtogglemode = ["none", "automatic", "prefix AND prompt + suffix", "prefix + prefix + prompt + suffix"]
seperatorlist = ["comma", "AND", "BREAK"]
genders = ["all", "male", "female"]
prompt_enhancers = ["none", "superprompt-v1"]
qualitymodelist = ["highest", "gated"]
qualitykeeplist = ["keep used","keep all"]
amountofflufflist = ["none", "dynamic", "short", "medium", "long"]
#for autorun and upscale
sizelist = ["all", "portrait", "wide", "square", "ultrawide", "ultraheight", "wild"]
basesizelist = ["512", "768", "1024"]
modellist = get_models()
modellist.insert(0,"all")
modellist.insert(0,"currently selected model") # First value us the currently selected model
upscalerlist = get_upscalers()
upscalerlist.insert(0,"automatic")
upscalerlist.insert(0,"all")
samplerlist = get_samplers()
samplerlist.insert(0,"all")
#for img2img
img2imgupscalerlist = get_upscalers_for_img2img()
img2imgupscalerlist.insert(0,"automatic")
img2imgupscalerlist.insert(0,"all")
img2imgsamplerlist = get_samplers_for_img2img()
img2imgsamplerlist.insert(0,"all")
#for ultimate SD upscale
seams_fix_types = ["None","Band pass","Half tile offset pass","Half tile offset pass + intersections"]
redraw_modes = ["Linear","Chess","None"]
#folder stuff
folder_symbol = '\U0001f4c2' # 📂
sys.path.append(os.path.abspath(".."))
# Load up stuff for personal artists list, if any
# find all artist files starting with personal_artits in userfiles
script_dir = os.path.dirname(os.path.abspath(__file__)) # Script directory
userfilesfolder = os.path.join(script_dir, "../userfiles/" )
for filename in os.listdir(userfilesfolder):
if(filename.endswith(".csv") and filename.startswith("personal_artists") and filename != "personal_artists_sample.csv"):
name = os.path.splitext(filename)[0]
name = name.replace("_"," ",-1).lower()
# directly insert into the artists list
artists.insert(2, name)
# on startup, check if we have a config file, or else create it
config = load_config_csv()
# load subjects stuff from config
generatevehicle = True
generateobject = True
generatefood = True
generatebuilding = True
generatespace = True
generateflora = True
generateanimal = True
generatebird = True
generatecat = True
generatedog = True
generateinsect = True
generatepokemon = True
generatemarinelife = True
generatemanwoman = True
generatemanwomanrelation = True
generatemanwomanmultiple = True
generatefictionalcharacter = True
generatenonfictionalcharacter = True
generatehumanoids = True
generatejob = True
generatefirstnames = True
generatelandscape = True
generatelocation = True
generatelocationfantasy = True
generatelocationscifi = True
generatelocationvideogame = True
generatelocationbiome = True
generatelocationcity = True
generateevent = True
generateconcepts = True
generatepoemline = True
generatesongline = True
generatecardname = True
generateepisodetitle = True
generateconceptmixer = True
for item in config:
# objects
if item[0] == 'subject_vehicle' and item[1] != 'on':
generatevehicle = False
if item[0] == 'subject_object' and item[1] != 'on':
generateobject = False
if item[0] == 'subject_food' and item[1] != 'on':
generatefood = False
if item[0] == 'subject_building' and item[1] != 'on':
generatebuilding = False
if item[0] == 'subject_space' and item[1] != 'on':
generatespace = False
if item[0] == 'subject_flora' and item[1] != 'on':
generateflora = False
# animals
if item[0] == 'subject_animal' and item[1] != 'on':
generateanimal = False
if item[0] == 'subject_bird' and item[1] != 'on':
generatebird = False
if item[0] == 'subject_cat' and item[1] != 'on':
generatecat = False
if item[0] == 'subject_dog' and item[1] != 'on':
generatedog = False
if item[0] == 'subject_insect' and item[1] != 'on':
generateinsect = False
if item[0] == 'subject_pokemon' and item[1] != 'on':
generatepokemon = False
if item[0] == 'subject_marinelife' and item[1] != 'on':
generatemarinelife = False
# humanoids
if item[0] == 'subject_manwoman' and item[1] != 'on':
generatemanwoman = False
if item[0] == 'subject_manwomanrelation' and item[1] != 'on':
generatemanwomanrelation = False
if item[0] == 'subject_manwomanmultiple' and item[1] != 'on':
generatemanwomanmultiple = False
if item[0] == 'subject_fictional' and item[1] != 'on':
generatefictionalcharacter = False
if item[0] == 'subject_nonfictional' and item[1] != 'on':
generatenonfictionalcharacter = False
if item[0] == 'subject_humanoid' and item[1] != 'on':
generatehumanoids = False
if item[0] == 'subject_job' and item[1] != 'on':
generatejob = False
if item[0] == 'subject_firstnames' and item[1] != 'on':
generatefirstnames = False
# landscape
if item[0] == 'subject_location' and item[1] != 'on':
generatelocation = False
if item[0] == 'subject_location_fantasy' and item[1] != 'on':
generatelocationfantasy = False
if item[0] == 'subject_location_scifi' and item[1] != 'on':
generatelocationscifi = False
if item[0] == 'subject_location_videogame' and item[1] != 'on':
generatelocationvideogame = False
if item[0] == 'subject_location_biome' and item[1] != 'on':
generatelocationbiome = False
if item[0] == 'subject_location_city' and item[1] != 'on':
generatelocationcity = False
# concept
if item[0] == 'subject_event' and item[1] != 'on':
generateevent = False
if item[0] == 'subject_concept' and item[1] != 'on':
generateconcepts = False
if item[0] == 'subject_poemline' and item[1] != 'on':
generatepoemline = False
if item[0] == 'subject_songline' and item[1] != 'on':
generatesongline = False
if item[0] == 'subject_cardname' and item[1] != 'on':
generatecardname = False
if item[0] == 'subject_episodetitle' and item[1] != 'on':
generateepisodetitle = False
if item[0] == 'subject_conceptmixer' and item[1] != 'on':
generateconceptmixer = False
# build up all subjects we can choose based on the loaded config file
if(generatevehicle or generateobject or generatefood or generatebuilding or generatespace or generateflora):
subjects.append("--- object - all")
if(generateobject):
subjects.append("object - generic")
if(generatevehicle):
subjects.append("object - vehicle")
if(generatefood):
subjects.append("object - food")
if(generatebuilding):
subjects.append("object - building")
if(generatespace):
subjects.append("object - space")
if(generateflora):
subjects.append("object - flora")
if(generateanimal or generatebird or generatecat or generatedog or generateinsect or generatepokemon or generatemarinelife):
subjects.append("--- animal - all")
if(generateanimal):
subjects.append("animal - generic")
if(generatebird):
subjects.append("animal - bird")
if(generatecat):
subjects.append("animal - cat")
if(generatedog):
subjects.append("animal - dog")
if(generateinsect):
subjects.append("animal - insect")
if(generatemarinelife):
subjects.append("animal - marine life")
if(generatepokemon):
subjects.append("animal - pokémon")
if(generatemanwoman or generatemanwomanrelation or generatefictionalcharacter or generatenonfictionalcharacter or generatehumanoids or generatejob or generatemanwomanmultiple):
subjects.append("--- human - all")
if(generatemanwoman):
subjects.append("human - generic")
if(generatemanwomanrelation):
subjects.append("human - relations")
if(generatenonfictionalcharacter):
subjects.append("human - celebrity")
if(generatefictionalcharacter):
subjects.append("human - fictional")
if(generatehumanoids):
subjects.append("human - humanoids")
if(generatejob):
subjects.append("human - job/title")
if(generatefirstnames):
subjects.append("human - first name")
if(generatemanwomanmultiple):
subjects.append("human - multiple")
if(generatelandscape or generatelocation or generatelocationfantasy or generatelocationscifi or generatelocationvideogame or generatelocationbiome or generatelocationcity):
subjects.append("--- landscape - all")
if(generatelocation):
subjects.append("landscape - generic")
if(generatelocationfantasy):
subjects.append("landscape - fantasy")
if(generatelocationscifi):
subjects.append("landscape - sci-fi")
if(generatelocationvideogame):
subjects.append("landscape - videogame")
if(generatelocationbiome):
subjects.append("landscape - biome")
if(generatelocationcity):
subjects.append("landscape - city")
if(generateevent or generateconcepts or generatepoemline or generatesongline or generatecardname or generateepisodetitle or generateconceptmixer):
subjects.append("--- concept - all")
if(generateevent):
subjects.append("concept - event")
if(generateconcepts):
subjects.append("concept - the x of y")
if(generatepoemline):
subjects.append("concept - poem lines")
if(generatesongline):
subjects.append("concept - song lines")
if(generatecardname):
subjects.append("concept - card names")
if(generateepisodetitle):
subjects.append("concept - episode titles")
if(generateconceptmixer):
subjects.append("concept - mixer")
# do the same for the subtype subjects
# subjectsubtypesobject = ["all"]
# subjectsubtypeshumanoid = ["all"]
# subjectsubtypesconcept = ["all"]
# objects first
if(generateobject):
subjectsubtypesobject.append("generic objects")
if(generatevehicle):
subjectsubtypesobject.append("vehicles")
if(generatefood):
subjectsubtypesobject.append("food")
if(generatebuilding):
subjectsubtypesobject.append("buildings")
if(generatespace):
subjectsubtypesobject.append("space")
if(generateflora):
subjectsubtypesobject.append("flora")
# humanoids (should I review descriptions??)
if(generatemanwoman):
subjectsubtypeshumanoid.append("generic humans")
if(generatemanwomanrelation):
subjectsubtypeshumanoid.append("generic human relations")
if(generatenonfictionalcharacter):
subjectsubtypeshumanoid.append("celebrities e.a.")
if(generatefictionalcharacter):
subjectsubtypeshumanoid.append("fictional characters")
if(generatehumanoids):
subjectsubtypeshumanoid.append("humanoids")
if(generatejob):
subjectsubtypeshumanoid.append("based on job or title")
if(generatefirstnames):
subjectsubtypeshumanoid.append("based on first name")
if(generatemanwomanmultiple):
subjectsubtypeshumanoid.append("multiple humans")
# concepts
if(generateevent):
subjectsubtypesconcept.append("event")
if(generateconcepts):
subjectsubtypesconcept.append("the X of Y concepts")
if(generatepoemline):
subjectsubtypesconcept.append("lines from poems")
if(generatesongline):
subjectsubtypesconcept.append("lines from songs")
if(generatecardname):
subjectsubtypesconcept.append("names from card based games")
if(generateepisodetitle):
subjectsubtypesconcept.append("episode titles from tv shows")
if(generateconceptmixer):
subjectsubtypesconcept.append("concept mixer")
class Script(scripts.Script):
def title(self):
return "One Button Prompt"
def show(self, is_img2img):
return True
def ui(self, is_img2img):
def gen_prompt(insanitylevel, subject, artist, imagetype, antistring, prefixprompt, suffixprompt, promptcompounderlevel, seperator,givensubject,smartsubject,giventypeofimage, imagemodechance,chosengender, chosensubjectsubtypeobject, chosensubjectsubtypehumanoid, chosensubjectsubtypeconcept,givenoutfit, base_model, OBP_preset, amountoffluff, promptenhancer, presetprefix, presetsuffix):
promptlist = []
for i in range(5):
base_prompt = build_dynamic_prompt(insanitylevel,subject,artist, imagetype, False, antistring,prefixprompt,suffixprompt,promptcompounderlevel,seperator,givensubject,smartsubject, giventypeofimage, imagemodechance,chosengender, chosensubjectsubtypeobject, chosensubjectsubtypehumanoid, chosensubjectsubtypeconcept,True,False,-1,givenoutfit,False,base_model, OBP_preset, promptenhancer, "", "", presetprefix, presetsuffix)
fluffed_prompt = flufferizer(prompt=base_prompt, amountoffluff=amountoffluff)
promptlist.append(fluffed_prompt)
return promptlist
def prompttoworkflowprompt(text):
return text
# Copied code from WebUI
def openfolder():
script_dir = os.path.dirname(os.path.abspath(__file__)) # Script directory
automatedoutputsfolder = os.path.join(script_dir, "../automated_outputs/" )
path = os.path.normpath(automatedoutputsfolder)
if platform.system() == "Windows":
os.startfile(path)
elif platform.system() == "Darwin":
sp.Popen(["open", path])
elif "microsoft-standard-WSL2" in platform.uname().release:
sp.Popen(["wsl-open", path])
else:
sp.Popen(["xdg-open", path])
with gr.Tab("Main"):
with gr.Row(variant="compact"):
gr.Markdown("""
<font size="2">
One Button Prompt is now active. Just press the normal Generate button to start generating images.
Presets can be used to store and load settings.
Set the One Button Preset to __"Custom..."__ to show all settings. The settings will give you more control over what you wish to generate.
Choose __"All (random)..."__ to get a random preset each prompt generation.
</font>
""")
# Part of presets
with gr.Row():
OBP_preset = gr.Dropdown(
label="One Button Preset",
choices=[OBPresets.RANDOM_PRESET_OBP] + [OBPresets.CUSTOM_OBP] + list(OBPresets.opb_presets.keys()),
value="Standard",
)
with gr.Group(visible=True) as presetgroup:
with gr.Row():
gr.Markdown("""
<font size="2">
These prefix and suffix are run on top the of preset. Can be used for LoRA's and other general stylings.
</font>
""")
with gr.Row():
presetprefix = gr.Textbox(label="Preset prefix: ", value="")
presetsuffix = gr.Textbox(label="Preset suffix: ", value="")
with gr.Group(visible=False) as maingroup:
gr.Markdown("""
<font size="2">
Type a name and press "Save as Preset" to store the current generation settings.
</font>
""")
with gr.Row():
obp_preset_name = gr.Textbox(
show_label=False,
placeholder="Name of new preset",
interactive=True,
visible=True,
)
obp_preset_save = gr.Button(
value="Save as preset",
visible=True,
)
gr.Markdown("""
<font size="4">
Generation settings:
</font>
""")
# End of this part of presets
with gr.Row(variant="compact"):
insanitylevel = gr.Slider(1, 10, value=5, step=1, label="🎲⬅️❔➡️🎲🎲🎲 Higher levels increases complexity and randomness of generated prompt")
with gr.Row(variant="compact"):
with gr.Column(variant="compact"):
subject = gr.Dropdown(
subjects, label="📸 Subject Types", value="all")
with gr.Column(variant="compact"):
artist = gr.Dropdown(
artists, label="🎨 Artists", value="all")
with gr.Row(variant="compact"):
chosensubjectsubtypeobject = gr.Dropdown(
subjectsubtypesobject, label="🏺 Type of object", value="all", visible=False)
chosensubjectsubtypehumanoid = gr.Dropdown(
subjectsubtypeshumanoid, label="👨👩👧 Type of humanoids", value="all", visible=False)
chosensubjectsubtypeconcept = gr.Dropdown(
subjectsubtypesconcept, label="💡🧠💭 Type of concept", value="all", visible=False)
chosengender = gr.Dropdown(
genders, label="🚻 gender", value="all", visible=False)
with gr.Row(variant="compact"):
with gr.Column(variant="compact"):
imagetype = gr.Dropdown(
imagetypes, label="🖼️ type of image", value="all")
with gr.Column(variant="compact"):
imagemodechance = gr.Slider(
1, 100, value="20", step=1, label="🎲🖼️ One in X chance to use special image type mode")
with gr.Row(variant="compact"):
gr.Markdown("""
<font size="2">
Override options (choose the related subject type first for better results)
</font>
"""
)
with gr.Row(variant="compact"):
givensubject = gr.Textbox(label="🔃📸 Overwrite subject: ", value="")
smartsubject = gr.Checkbox(label="🧠📸 Smart subject", value = True)
with gr.Row(variant="compact"):
givenoutfit = gr.Textbox(label="🔃👗 Overwrite outfit: ", value="")
with gr.Row(variant="compact"):
gr.Markdown("""
<font size="2">
Prompt fields
</font>
"""
)
with gr.Row(variant="compact"):
with gr.Column(variant="compact"):
prefixprompt = gr.Textbox(label="⬅️💬 Place this in front of generated prompt (prefix)",value="")
suffixprompt = gr.Textbox(label="➡️💬 Place this at back of generated prompt (suffix)",value="")
with gr.Row(variant="compact"):
gr.Markdown("""
<font size="2">
Additional options
</font>
"""
)
with gr.Row(variant="compact"):
giventypeofimage = gr.Textbox(label="🔃🖼️ Overwrite type of image: ", value="")
with gr.Row(variant="compact"):
with gr.Column(variant="compact"):
antistring = gr.Textbox(label="❌📝 Filter out following properties (comma seperated). Example ""film grain, purple, cat"" ")
with gr.Accordion("Help", open=False):
gr.Markdown(
"""
### Description
<font size="2">
Just press the normal Generate button.
This generator will generate a complete full prompt for you and generate the image, based on randomness. You can increase the slider, to include more things to put into the prompt.
Recommended is keeping it around 3-7. Use 10 at your own risk.
There are a lot of special things build in, based on various research papers. Just try it, and let it surprise you.
Add additional prompting to the prefix, suffix in this screen. The actual prompt fields are ignored. Negative prompt is in the respective tab.
</font>
### 📸 Subject Types
<font size="2">
You can choose a certain subject type. Choose the all version to randomly choose between the subtypes. Iff you want to generate something more specific, choose the subtype. It has the following types:
1. object - Can be a random object, a building, vehicle, space or flora.
2. animal - A random (fictional) animal. Has a chance to have human characteristics, such as clothing added.
3. humanoid - A random humanoid, males, females, fantasy types, fictional and non-fictional characters. Can add clothing, features and a bunch of other things.
4. landscape - A landscape, choose a cool location.
5. concept - Can be a concept, such as "a X of Y", or an historical event such as "The Trojan War". It can also generate a line from a poem or a song.
After choosing object, humanoid or concept a subselection menu will show. You can pick further details here. When choosing humanoid, you can also select the gender you wish to generate.
🚻 gender (only available for human generations):
1. all - selects randomly
2. male
3. female
</font>
### 🎨 Artists
<font size="2">
Artists have a major impact on the result.
1. all - it will cohesivly add about between 0-3 artists and style description.
2. all (wild) - it will randomly select between 0-3 artists out of 3483 artists for your prompt.
3. greg mode - Will add greg, or many other popular artists into your prompt. Will also add a lot of quality statements.
Others will select within that artist category
You can turn it off and maybe add your own in the prefix or suffix prompt fields
</font>
### 🖼️ type of image
<font size="2">
There are an immense number of image types, not only paintings and photo's, but also isometric renders and funko pops.
You can however, overwrite it with the most popular ones.
1. all --> normally picks a image type as random. Can choose a 'other' more unique type.
2. all - force multiple --> idea by redditor WestWordHoeDown, it forces to choose between 2 and 3 image types
3. all - anime --> Chooses from anime styles, for support of Anime Model mode.
4. none --> Turns off image type generation
5. photograph
6. octane render
7. digital art
8. concept art
9. painting
10. portrait
11. anime
12. only other types --> Will pick only from the more unique types, such as stained glass window or a funko pop
All modes below are considered a special image type mode.
13. only templates mode --> Will only choose from a set of wildcarded prompt templates. Templates have been gathered from various sources, such as CivitAI, prompthero, promptbook, etc.
only templates mode is perfect for beginners, who want to see some good results fast.
14. dynamic templates mode --> A method that uses prompts in a more natural language.
15. art blaster mode --> Special generation mode that focusses on art movements, stylings and artists.
16. quality vomit mode --> Special generation mode that focusses on qualifiers and stylings.
17. color cannon mode --> Special generation mode that focusses on color scheme's and moods.
18. unique art mode --> Special generation mode that focusses on other image types, art movements, stylings and lighting.
19. massive madness mode --> Special generation mode, creates prompt soup. Almost pure randomness.
20. photo fantasy mode --> Special generation mode that focusses on photographs, cameras, lenses and lighting.
21. subject only mode --> Will only generate a subject, with no additional frills.
22. fixed styles mode --> Generate a subject on top of a fixed style.
23. the tokinator --> Complete random word gibberish mode, use at own risk
### 🎲🖼️ One in X chance to use special image type mode
<font size="2">
This controls how often it will pick a special generation mode. It is a 1 in X chance. So lower means more often. This will only be applied of "type of image" is set to "all" and there is no Overwrite type of image set.
When set to 1, it will always pick a random special generation mode. When set to 20, it is a 1 in 20 chance this will happen.
</font>
### 🔃📸 Overwrite subject
When you fill in the Overwrite subject field, that subject will be used to build the dynamic prompt around. It is best, if you set the subject type to match the subject. For example, set it to humanoid if you place a person in the override subject field.
This way, you can create unlimited variants of a subject.
🧠📸 Smart subject tries to determine what to and not to generate based on your subject. Example, if your Overwrite subject is formed like this: Obese man wearing a kimono
It will then recognize the body type and not generate it. It also recognizes the keyword wearing, and will not generate an outfit.
### 🔃👗 Overwrite outfit
When you fill in the override outfit field, it will generate an outfit in the prompt based on the given value. It can be used in combination with override subject, but does not have to be. It works best with smaller descriptions of the outfit.
An example would be: space suit, red dress, cloak.
Works best when you set the subjects to to humanoid.
### Other prompt fields
The existing prompt and negative prompt fields are ignored.
Add a prompt prefix, suffix in the respective fields. Add negative prompt in the negative prompt tab. They will be automatically added during processing.
These can be used to add textual inversion and LoRA's to always apply. They can also be used to add your models trigger words.
Please read the custom_files documentation on how to apply random textual inversion and LoRA's.
</font>
### Filter values
<font size="2">
You can put comma seperated values here, those will be ignored from any list processing. For example, adding ""film grain, sepia"", will make these values not appear during generation.
For advanced users, you can create a permanent file in \\OneButtonPrompt\\userfiles\\ called antilist.csv
This way, you don't ever have to add it manually again. This file won't be overwritten during upgrades.
Idea by redditor jonesaid.
</font>
"""
)
with gr.Tab("Workflow assist"):
with gr.Row(variant="compact"):
silentmode = gr.Checkbox(
label="🛠️ Workflow mode, turns off prompt generation and uses below Workflow prompt instead.")
with gr.Row(variant="compact"):
workprompt = gr.Textbox(label="🛠️💬 Workflow prompt")
with gr.Row(variant="compact"):
promptvariantinsanitylevel = gr.Slider(0, 10, value=0, step=1, label="🎲🔃 🛠️💬 Prompt variant. Strength of variation of workflow prompt. 0 = no variance.")
with gr.Accordion("Help", open=False):
gr.Markdown(
"""
<font size="2">
Workflow assist, suggestions by redditor Woisek.
With 🛠️ Workflow mode, you turn off the automatic generation of new prompts on 'generate', and it will use the Workflow prompt field instead. So you can work and finetune any fun prompts without turning of the script.
You can use One Button Prompt wildcards in the workflow prompt. For example -outfit- .
With the Prompt Variant, you can let One Button Prompt dynamically create small variance in the workflow prompt. 0 means no effect.
Below here, you can generate a set of random prompts, and send them to the Workflow prompt field. The generation of the prompt uses the settings in the Main tab.
</font>
""")
with gr.Row(variant="compact"):
genprom = gr.Button("🔄💬 Generate me some prompts!")
with gr.Row(variant="compact"):
with gr.Column(scale=4, variant="compact"):
prompt1 = gr.Textbox(label="prompt 1")
with gr.Column(variant="compact"):
prompt1toworkflow = gr.Button("⬆️🛠️💬")
with gr.Row(variant="compact"):
with gr.Column(scale=4, variant="compact"):
prompt2 = gr.Textbox(label="prompt 2")
with gr.Column(variant="compact"):
prompt2toworkflow = gr.Button("⬆️🛠️💬")
with gr.Row(variant="compact"):
with gr.Column(scale=4, variant="compact"):
prompt3 = gr.Textbox(label="prompt 3")
with gr.Column(variant="compact"):
prompt3toworkflow = gr.Button("⬆️🛠️💬")
with gr.Row(variant="compact"):
with gr.Column(scale=4, variant="compact"):
prompt4 = gr.Textbox(label="prompt 4")
with gr.Column(variant="compact"):
prompt4toworkflow = gr.Button("⬆️🛠️💬")
with gr.Row(variant="compact"):
with gr.Column(scale=4, variant="compact"):
prompt5 = gr.Textbox(label="prompt 5")
with gr.Column(variant="compact"):
prompt5toworkflow = gr.Button("⬆️🛠️💬")
with gr.Tab("Advanced"):
with gr.Row(variant="compact"):
gr.Markdown("""
<font size="2">
✨Base model will try and generate prompts fitting the selected model.
SD1.5 --> Less natural language
SDXL --> More natural language (default)
Stable Cascade --> More natural language and no prompt weights
Anime Model --> Focussed on characters and tags, adds 1girl/1boy automatically.
⭐ Flufferizer
A simple and quick implementiation of Fooocus prompt magic
🦸♂️💬 Prompt enhancer
Choose for "superprompt-v1" to super prompt the prompts with roborovski superprompt-v1 model.
Please install requirements for superprompt before use.
</font>
"""
)
with gr.Row(variant="compact"):
base_model = gr.Dropdown(
basemodelslist, label="✨ Base model", value="SDXL")
with gr.Row(variant="compact"):
amountoffluff = gr.Dropdown(
amountofflufflist, label="⭐ Flufferizer", value="dynamic")
with gr.Row(variant="compact"):
promptenhancer = gr.Dropdown(
prompt_enhancers, label="🤓 Prompt enhancer", value="none")
with gr.Row(variant="compact"):
gr.Markdown("""
<font size="2">
Other options
---
</font>
"""
)
with gr.Row(variant="compact"):
with gr.Column(variant="compact"):
promptcompounderlevel = gr.Dropdown(
promptcompounder, label="🔂💬 Prompt compounder", value="1")
with gr.Row(variant="compact"):
with gr.Column(variant="compact"):
seperator = gr.Dropdown(
seperatorlist, label="🚧 Prompt seperator", value="comma")
with gr.Column(variant="compact"):
ANDtoggle = gr.Dropdown(
ANDtogglemode, label="🚧🔧 Prompt seperator mode", value="none")
with gr.Accordion("Help", open=False):
gr.Markdown(
"""
### 🔂💬 Prompt compounder
<font size="2">
Normally, it creates a single random prompt. With prompt compounder, it will generate multiple prompts and compound them together.
Keep at 1 for normal behavior.
Set to different values to compound that many prompts together. My suggestion is to try 2 first.
This was originally a bug in the first release when using multiple batches, now brought back as a feature.
Raised by redditor drone2222, to bring this back as a toggle, since it did create interesting results. So here it is.
You can toggle the separator mode. Standardly this is a comma, but you can choose an AND or a BREAK.
You can also choose the prompt seperator mode for use with Latent Couple extension
Example flow:
Set the Latent Couple extension to 2 area's (standard setting)
In the main tab, set the subject to humanoids
In the prefix prompt field then add for example: Art by artistname, 2 people
Set the 🔂💬 prompt compounder to: 2
Set the 🚧 Prompt seperator to: AND
Set the 🚧🔧 Prompt Seperator mode to: prefix AND prompt + suffix
"automatic" is entirely build around Latent Couple. It will pass artists and the amount of people/animals/objects to generate in the prompt automatically. Set the prompt compounder equal to the amount of areas defined in Laten Couple.
Example flow:
Set the Latent Couple extension to 2 area's (standard setting)
In the main tab, set the subject to humanoids
Leave the prompt field empty
Set the 🔂💬 prompt compounder to: 2
Set the 🚧 Prompt seperator to: AND
Set the 🚧🔧 Prompt Seperator mode to: automatic
</font>
"""
)
with gr.Tab("Negative prompt"):
gr.Markdown(
"""
### Negative prompt settings
</font>
"""
)
with gr.Column(variant="compact"):
with gr.Row(variant="compact"):
autonegativeprompt = gr.Checkbox(label="🤖🚫💬 Auto generate negative prompt", value=True)
autonegativepromptenhance = gr.Checkbox(label="📈🚫💬 Enable base enhancement prompt", value=False)
with gr.Row(variant="compact"):
autonegativepromptstrength = gr.Slider(0, 10, value="0", step=1, label="🎲🚫💬 Randomness of negative prompt (lower is more consistency)")
gr.Markdown(
"""
### Base negative prompt is added on
</font>
"""
)
with gr.Row():
negativeprompt = gr.Textbox(label="🚫💬 Base negative prompt",value="")
with gr.Tab("One Button Run and Upscale"):
with gr.Row(variant="compact"):
gr.Markdown(
"""
### TXT2IMG
<font size="2">
Start WebUi with option --api for this to work. This is not needed for Vlad SD Next.
Note: This part is entirely optional and you can use the normal generate button.
This part is only intended for running an upscaling at the same time.
</font>
"""
)
with gr.Row(variant="compact"):
with gr.Column(variant="compact"):
startmain = gr.Button("Start generating and upscaling!")
interrupt = gr.Button("Interrupt current")
automatedoutputsfolderbutton = gr.Button(folder_symbol)
with gr.Column(variant="compact"):
apiurl = gr.Textbox(label="URL", value="http://127.0.0.1:7860")
onlyupscale = gr.Checkbox(label="Don't generate, only upscale", value=False)
increasestability = gr.Checkbox(label="Increase stability", value=False)
with gr.Row(variant="compact"):
with gr.Accordion("help", open=False):
gr.Markdown(
"""
<font size="2">
Only upscale will not use txt2img to generate an image.
Instead it will pick up all files in the \\upscale_me\\ folder and upscale them with below settings.
Increase stability: If you get NaN's or memory issues, turn this on. It will unload and load the base checkpoint.
</font>
"""
)
with gr.Row(variant="compact"):
with gr.Column(variant="compact"):
amountofimages = gr.Slider(1, 50, value="20", step=1, label="Amount of images to generate")
size = gr.Dropdown(
sizelist, label="Size to generate", value="all")
basesize = gr.Dropdown(
basesizelist, label="base size", value="512")
with gr.Row(variant="compact"):
samplingsteps = gr.Slider(1, 100, value="20", step=1, label="Sampling steps")
cfg = gr.Slider(1,20, value="6.0", step=0.1, label="CFG")
with gr.Row(variant="compact"):
hiresfix = gr.Checkbox(label="hires. fix", value=True)
hiressteps = gr.Slider(0, 100, value = "0", step=1, label="Hires steps")
hiresscale = gr.Slider(1, 4, value = "2", step=0.05, label="Scale")
denoisestrength = gr.Slider(0, 1, value="0.60", step=0.01, label="Denoise strength")
with gr.Column(variant="compact"):
model = gr.Dropdown(
modellist, label="model to use", value="currently selected model")
with gr.Column(variant="compact"):
samplingmethod = gr.Dropdown(
samplerlist, label= "Sampler", value="all")
upscaler = gr.Dropdown(
upscalerlist, label="hires upscaler", value="all")
with gr.Row(variant="compact"):
gr.Markdown(
"""
### Quality Gate
""")
with gr.Row(variant="compact"):
with gr.Accordion("quality gate help", open=False):
gr.Markdown(
"""
<font size="2">
Uses aesthetic image scorer extension to check the quality of the image.
Once turned on, it will retry for n amount of times to get an image with the quality score. If not, it will take the best image so far and continue or set it to gated to only take matching or higher quality images.
You can move Hiresfix to be applied afterwards. You can opt to keep all generated images.
Idea and inspiration by xKean. Additional improvements suggested by pto2k.
</font>
"""
)
with gr.Row(variant="compact"):
qualitygate = gr.Checkbox(label="Quality Gate", value=False)
quality = gr.Slider(1, 10, value = "7.2", step=0.1, label="Quality", visible = False)
runs = gr.Slider(1, 50, value = "5", step=1, label="Amount of tries", visible = False)
with gr.Row(variant="compact"):
qualityhiresfix = gr.Checkbox(label="Move Hires fix afterwards", value=False, visible = False)
qualitymode = gr.Dropdown(
qualitymodelist, label= "Mode of operation", value="highest", visible = False)
qualitykeep = gr.Dropdown(
qualitykeeplist, label= "Images", value="keep used", visible = False)
with gr.Row(variant="compact"):
gr.Markdown(
"""
### IMG2IMG upscale
"""
)
with gr.Row(variant="compact"):
img2imgactivate = gr.Checkbox(label="Upscale image with IMG2IMG", value=True)
with gr.Row(variant="compact"):
with gr.Column(variant="compact"):
img2imgbatch = gr.Slider(1, 5, value="1", step=1, label="Amount times to repeat upscaling with IMG2IMG (loopback)")
img2imgsamplingsteps = gr.Slider(1, 100, value="20", step=1, label="img2img Sampling steps")
img2imgcfg = gr.Slider(1,20, value="6", step=0.1, label="img2img CFG")
img2imgdenoisestrength = gr.Slider(0, 1, value="0.30", step=0.01, label="img2img denoise strength")
img2imgdenoisestrengthmod = gr.Slider(-1,1, value = "-0.05", step=0.01, label="adjust denoise each img2img batch")
with gr.Column(variant="compact"):
img2imgmodel = gr.Dropdown(
modellist, label="img2img model to use", value="currently selected model")
img2imgsamplingmethod = gr.Dropdown(
img2imgsamplerlist, label= "img2img sampler", value="all")
img2imgupscaler = gr.Dropdown(
img2imgupscalerlist, label="img2img upscaler", value="all")
with gr.Row(variant="compact"):
img2imgscale = gr.Slider(1, 4, value="2", step=0.05, label="img2img scale")
img2imgpadding = gr.Slider(32, 256, value="64", step=12, label="img2img padding")
with gr.Row(variant="compact"):
ultimatesdupscale = gr.Checkbox(label="Use Ultimate SD Upscale script instead", value=False)
gr.Markdown(
"""
<font size="2">
This requires the Ultimate SD Upscale extension, install this if you haven't
</font>
"""
)
with gr.Row(variant="compact"):
with gr.Column(scale = 1):
#usdutilewidth, usdutileheight, usdumaskblur, usduredraw, usduSeamsfix, usdusdenoise, usduswidth, usduspadding, usdusmaskblur
#usdutilewidth = "512", usdutileheight = "0", usdumaskblur = "8", usduredraw ="Linear", usduSeamsfix = "None", usdusdenoise = "0.35", usduswidth = "64", usduspadding ="32", usdusmaskblur = "8"
usdutilewidth = gr.Slider(0, 2048, value="512", step=12, label="tile width", visible = False)
usdutileheight = gr.Slider(0, 2048, value="0", step=12, label="tile height", visible = False)
usdumaskblur = gr.Slider(0, 64, value="8", step=1, label="Mask blur", visible = False)
usduredraw = gr.Dropdown(
redraw_modes, label="Type", value="Linear", visible = False)
with gr.Column(scale = 1):
usduSeamsfix = gr.Dropdown(
seams_fix_types, label="Seams fix", value="None", visible = False)
usdusdenoise = gr.Slider(0, 1, value="0.35", step=0.01, label="Seams denoise strenght", visible = False)
usduswidth = gr.Slider(0, 128, value="64", step=12, label="Seams Width", visible = False)
usduspadding = gr.Slider(0, 128, value="32", step=12, label="Seams padding", visible = False)
usdusmaskblur = gr.Slider(0, 64, value="8", step=1, label="Seams Mask blur (offset pass only)", visible = False)
with gr.Row(variant="compact"):
with gr.Column(scale = 1):
controlnetenabled = gr.Checkbox(label="Enable controlnet tile resample", value=False)
controlnetblockymode = gr.Checkbox(label="also enable wierd blocky upscale mode", value=False)
with gr.Column(scale = 1):
controlnetmodel = gr.Textbox(label="Controlnet tile model name", value = "control_v11f1e_sd15_tile [a371b31b]")
with gr.Row(variant="compact"):
gr.Markdown(
"""
<font size="2">
This requires Controlnet 1.1 extension and the tile resample model, install this if you haven't
In settings for Controlnet, enable "Allow other script to control this extension"
Don't use wierd blocky upscale mode. Or maybe do?
</font>
"""
)
with gr.Row(variant="compact"):
with gr.Column(scale = 1):
enableextraupscale = gr.Checkbox(label="Enable upscale with extras", value=False)
with gr.Row(variant="compact"):
with gr.Column(scale = 1):
extrasresize = gr.Slider(0, 8, value="2", step=0.05, label="Upscale resize", visible = False)
extrasupscaler1 = gr.Dropdown(
img2imgupscalerlist, label="upscaler 1", value="all", visible = False)
extrasupscaler2 = gr.Dropdown(
img2imgupscalerlist, label="upscaler 2", value="all", visible = False)
extrasupscaler2visiblity = gr.Slider(0, 1, value="0.5", step=0.05, label="Upscaler 2 vis.", visible = False)
with gr.Column(scale = 1):
extrasupscaler2gfpgan = gr.Slider(0, 1, value="0", step=0.05, label="GFPGAN vis.", visible = False)
extrasupscaler2codeformer = gr.Slider(0, 1, value="0.15", step=0.05, label="CodeFormer vis.", visible = False)
extrasupscaler2codeformerweight = gr.Slider(0, 1, value="0.1", step=0.05, label="CodeFormer weight", visible = False)
genprom.click(gen_prompt, inputs=[insanitylevel,subject, artist, imagetype, antistring,prefixprompt, suffixprompt,promptcompounderlevel, seperator, givensubject,smartsubject,giventypeofimage,imagemodechance, chosengender, chosensubjectsubtypeobject, chosensubjectsubtypehumanoid, chosensubjectsubtypeconcept, givenoutfit, base_model, OBP_preset, amountoffluff, promptenhancer, presetprefix, presetsuffix], outputs=[prompt1, prompt2, prompt3,prompt4,prompt5])
prompt1toworkflow.click(prompttoworkflowprompt, inputs=prompt1, outputs=workprompt)
prompt2toworkflow.click(prompttoworkflowprompt, inputs=prompt2, outputs=workprompt)
prompt3toworkflow.click(prompttoworkflowprompt, inputs=prompt3, outputs=workprompt)
prompt4toworkflow.click(prompttoworkflowprompt, inputs=prompt4, outputs=workprompt)
prompt5toworkflow.click(prompttoworkflowprompt, inputs=prompt5, outputs=workprompt)
startmain.click(generateimages, inputs=[amountofimages,size,model,samplingsteps,cfg,hiresfix,hiressteps,denoisestrength,samplingmethod, upscaler,hiresscale, apiurl, qualitygate, quality, runs,insanitylevel,subject, artist, imagetype, silentmode, workprompt, antistring, prefixprompt, suffixprompt,negativeprompt,promptcompounderlevel, seperator, img2imgbatch, img2imgsamplingsteps, img2imgcfg, img2imgsamplingmethod, img2imgupscaler, img2imgmodel,img2imgactivate, img2imgscale, img2imgpadding,img2imgdenoisestrength,ultimatesdupscale,usdutilewidth, usdutileheight, usdumaskblur, usduredraw, usduSeamsfix, usdusdenoise, usduswidth, usduspadding, usdusmaskblur, controlnetenabled, controlnetmodel,img2imgdenoisestrengthmod,enableextraupscale,controlnetblockymode,extrasupscaler1,extrasupscaler2,extrasupscaler2visiblity,extrasupscaler2gfpgan,extrasupscaler2codeformer,extrasupscaler2codeformerweight,extrasresize,onlyupscale,givensubject,smartsubject,giventypeofimage,imagemodechance, chosengender, chosensubjectsubtypeobject, chosensubjectsubtypehumanoid, chosensubjectsubtypeconcept, increasestability, qualityhiresfix, qualitymode, qualitykeep, basesize, promptvariantinsanitylevel, givenoutfit, autonegativeprompt, autonegativepromptstrength, autonegativepromptenhance, base_model, OBP_preset, amountoffluff, promptenhancer, presetprefix, presetsuffix])
interrupt.click(tryinterrupt, inputs=[apiurl])
automatedoutputsfolderbutton.click(openfolder)
obp_outputs = [
obp_preset_name,
obp_preset_save,
insanitylevel,
subject,
artist,
chosensubjectsubtypeobject,
chosensubjectsubtypehumanoid,
chosensubjectsubtypeconcept,
chosengender,
imagetype,
imagemodechance,
givensubject,
smartsubject,
givenoutfit,
prefixprompt,
suffixprompt,
giventypeofimage,
antistring,
]
def act_obp_preset_save(
obp_preset_name,
obp_preset_save,
insanitylevel,
subject,
artist,
chosensubjectsubtypeobject,
chosensubjectsubtypehumanoid,
chosensubjectsubtypeconcept,
chosengender,
imagetype,
imagemodechance,
givensubject,
smartsubject,
givenoutfit,
prefixprompt,
suffixprompt,
giventypeofimage,
antistring,
):
if obp_preset_name != "":
obp_options = OBPresets.load_obp_presets()
opts = {
"insanitylevel": insanitylevel,
"subject": subject,
"artist": artist,
"chosensubjectsubtypeobject": chosensubjectsubtypeobject,
"chosensubjectsubtypehumanoid": chosensubjectsubtypehumanoid,
"chosensubjectsubtypeconcept": chosensubjectsubtypeconcept,
"chosengender": chosengender,
"imagetype": imagetype,
"imagemodechance": imagemodechance,
"givensubject": givensubject,
"smartsubject": smartsubject,
"givenoutfit": givenoutfit,
"prefixprompt": prefixprompt,
"suffixprompt": suffixprompt,
"giventypeofimage": giventypeofimage,
"antistring": antistring
}
obp_options[obp_preset_name] = opts
OBPresets.save_obp_preset(obp_options)
choices = [OBPresets.RANDOM_PRESET_OBP] + list(obp_options.keys()) + [OBPresets.CUSTOM_OBP]
return gr.update(choices=choices, value=obp_preset_name)
else:
return gr.update()
obp_preset_save.click(act_obp_preset_save,
inputs=obp_outputs,
outputs=[OBP_preset],
)
def obppreset_changed(selection):
if selection == OBPresets.CUSTOM_OBP:
return (
[obp_preset_name.update(value="", visible=True)]
+ [maingroup.update(visible=True)]
+ [presetgroup.update(visible=False)]
+ [presetprefix.update(value="")]
+ [presetsuffix.update(value="")]
)
else:
return (
[obp_preset_name.update(visible=False)]
+ [maingroup.update(visible=False)]
+ [presetgroup.update(visible=True)]
+ [presetprefix.update(visible=True)]
+ [presetsuffix.update(visible=True)]
)
OBP_preset.change(obppreset_changed,
inputs=[OBP_preset],
outputs=[obp_preset_name] + [maingroup] + [presetgroup] + [presetprefix] + [presetsuffix]
)
def OBPPreset_changed_update_custom(selection):
# Skip if Custom was selected
if selection == OBPresets.CUSTOM_OBP:
return [gr.update()] * 16
# Update Custom values based on selected One Button preset
if selection == OBPresets.RANDOM_PRESET_OBP:
selected_opb_preset = OBPresets.get_obp_preset("Standard")
else:
selected_opb_preset = OBPresets.get_obp_preset(selection)
return [
insanitylevel.update(value=selected_opb_preset["insanitylevel"]),
subject.update(value=selected_opb_preset["subject"]),
artist.update(value=selected_opb_preset["artist"]),
chosensubjectsubtypeobject.update(value=selected_opb_preset["chosensubjectsubtypeobject"]),
chosensubjectsubtypehumanoid.update(value=selected_opb_preset["chosensubjectsubtypehumanoid"]),
chosensubjectsubtypeconcept.update(value=selected_opb_preset["chosensubjectsubtypeconcept"]),
chosengender.update(value=selected_opb_preset["chosengender"]),
imagetype.update(value=selected_opb_preset["imagetype"]),
imagemodechance.update(value=selected_opb_preset["imagemodechance"]),
givensubject.update(value=selected_opb_preset["givensubject"]),
smartsubject.update(value=selected_opb_preset["smartsubject"]),
givenoutfit.update(value=selected_opb_preset["givenoutfit"]),
prefixprompt.update(value=selected_opb_preset["prefixprompt"]),
suffixprompt.update(value=selected_opb_preset["suffixprompt"]),
giventypeofimage.update(value=selected_opb_preset["giventypeofimage"]),
antistring.update(value=selected_opb_preset["antistring"]),
]
OBP_preset.change(OBPPreset_changed_update_custom,
inputs=[OBP_preset],
outputs=[insanitylevel] +
[subject] +
[artist] +
[chosensubjectsubtypeobject] +
[chosensubjectsubtypehumanoid] +
[chosensubjectsubtypeconcept] +
[chosengender] +
[imagetype] +
[imagemodechance] +
[givensubject] +
[smartsubject] +
[givenoutfit] +
[prefixprompt] +
[suffixprompt] +
[giventypeofimage] +
[antistring],
)
# turn things on and off for gender
def subjectsvalue(subject):
enable=("human" in subject)
return {
chosengender: gr.update(visible=enable),
}
subject.change(
subjectsvalue,
[subject],
[chosengender]
)
# turn things on and off for subject subtype object
def subjectsvalueforsubtypeobject(subject):
enable=(subject=="object")
return {
chosensubjectsubtypeobject: gr.update(visible=enable),
}
subject.change(
subjectsvalueforsubtypeobject,
[subject],
[chosensubjectsubtypeobject]
)
# turn things on and off for subject subtype humanoid
def subjectsvalueforsubtypeobject(subject):
enable=(subject=="humanoid")
return {
chosensubjectsubtypehumanoid: gr.update(visible=enable),
}
subject.change(
subjectsvalueforsubtypeobject,
[subject],
[chosensubjectsubtypehumanoid]
)
# turn things on and off for subject subtype concept
def subjectsvalueforsubtypeconcept(subject):
enable=(subject=="concept")
return {
chosensubjectsubtypeconcept: gr.update(visible=enable),
}
subject.change(
subjectsvalueforsubtypeconcept,
[subject],
[chosensubjectsubtypeconcept]
)
# Turn things off and on for onlyupscale and txt2img
def onlyupscalevalues(onlyupscale):
onlyupscale = not onlyupscale
return {
amountofimages: gr.update(visible=onlyupscale),
size: gr.update(visible=onlyupscale),
samplingsteps: gr.update(visible=onlyupscale),
cfg: gr.update(visible=onlyupscale),
hiresfix: gr.update(visible=onlyupscale),
hiressteps: gr.update(visible=onlyupscale),
hiresscale: gr.update(visible=onlyupscale),
denoisestrength: gr.update(visible=onlyupscale),
upscaler: gr.update(visible=onlyupscale),
model: gr.update(visible=onlyupscale),
samplingmethod: gr.update(visible=onlyupscale),
upscaler: gr.update(visible=onlyupscale),
qualitygate: gr.update(visible=onlyupscale),
quality: gr.update(visible=onlyupscale),
runs: gr.update(visible=onlyupscale),
qualityhiresfix: gr.update(visible=onlyupscale),
qualitymode: gr.update(visible=onlyupscale),
qualitykeep: gr.update(visible=onlyupscale)
}
onlyupscale.change(
onlyupscalevalues,
[onlyupscale],
[amountofimages,size,samplingsteps,cfg,hiresfix,hiressteps,hiresscale,denoisestrength,upscaler,model,samplingmethod,upscaler,qualitygate,quality,runs,qualityhiresfix,qualitymode,qualitykeep]
)
# Turn things off and on for hiresfix
def hireschangevalues(hiresfix):
return {
hiressteps: gr.update(visible=hiresfix),
hiresscale: gr.update(visible=hiresfix),
denoisestrength: gr.update(visible=hiresfix),
upscaler: gr.update(visible=hiresfix)
}
hiresfix.change(
hireschangevalues,
[hiresfix],
[hiressteps,hiresscale,denoisestrength,upscaler]
)
# Turn things off and on for quality gate
def qgatechangevalues(qualitygate):
return {
quality: gr.update(visible=qualitygate),
runs: gr.update(visible=qualitygate),
qualityhiresfix: gr.update(visible=qualitygate),
qualitymode: gr.update(visible=qualitygate),
qualitykeep: gr.update(visible=qualitygate)
}
qualitygate.change(
qgatechangevalues,
[qualitygate],
[quality,runs,qualityhiresfix,qualitymode,qualitykeep]
)
# Turn things off and on for USDU
def ultimatesdupscalechangevalues(ultimatesdupscale):
return {
usdutilewidth: gr.update(visible=ultimatesdupscale),
usdutileheight: gr.update(visible=ultimatesdupscale),
usdumaskblur: gr.update(visible=ultimatesdupscale),
usduredraw: gr.update(visible=ultimatesdupscale),
usduSeamsfix: gr.update(visible=ultimatesdupscale),
usdusdenoise: gr.update(visible=ultimatesdupscale),
usduswidth: gr.update(visible=ultimatesdupscale),
usduspadding: gr.update(visible=ultimatesdupscale),
usdusmaskblur: gr.update(visible=ultimatesdupscale)
}
ultimatesdupscale.change(
ultimatesdupscalechangevalues,
[ultimatesdupscale],
[usdutilewidth,usdutileheight,usdumaskblur,usduredraw,usduSeamsfix,usdusdenoise,usduswidth,usduspadding,usdusmaskblur]
)
# Turn things off and on for EXTRAS
def enableextraupscalechangevalues(enableextraupscale):
return {
extrasupscaler1: gr.update(visible=enableextraupscale),
extrasupscaler2: gr.update(visible=enableextraupscale),
extrasupscaler2visiblity: gr.update(visible=enableextraupscale),
extrasresize: gr.update(visible=enableextraupscale),
extrasupscaler2gfpgan: gr.update(visible=enableextraupscale),
extrasupscaler2codeformer: gr.update(visible=enableextraupscale),
extrasupscaler2codeformerweight: gr.update(visible=enableextraupscale)
}
enableextraupscale.change(
enableextraupscalechangevalues,
[enableextraupscale],
[extrasupscaler1,extrasupscaler2,extrasupscaler2visiblity,extrasresize, extrasupscaler2gfpgan,extrasupscaler2codeformer,extrasupscaler2codeformerweight]
)
return [insanitylevel,subject, artist, imagetype, prefixprompt,suffixprompt,negativeprompt, promptcompounderlevel, ANDtoggle, silentmode, workprompt, antistring, seperator, givensubject, smartsubject, giventypeofimage, imagemodechance, chosengender, chosensubjectsubtypeobject, chosensubjectsubtypehumanoid, chosensubjectsubtypeconcept, promptvariantinsanitylevel, givenoutfit, autonegativeprompt, autonegativepromptstrength, autonegativepromptenhance, base_model, OBP_preset, amountoffluff, promptenhancer, presetprefix, presetsuffix]
def run(self, p, insanitylevel, subject, artist, imagetype, prefixprompt,suffixprompt,negativeprompt, promptcompounderlevel, ANDtoggle, silentmode, workprompt, antistring,seperator, givensubject, smartsubject, giventypeofimage, imagemodechance, chosengender, chosensubjectsubtypeobject, chosensubjectsubtypehumanoid, chosensubjectsubtypeconcept, promptvariantinsanitylevel, givenoutfit, autonegativeprompt, autonegativepromptstrength, autonegativepromptenhance, base_model, OBP_preset, amountoffluff, promptenhancer, presetprefix, presetsuffix):
images = []
infotexts = []
all_seeds = []
all_prompts = []
batches = p.n_iter
initialbatchsize = p.batch_size
batchsize = p.batch_size
p.n_iter = 1
p.batch_size = 1
initialseed = p.seed
if p.seed == -1:
p.seed = int(random.randrange(4294967294))
if(silentmode and workprompt != ""):
print("Workflow mode turned on, not generating a prompt. Using workflow prompt.")
elif(silentmode):
print("Warning, workflow mode is turned on, but no workprompt has been given.")
elif p.prompt != "" or p.negative_prompt != "":
print("Please note that existing prompt and negative prompt fields are (no longer) used")
if(ANDtoggle == "automatic" and artist == "none"):
print("Automatic and artist mode set to none, don't work together well. Ignoring this setting!")
artist = "all"
#if(ANDtoggle == "automatic" and (prefixprompt != "")):
# print("Automatic doesnt work well if there is an prefix prompt filled in. Ignoring this prompt fields!")
# prefixprompt = ""
state.job_count = batches
for i in range(batches):
if(silentmode == False):
# prompt compounding
print("Starting generating the prompt")
preppedprompt = ""
artistcopy = artist
prefixpromptcopy = prefixprompt
if(ANDtoggle == "automatic"):
if(artist != "none"):
preppedprompt += build_dynamic_prompt(insanitylevel,subject,artist, imagetype, True, antistring, base_model=base_model)
if(subject == "humanoid"):
preppedprompt += ", " + promptcompounderlevel + " people"
if(subject == "landscape"):
preppedprompt += ", landscape"
if(subject == "animal"):
preppedprompt += ", " + promptcompounderlevel + " animals"
if(subject == "object"):
preppedprompt += ", " + promptcompounderlevel + " objects"
#sneaky! If we are running on automatic, we don't want "artists" to show up during the rest of the prompt, so set it to none, but only temporary!
artist = "none"
if(ANDtoggle != "none" and ANDtoggle != "automatic"):
preppedprompt += prefixprompt
if(ANDtoggle != "none"):
if(ANDtoggle!="prefix + prefix + prompt + suffix"):
prefixprompt = ""
if(seperator == "comma"):
preppedprompt += " \n , "
else:
preppedprompt += " \n " + seperator + " "
#Here is where we build a "normal" prompt
base_prompt = build_dynamic_prompt(insanitylevel,subject,artist, imagetype, False, antistring, prefixprompt, suffixprompt,promptcompounderlevel, seperator,givensubject,smartsubject,giventypeofimage,imagemodechance,chosengender, chosensubjectsubtypeobject, chosensubjectsubtypehumanoid, chosensubjectsubtypeconcept,True,False,-1,givenoutfit, False, base_model, OBP_preset, promptenhancer, "", "", presetprefix, presetsuffix)
fluffed_prompt = flufferizer(prompt=base_prompt, amountoffluff=amountoffluff)
preppedprompt += fluffed_prompt
# set the artist mode back when done (for automatic mode)
artist = artistcopy
prefixprompt = prefixpromptcopy
# set everything ready
p.prompt = preppedprompt
p.negative_prompt = negativeprompt
if(silentmode == True):
base_prompt = createpromptvariant(workprompt,promptvariantinsanitylevel)
p.prompt = base_prompt
#for j in range(batchsize):
print(" ")
print("Full prompt to be processed:")
print(" ")
print(p.prompt)
if(autonegativeprompt):
p.negative_prompt = build_dynamic_negative(positive_prompt=base_prompt, insanitylevel=autonegativepromptstrength,enhance=autonegativepromptenhance, existing_negative_prompt=p.negative_prompt, base_model=base_model)
promptlist = []
if(batchsize>1):
# finally figured out how to do multiple batch sizes
for i in range(batchsize):
promptlist.append(p.prompt)
p.prompt = promptlist
p.batch_size = batchsize
p.hr_prompt = promptlist
else:
p.batch_size = batchsize
p.hr_prompt = p.prompt
processed = process_images(p)
images += processed.images
infotexts += processed.infotexts
# prompt and seed info for batch grid
all_seeds.append(processed.seed)
all_prompts.append(processed.prompt)
# prompt and seed info for individual images
all_seeds += processed.all_seeds
all_prompts += processed.all_prompts
state.job = f"{state.job_no} out of {state.job_count}"
# Increase seed by batchsize for unique seeds for every picture if -1 was chosen
if initialseed == -1:
p.seed += batchsize
# just return all the things
p.n_iter = 0
p.batch_size = 0
return Processed(p=p, images_list=images, info=infotexts[0], infotexts=infotexts, all_seeds=all_seeds, all_prompts=all_prompts) |