├── .github └── workflows │ └── publish.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── __init__.py ├── custom-lists ├── Clothing │ ├── Complex.txt │ └── Generic.txt ├── effect.txt ├── lens_type.txt ├── painting_style.txt └── photo_style.txt ├── lists ├── effects.txt └── styles.txt ├── nodes ├── .gitignore ├── __init__.py ├── custom_lists.py ├── effect.py ├── grouping.py ├── list_folders.py ├── merge.py ├── styler.py ├── text_multiple.py ├── text_single.py └── utils.py ├── pyproject.toml ├── screenshot ├── prompt-composer-overview.png └── sdxl-turbo-workflow.png └── workflow ├── prompt-composer-base-workflow.json └── prompt-composer-sdxl-turbo-workflow.json /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florestefano1975/comfyui-prompt-composer/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | custom-lists 2 | __pycache__ -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florestefano1975/comfyui-prompt-composer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florestefano1975/comfyui-prompt-composer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florestefano1975/comfyui-prompt-composer/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florestefano1975/comfyui-prompt-composer/HEAD/__init__.py -------------------------------------------------------------------------------- /custom-lists/Clothing/Complex.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florestefano1975/comfyui-prompt-composer/HEAD/custom-lists/Clothing/Complex.txt -------------------------------------------------------------------------------- /custom-lists/Clothing/Generic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florestefano1975/comfyui-prompt-composer/HEAD/custom-lists/Clothing/Generic.txt -------------------------------------------------------------------------------- /custom-lists/effect.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florestefano1975/comfyui-prompt-composer/HEAD/custom-lists/effect.txt -------------------------------------------------------------------------------- /custom-lists/lens_type.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florestefano1975/comfyui-prompt-composer/HEAD/custom-lists/lens_type.txt -------------------------------------------------------------------------------- /custom-lists/painting_style.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florestefano1975/comfyui-prompt-composer/HEAD/custom-lists/painting_style.txt -------------------------------------------------------------------------------- /custom-lists/photo_style.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florestefano1975/comfyui-prompt-composer/HEAD/custom-lists/photo_style.txt -------------------------------------------------------------------------------- /lists/effects.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florestefano1975/comfyui-prompt-composer/HEAD/lists/effects.txt -------------------------------------------------------------------------------- /lists/styles.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florestefano1975/comfyui-prompt-composer/HEAD/lists/styles.txt -------------------------------------------------------------------------------- /nodes/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ -------------------------------------------------------------------------------- /nodes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /nodes/custom_lists.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florestefano1975/comfyui-prompt-composer/HEAD/nodes/custom_lists.py -------------------------------------------------------------------------------- /nodes/effect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florestefano1975/comfyui-prompt-composer/HEAD/nodes/effect.py -------------------------------------------------------------------------------- /nodes/grouping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florestefano1975/comfyui-prompt-composer/HEAD/nodes/grouping.py -------------------------------------------------------------------------------- /nodes/list_folders.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florestefano1975/comfyui-prompt-composer/HEAD/nodes/list_folders.py -------------------------------------------------------------------------------- /nodes/merge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florestefano1975/comfyui-prompt-composer/HEAD/nodes/merge.py -------------------------------------------------------------------------------- /nodes/styler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florestefano1975/comfyui-prompt-composer/HEAD/nodes/styler.py -------------------------------------------------------------------------------- /nodes/text_multiple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florestefano1975/comfyui-prompt-composer/HEAD/nodes/text_multiple.py -------------------------------------------------------------------------------- /nodes/text_single.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florestefano1975/comfyui-prompt-composer/HEAD/nodes/text_single.py -------------------------------------------------------------------------------- /nodes/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florestefano1975/comfyui-prompt-composer/HEAD/nodes/utils.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florestefano1975/comfyui-prompt-composer/HEAD/pyproject.toml -------------------------------------------------------------------------------- /screenshot/prompt-composer-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florestefano1975/comfyui-prompt-composer/HEAD/screenshot/prompt-composer-overview.png -------------------------------------------------------------------------------- /screenshot/sdxl-turbo-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florestefano1975/comfyui-prompt-composer/HEAD/screenshot/sdxl-turbo-workflow.png -------------------------------------------------------------------------------- /workflow/prompt-composer-base-workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florestefano1975/comfyui-prompt-composer/HEAD/workflow/prompt-composer-base-workflow.json -------------------------------------------------------------------------------- /workflow/prompt-composer-sdxl-turbo-workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/florestefano1975/comfyui-prompt-composer/HEAD/workflow/prompt-composer-sdxl-turbo-workflow.json --------------------------------------------------------------------------------