├── .github └── workflows │ └── publish.yml ├── .gitignore ├── ConfigLLM.py ├── LICENSE ├── README.md ├── __init__.py ├── auto_prompt_llm.py ├── images ├── LLM-Text-Chat.png ├── autoLLM_flux_example.png ├── comfyui_manageer_search_keyword_auto.png ├── llm-text-loop.png ├── readme_before_action.png ├── rm_mainui_comfyui.png ├── rm_mainui_sdwebui.png ├── rm_use1.png ├── rm_use2.png ├── rm_use3.png ├── u1.png ├── u2.png ├── u3.png ├── u4.png ├── u5.png ├── u6.png ├── u7.png └── u8.png ├── js └── app.js ├── pyproject.toml ├── requirements.txt └── workflowX.json /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlinx/ComfyUI-decadetw-auto-prompt-llm/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlinx/ComfyUI-decadetw-auto-prompt-llm/HEAD/.gitignore -------------------------------------------------------------------------------- /ConfigLLM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlinx/ComfyUI-decadetw-auto-prompt-llm/HEAD/ConfigLLM.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlinx/ComfyUI-decadetw-auto-prompt-llm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlinx/ComfyUI-decadetw-auto-prompt-llm/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlinx/ComfyUI-decadetw-auto-prompt-llm/HEAD/__init__.py -------------------------------------------------------------------------------- /auto_prompt_llm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlinx/ComfyUI-decadetw-auto-prompt-llm/HEAD/auto_prompt_llm.py -------------------------------------------------------------------------------- /images/LLM-Text-Chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlinx/ComfyUI-decadetw-auto-prompt-llm/HEAD/images/LLM-Text-Chat.png -------------------------------------------------------------------------------- /images/autoLLM_flux_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlinx/ComfyUI-decadetw-auto-prompt-llm/HEAD/images/autoLLM_flux_example.png -------------------------------------------------------------------------------- /images/comfyui_manageer_search_keyword_auto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlinx/ComfyUI-decadetw-auto-prompt-llm/HEAD/images/comfyui_manageer_search_keyword_auto.png -------------------------------------------------------------------------------- /images/llm-text-loop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlinx/ComfyUI-decadetw-auto-prompt-llm/HEAD/images/llm-text-loop.png -------------------------------------------------------------------------------- /images/readme_before_action.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlinx/ComfyUI-decadetw-auto-prompt-llm/HEAD/images/readme_before_action.png -------------------------------------------------------------------------------- /images/rm_mainui_comfyui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlinx/ComfyUI-decadetw-auto-prompt-llm/HEAD/images/rm_mainui_comfyui.png -------------------------------------------------------------------------------- /images/rm_mainui_sdwebui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlinx/ComfyUI-decadetw-auto-prompt-llm/HEAD/images/rm_mainui_sdwebui.png -------------------------------------------------------------------------------- /images/rm_use1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlinx/ComfyUI-decadetw-auto-prompt-llm/HEAD/images/rm_use1.png -------------------------------------------------------------------------------- /images/rm_use2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlinx/ComfyUI-decadetw-auto-prompt-llm/HEAD/images/rm_use2.png -------------------------------------------------------------------------------- /images/rm_use3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlinx/ComfyUI-decadetw-auto-prompt-llm/HEAD/images/rm_use3.png -------------------------------------------------------------------------------- /images/u1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlinx/ComfyUI-decadetw-auto-prompt-llm/HEAD/images/u1.png -------------------------------------------------------------------------------- /images/u2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlinx/ComfyUI-decadetw-auto-prompt-llm/HEAD/images/u2.png -------------------------------------------------------------------------------- /images/u3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlinx/ComfyUI-decadetw-auto-prompt-llm/HEAD/images/u3.png -------------------------------------------------------------------------------- /images/u4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlinx/ComfyUI-decadetw-auto-prompt-llm/HEAD/images/u4.png -------------------------------------------------------------------------------- /images/u5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlinx/ComfyUI-decadetw-auto-prompt-llm/HEAD/images/u5.png -------------------------------------------------------------------------------- /images/u6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlinx/ComfyUI-decadetw-auto-prompt-llm/HEAD/images/u6.png -------------------------------------------------------------------------------- /images/u7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlinx/ComfyUI-decadetw-auto-prompt-llm/HEAD/images/u7.png -------------------------------------------------------------------------------- /images/u8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlinx/ComfyUI-decadetw-auto-prompt-llm/HEAD/images/u8.png -------------------------------------------------------------------------------- /js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlinx/ComfyUI-decadetw-auto-prompt-llm/HEAD/js/app.js -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlinx/ComfyUI-decadetw-auto-prompt-llm/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | -------------------------------------------------------------------------------- /workflowX.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xlinx/ComfyUI-decadetw-auto-prompt-llm/HEAD/workflowX.json --------------------------------------------------------------------------------