import gradio as gr import random from time import time, ctime def promptgen(choice, num, artist): t = time() print(ctime(t)) if choice == "Prompt Generator v0.1(Better quality)": prompt = open('pr1.txt').read().splitlines() elif choice == "Prompt Generator v0.2(More tags)": prompt = open('pr2.txt').read().splitlines() if int(num) < 1 or int(num) > 20: num = 10 if int(artist) < 0 or int(artist) > 40: artist = 2 vocab = len(prompt) generated = [] artists_num = 0 while len(sorted(set(generated), key=lambda d: generated.index(d))) < num: rand = random.randint(0, vocab) if prompt[rand-1].startswith('art by') and artists_num < artist: artists_num +=1 generated.append(prompt[rand-1]) elif not prompt[rand-1].startswith('art by'): generated.append(prompt[rand-1]) print(' '.join(set(generated)) + '\n') return ' '.join(set(generated)) demo = gr.Blocks() with demo: gr.HTML( """
Simple prompt generation script for Midjourney, DALLe, Stable and Disco diffusion and etc neural networks.
More examples in Github and Project site