├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── images ├── change_color.jpg ├── make_prompt.jpg ├── multiprompt.jpg └── ui.jpg ├── install.py ├── requirements.txt ├── scripts ├── chatgpt_answers.py ├── chatgpt_utils.py ├── json_utils.py ├── prompt_chatgpt.py └── template_utils.py ├── style.css └── templates ├── append ├── Find keywords related to prompt.txt └── Make a color description.txt └── replace ├── Change color in prompt.txt ├── Change words in prompt.txt ├── Improve prompt.txt ├── Make prompt for a person.txt ├── Multiprompt example 1.txt └── Multiprompt example 2.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallatore/stable-diffusion-webui-chatgpt-utilities/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallatore/stable-diffusion-webui-chatgpt-utilities/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallatore/stable-diffusion-webui-chatgpt-utilities/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallatore/stable-diffusion-webui-chatgpt-utilities/HEAD/README.md -------------------------------------------------------------------------------- /images/change_color.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallatore/stable-diffusion-webui-chatgpt-utilities/HEAD/images/change_color.jpg -------------------------------------------------------------------------------- /images/make_prompt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallatore/stable-diffusion-webui-chatgpt-utilities/HEAD/images/make_prompt.jpg -------------------------------------------------------------------------------- /images/multiprompt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallatore/stable-diffusion-webui-chatgpt-utilities/HEAD/images/multiprompt.jpg -------------------------------------------------------------------------------- /images/ui.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallatore/stable-diffusion-webui-chatgpt-utilities/HEAD/images/ui.jpg -------------------------------------------------------------------------------- /install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallatore/stable-diffusion-webui-chatgpt-utilities/HEAD/install.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | openai 2 | json5 -------------------------------------------------------------------------------- /scripts/chatgpt_answers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallatore/stable-diffusion-webui-chatgpt-utilities/HEAD/scripts/chatgpt_answers.py -------------------------------------------------------------------------------- /scripts/chatgpt_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallatore/stable-diffusion-webui-chatgpt-utilities/HEAD/scripts/chatgpt_utils.py -------------------------------------------------------------------------------- /scripts/json_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallatore/stable-diffusion-webui-chatgpt-utilities/HEAD/scripts/json_utils.py -------------------------------------------------------------------------------- /scripts/prompt_chatgpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallatore/stable-diffusion-webui-chatgpt-utilities/HEAD/scripts/prompt_chatgpt.py -------------------------------------------------------------------------------- /scripts/template_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallatore/stable-diffusion-webui-chatgpt-utilities/HEAD/scripts/template_utils.py -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | .output-html .error { 2 | white-space: pre-wrap !important; 3 | } -------------------------------------------------------------------------------- /templates/append/Find keywords related to prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallatore/stable-diffusion-webui-chatgpt-utilities/HEAD/templates/append/Find keywords related to prompt.txt -------------------------------------------------------------------------------- /templates/append/Make a color description.txt: -------------------------------------------------------------------------------- 1 | Make a color description -------------------------------------------------------------------------------- /templates/replace/Change color in prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallatore/stable-diffusion-webui-chatgpt-utilities/HEAD/templates/replace/Change color in prompt.txt -------------------------------------------------------------------------------- /templates/replace/Change words in prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallatore/stable-diffusion-webui-chatgpt-utilities/HEAD/templates/replace/Change words in prompt.txt -------------------------------------------------------------------------------- /templates/replace/Improve prompt.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallatore/stable-diffusion-webui-chatgpt-utilities/HEAD/templates/replace/Improve prompt.txt -------------------------------------------------------------------------------- /templates/replace/Make prompt for a person.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallatore/stable-diffusion-webui-chatgpt-utilities/HEAD/templates/replace/Make prompt for a person.txt -------------------------------------------------------------------------------- /templates/replace/Multiprompt example 1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallatore/stable-diffusion-webui-chatgpt-utilities/HEAD/templates/replace/Multiprompt example 1.txt -------------------------------------------------------------------------------- /templates/replace/Multiprompt example 2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hallatore/stable-diffusion-webui-chatgpt-utilities/HEAD/templates/replace/Multiprompt example 2.txt --------------------------------------------------------------------------------