├── .github └── workflows │ └── publish.yml ├── .gitignore ├── ComfyUI_IPAdapter_plus ├── CrossAttentionPatch.py ├── IPAdapterPlus.py ├── image_proj_models.py └── utils.py ├── LICENSE ├── README.md ├── __init__.py ├── chatglm3 ├── __init__.py ├── configuration_chatglm.py ├── modeling_chatglm.py ├── quantization.py └── tokenization_chatglm.py ├── clip_vit_336 └── config.json ├── configs ├── text_encoder_config.json └── tokenizer │ ├── tokenizer.model │ ├── tokenizer_config.json │ └── vocab.txt ├── examples ├── workflow_controlnet.png ├── workflow_inpainting.png ├── workflow_ipa.png ├── workflow_ipa_faceid.png ├── workflow_ipa_legacy.png ├── workflow_legacy.png ├── workflow_official_controlnet.png └── workflow_same_seed_test.png ├── hook_comfyui_kolors_v1.py ├── hook_comfyui_kolors_v2.py ├── mz_kolors_core.py ├── mz_kolors_legacy.py ├── mz_kolors_utils.py └── pyproject.toml /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiwangsimple/ComfyUI-Kolors-MZ-mac/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiwangsimple/ComfyUI-Kolors-MZ-mac/HEAD/.gitignore -------------------------------------------------------------------------------- /ComfyUI_IPAdapter_plus/CrossAttentionPatch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiwangsimple/ComfyUI-Kolors-MZ-mac/HEAD/ComfyUI_IPAdapter_plus/CrossAttentionPatch.py -------------------------------------------------------------------------------- /ComfyUI_IPAdapter_plus/IPAdapterPlus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiwangsimple/ComfyUI-Kolors-MZ-mac/HEAD/ComfyUI_IPAdapter_plus/IPAdapterPlus.py -------------------------------------------------------------------------------- /ComfyUI_IPAdapter_plus/image_proj_models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiwangsimple/ComfyUI-Kolors-MZ-mac/HEAD/ComfyUI_IPAdapter_plus/image_proj_models.py -------------------------------------------------------------------------------- /ComfyUI_IPAdapter_plus/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiwangsimple/ComfyUI-Kolors-MZ-mac/HEAD/ComfyUI_IPAdapter_plus/utils.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiwangsimple/ComfyUI-Kolors-MZ-mac/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiwangsimple/ComfyUI-Kolors-MZ-mac/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiwangsimple/ComfyUI-Kolors-MZ-mac/HEAD/__init__.py -------------------------------------------------------------------------------- /chatglm3/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /chatglm3/configuration_chatglm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiwangsimple/ComfyUI-Kolors-MZ-mac/HEAD/chatglm3/configuration_chatglm.py -------------------------------------------------------------------------------- /chatglm3/modeling_chatglm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiwangsimple/ComfyUI-Kolors-MZ-mac/HEAD/chatglm3/modeling_chatglm.py -------------------------------------------------------------------------------- /chatglm3/quantization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiwangsimple/ComfyUI-Kolors-MZ-mac/HEAD/chatglm3/quantization.py -------------------------------------------------------------------------------- /chatglm3/tokenization_chatglm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiwangsimple/ComfyUI-Kolors-MZ-mac/HEAD/chatglm3/tokenization_chatglm.py -------------------------------------------------------------------------------- /clip_vit_336/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiwangsimple/ComfyUI-Kolors-MZ-mac/HEAD/clip_vit_336/config.json -------------------------------------------------------------------------------- /configs/text_encoder_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiwangsimple/ComfyUI-Kolors-MZ-mac/HEAD/configs/text_encoder_config.json -------------------------------------------------------------------------------- /configs/tokenizer/tokenizer.model: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiwangsimple/ComfyUI-Kolors-MZ-mac/HEAD/configs/tokenizer/tokenizer.model -------------------------------------------------------------------------------- /configs/tokenizer/tokenizer_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiwangsimple/ComfyUI-Kolors-MZ-mac/HEAD/configs/tokenizer/tokenizer_config.json -------------------------------------------------------------------------------- /configs/tokenizer/vocab.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiwangsimple/ComfyUI-Kolors-MZ-mac/HEAD/configs/tokenizer/vocab.txt -------------------------------------------------------------------------------- /examples/workflow_controlnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiwangsimple/ComfyUI-Kolors-MZ-mac/HEAD/examples/workflow_controlnet.png -------------------------------------------------------------------------------- /examples/workflow_inpainting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiwangsimple/ComfyUI-Kolors-MZ-mac/HEAD/examples/workflow_inpainting.png -------------------------------------------------------------------------------- /examples/workflow_ipa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiwangsimple/ComfyUI-Kolors-MZ-mac/HEAD/examples/workflow_ipa.png -------------------------------------------------------------------------------- /examples/workflow_ipa_faceid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiwangsimple/ComfyUI-Kolors-MZ-mac/HEAD/examples/workflow_ipa_faceid.png -------------------------------------------------------------------------------- /examples/workflow_ipa_legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiwangsimple/ComfyUI-Kolors-MZ-mac/HEAD/examples/workflow_ipa_legacy.png -------------------------------------------------------------------------------- /examples/workflow_legacy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiwangsimple/ComfyUI-Kolors-MZ-mac/HEAD/examples/workflow_legacy.png -------------------------------------------------------------------------------- /examples/workflow_official_controlnet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiwangsimple/ComfyUI-Kolors-MZ-mac/HEAD/examples/workflow_official_controlnet.png -------------------------------------------------------------------------------- /examples/workflow_same_seed_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiwangsimple/ComfyUI-Kolors-MZ-mac/HEAD/examples/workflow_same_seed_test.png -------------------------------------------------------------------------------- /hook_comfyui_kolors_v1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiwangsimple/ComfyUI-Kolors-MZ-mac/HEAD/hook_comfyui_kolors_v1.py -------------------------------------------------------------------------------- /hook_comfyui_kolors_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiwangsimple/ComfyUI-Kolors-MZ-mac/HEAD/hook_comfyui_kolors_v2.py -------------------------------------------------------------------------------- /mz_kolors_core.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiwangsimple/ComfyUI-Kolors-MZ-mac/HEAD/mz_kolors_core.py -------------------------------------------------------------------------------- /mz_kolors_legacy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiwangsimple/ComfyUI-Kolors-MZ-mac/HEAD/mz_kolors_legacy.py -------------------------------------------------------------------------------- /mz_kolors_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiwangsimple/ComfyUI-Kolors-MZ-mac/HEAD/mz_kolors_utils.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yiwangsimple/ComfyUI-Kolors-MZ-mac/HEAD/pyproject.toml --------------------------------------------------------------------------------