├── .github └── workflows │ └── publish.yml ├── .gitignore ├── LICENSE.txt ├── MultiLoraLoader.py ├── README.md ├── __init__.py ├── docs └── images │ ├── convert-to-input.png │ ├── lora-text-extractor-connections.png │ └── multilora-loader-connections.png └── pyproject.toml /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skfoo/ComfyUI-Coziness/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skfoo/ComfyUI-Coziness/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MultiLoraLoader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skfoo/ComfyUI-Coziness/HEAD/MultiLoraLoader.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skfoo/ComfyUI-Coziness/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skfoo/ComfyUI-Coziness/HEAD/__init__.py -------------------------------------------------------------------------------- /docs/images/convert-to-input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skfoo/ComfyUI-Coziness/HEAD/docs/images/convert-to-input.png -------------------------------------------------------------------------------- /docs/images/lora-text-extractor-connections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skfoo/ComfyUI-Coziness/HEAD/docs/images/lora-text-extractor-connections.png -------------------------------------------------------------------------------- /docs/images/multilora-loader-connections.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skfoo/ComfyUI-Coziness/HEAD/docs/images/multilora-loader-connections.png -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/skfoo/ComfyUI-Coziness/HEAD/pyproject.toml --------------------------------------------------------------------------------