├── .github └── workflows │ └── publish.yml ├── .gitignore ├── LICENSE ├── __init__.py ├── install.py ├── js └── text_display_node.js ├── minicpm3_4b_GPTQ_int4_node.py ├── minicpm3_4b_node.py ├── minicpm_v_2_6_int_4_node.py ├── minicpm_v_2_6_node.py ├── pyproject.toml ├── readme.md ├── requirements.txt └── text_display_node.py /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CY-CHENYUE/ComfyUI-MiniCPM-Plus/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CY-CHENYUE/ComfyUI-MiniCPM-Plus/HEAD/LICENSE -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CY-CHENYUE/ComfyUI-MiniCPM-Plus/HEAD/__init__.py -------------------------------------------------------------------------------- /install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CY-CHENYUE/ComfyUI-MiniCPM-Plus/HEAD/install.py -------------------------------------------------------------------------------- /js/text_display_node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CY-CHENYUE/ComfyUI-MiniCPM-Plus/HEAD/js/text_display_node.js -------------------------------------------------------------------------------- /minicpm3_4b_GPTQ_int4_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CY-CHENYUE/ComfyUI-MiniCPM-Plus/HEAD/minicpm3_4b_GPTQ_int4_node.py -------------------------------------------------------------------------------- /minicpm3_4b_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CY-CHENYUE/ComfyUI-MiniCPM-Plus/HEAD/minicpm3_4b_node.py -------------------------------------------------------------------------------- /minicpm_v_2_6_int_4_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CY-CHENYUE/ComfyUI-MiniCPM-Plus/HEAD/minicpm_v_2_6_int_4_node.py -------------------------------------------------------------------------------- /minicpm_v_2_6_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CY-CHENYUE/ComfyUI-MiniCPM-Plus/HEAD/minicpm_v_2_6_node.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CY-CHENYUE/ComfyUI-MiniCPM-Plus/HEAD/pyproject.toml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CY-CHENYUE/ComfyUI-MiniCPM-Plus/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CY-CHENYUE/ComfyUI-MiniCPM-Plus/HEAD/requirements.txt -------------------------------------------------------------------------------- /text_display_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CY-CHENYUE/ComfyUI-MiniCPM-Plus/HEAD/text_display_node.py --------------------------------------------------------------------------------