├── .github └── workflows │ └── publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── assets ├── LoRA_Trigger_Local.png ├── install_by_manager.png └── preview_lora_image.png ├── js └── lora_trigger_local.js ├── lora_trigger_local.py └── pyproject.toml /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bellzs/ComfyUI-LoRA-Assistant/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bellzs/ComfyUI-LoRA-Assistant/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bellzs/ComfyUI-LoRA-Assistant/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bellzs/ComfyUI-LoRA-Assistant/HEAD/__init__.py -------------------------------------------------------------------------------- /assets/LoRA_Trigger_Local.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bellzs/ComfyUI-LoRA-Assistant/HEAD/assets/LoRA_Trigger_Local.png -------------------------------------------------------------------------------- /assets/install_by_manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bellzs/ComfyUI-LoRA-Assistant/HEAD/assets/install_by_manager.png -------------------------------------------------------------------------------- /assets/preview_lora_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bellzs/ComfyUI-LoRA-Assistant/HEAD/assets/preview_lora_image.png -------------------------------------------------------------------------------- /js/lora_trigger_local.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bellzs/ComfyUI-LoRA-Assistant/HEAD/js/lora_trigger_local.js -------------------------------------------------------------------------------- /lora_trigger_local.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bellzs/ComfyUI-LoRA-Assistant/HEAD/lora_trigger_local.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Bellzs/ComfyUI-LoRA-Assistant/HEAD/pyproject.toml --------------------------------------------------------------------------------