├── .gitattributes ├── .github └── workflows │ └── publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── README_EN.md ├── __init__.py ├── image ├── Snipaste_2025-01-30_20-05-20.png └── WechatIMG38376.jpg ├── nodes ├── minicpm_o_image.py ├── minicpm_o_image_analyzer.py └── minicpm_o_loader.py ├── pyproject.toml ├── requirements.txt └── workflow └── MiniCPM-o-V1.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CY-CHENYUE/ComfyUI-MiniCPM-o/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CY-CHENYUE/ComfyUI-MiniCPM-o/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CY-CHENYUE/ComfyUI-MiniCPM-o/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CY-CHENYUE/ComfyUI-MiniCPM-o/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CY-CHENYUE/ComfyUI-MiniCPM-o/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CY-CHENYUE/ComfyUI-MiniCPM-o/HEAD/README_EN.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CY-CHENYUE/ComfyUI-MiniCPM-o/HEAD/__init__.py -------------------------------------------------------------------------------- /image/Snipaste_2025-01-30_20-05-20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CY-CHENYUE/ComfyUI-MiniCPM-o/HEAD/image/Snipaste_2025-01-30_20-05-20.png -------------------------------------------------------------------------------- /image/WechatIMG38376.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CY-CHENYUE/ComfyUI-MiniCPM-o/HEAD/image/WechatIMG38376.jpg -------------------------------------------------------------------------------- /nodes/minicpm_o_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CY-CHENYUE/ComfyUI-MiniCPM-o/HEAD/nodes/minicpm_o_image.py -------------------------------------------------------------------------------- /nodes/minicpm_o_image_analyzer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CY-CHENYUE/ComfyUI-MiniCPM-o/HEAD/nodes/minicpm_o_image_analyzer.py -------------------------------------------------------------------------------- /nodes/minicpm_o_loader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CY-CHENYUE/ComfyUI-MiniCPM-o/HEAD/nodes/minicpm_o_loader.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CY-CHENYUE/ComfyUI-MiniCPM-o/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | librosa 2 | accelerate>=0.26.0 3 | vector-quantize-pytorch 4 | vocos -------------------------------------------------------------------------------- /workflow/MiniCPM-o-V1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CY-CHENYUE/ComfyUI-MiniCPM-o/HEAD/workflow/MiniCPM-o-V1.png --------------------------------------------------------------------------------