├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── examples ├── sdxl_prompt_styler.png └── sdxl_prompt_styler_advanced.png ├── sdxl_prompt_styler.py ├── sdxl_styles_base.json ├── sdxl_styles_sai.json └── sdxl_styles_twri.json /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twri/sdxl_prompt_styler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twri/sdxl_prompt_styler/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twri/sdxl_prompt_styler/HEAD/__init__.py -------------------------------------------------------------------------------- /examples/sdxl_prompt_styler.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twri/sdxl_prompt_styler/HEAD/examples/sdxl_prompt_styler.png -------------------------------------------------------------------------------- /examples/sdxl_prompt_styler_advanced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twri/sdxl_prompt_styler/HEAD/examples/sdxl_prompt_styler_advanced.png -------------------------------------------------------------------------------- /sdxl_prompt_styler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twri/sdxl_prompt_styler/HEAD/sdxl_prompt_styler.py -------------------------------------------------------------------------------- /sdxl_styles_base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twri/sdxl_prompt_styler/HEAD/sdxl_styles_base.json -------------------------------------------------------------------------------- /sdxl_styles_sai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twri/sdxl_prompt_styler/HEAD/sdxl_styles_sai.json -------------------------------------------------------------------------------- /sdxl_styles_twri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/twri/sdxl_prompt_styler/HEAD/sdxl_styles_twri.json --------------------------------------------------------------------------------