├── .github └── workflows │ └── publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── image └── cogview4_wrapper_example.jpg ├── py └── cogview4.py ├── pyproject.toml └── requirements.txt /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chflame163/ComfyUI_CogView4_Wrapper/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _test_*.* 2 | __pycache__ 3 | .venv 4 | .idea 5 | *.pth 6 | *.ini 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chflame163/ComfyUI_CogView4_Wrapper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chflame163/ComfyUI_CogView4_Wrapper/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chflame163/ComfyUI_CogView4_Wrapper/HEAD/__init__.py -------------------------------------------------------------------------------- /image/cogview4_wrapper_example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chflame163/ComfyUI_CogView4_Wrapper/HEAD/image/cogview4_wrapper_example.jpg -------------------------------------------------------------------------------- /py/cogview4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chflame163/ComfyUI_CogView4_Wrapper/HEAD/py/cogview4.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chflame163/ComfyUI_CogView4_Wrapper/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chflame163/ComfyUI_CogView4_Wrapper/HEAD/requirements.txt --------------------------------------------------------------------------------