├── .gitignore ├── LICENSE ├── README.md ├── assets ├── avatars.yaml ├── default.b2d19cd6.jpg ├── default.jpg ├── index.0866feb1.css ├── index.6b33893a.js └── tags.yaml ├── images ├── 0-0.png ├── 0-1.JPG ├── 2-1.JPG ├── 2-2.JPG ├── 3-1.JPG ├── 3-2.JPG ├── 3-3.JPG ├── 3-4.JPG ├── 3-5.JPG ├── 3-6.JPG ├── 3-7.JPG ├── front.JPG ├── install.JPG └── logo.png ├── index.html ├── install.py ├── paste_this_to_webui_scripts_folder └── prompt_gallery.py ├── requirements.txt └── scripts └── prompt_gallery.py /.gitignore: -------------------------------------------------------------------------------- 1 | path_recorder.txt 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dr413677671/PromptGallery-stable-diffusion-webui/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dr413677671/PromptGallery-stable-diffusion-webui/HEAD/README.md -------------------------------------------------------------------------------- /assets/avatars.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dr413677671/PromptGallery-stable-diffusion-webui/HEAD/assets/avatars.yaml -------------------------------------------------------------------------------- /assets/default.b2d19cd6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dr413677671/PromptGallery-stable-diffusion-webui/HEAD/assets/default.b2d19cd6.jpg -------------------------------------------------------------------------------- /assets/default.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dr413677671/PromptGallery-stable-diffusion-webui/HEAD/assets/default.jpg -------------------------------------------------------------------------------- /assets/index.0866feb1.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dr413677671/PromptGallery-stable-diffusion-webui/HEAD/assets/index.0866feb1.css -------------------------------------------------------------------------------- /assets/index.6b33893a.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dr413677671/PromptGallery-stable-diffusion-webui/HEAD/assets/index.6b33893a.js -------------------------------------------------------------------------------- /assets/tags.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dr413677671/PromptGallery-stable-diffusion-webui/HEAD/assets/tags.yaml -------------------------------------------------------------------------------- /images/0-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dr413677671/PromptGallery-stable-diffusion-webui/HEAD/images/0-0.png -------------------------------------------------------------------------------- /images/0-1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dr413677671/PromptGallery-stable-diffusion-webui/HEAD/images/0-1.JPG -------------------------------------------------------------------------------- /images/2-1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dr413677671/PromptGallery-stable-diffusion-webui/HEAD/images/2-1.JPG -------------------------------------------------------------------------------- /images/2-2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dr413677671/PromptGallery-stable-diffusion-webui/HEAD/images/2-2.JPG -------------------------------------------------------------------------------- /images/3-1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dr413677671/PromptGallery-stable-diffusion-webui/HEAD/images/3-1.JPG -------------------------------------------------------------------------------- /images/3-2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dr413677671/PromptGallery-stable-diffusion-webui/HEAD/images/3-2.JPG -------------------------------------------------------------------------------- /images/3-3.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dr413677671/PromptGallery-stable-diffusion-webui/HEAD/images/3-3.JPG -------------------------------------------------------------------------------- /images/3-4.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dr413677671/PromptGallery-stable-diffusion-webui/HEAD/images/3-4.JPG -------------------------------------------------------------------------------- /images/3-5.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dr413677671/PromptGallery-stable-diffusion-webui/HEAD/images/3-5.JPG -------------------------------------------------------------------------------- /images/3-6.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dr413677671/PromptGallery-stable-diffusion-webui/HEAD/images/3-6.JPG -------------------------------------------------------------------------------- /images/3-7.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dr413677671/PromptGallery-stable-diffusion-webui/HEAD/images/3-7.JPG -------------------------------------------------------------------------------- /images/front.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dr413677671/PromptGallery-stable-diffusion-webui/HEAD/images/front.JPG -------------------------------------------------------------------------------- /images/install.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dr413677671/PromptGallery-stable-diffusion-webui/HEAD/images/install.JPG -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dr413677671/PromptGallery-stable-diffusion-webui/HEAD/images/logo.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dr413677671/PromptGallery-stable-diffusion-webui/HEAD/index.html -------------------------------------------------------------------------------- /install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dr413677671/PromptGallery-stable-diffusion-webui/HEAD/install.py -------------------------------------------------------------------------------- /paste_this_to_webui_scripts_folder/prompt_gallery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dr413677671/PromptGallery-stable-diffusion-webui/HEAD/paste_this_to_webui_scripts_folder/prompt_gallery.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pyyaml -------------------------------------------------------------------------------- /scripts/prompt_gallery.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dr413677671/PromptGallery-stable-diffusion-webui/HEAD/scripts/prompt_gallery.py --------------------------------------------------------------------------------