├── .github └── workflows │ └── publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── assets ├── compare_flux.png ├── compare_flux_kontext.png ├── compare_hidream_i1_dev.png ├── compare_hidream_i1_fast.png ├── compare_hidream_i1_full.png ├── compare_lumina_image_2.png ├── compare_pulid_flux.png ├── compile.png ├── einstein.jpg ├── fennec_girl_sing.png └── flux_dev_example.png ├── examples ├── cogvideox.json ├── flux.json ├── flux_kontext.json ├── hidream_i1_dev.json ├── hidream_i1_fast.json ├── hidream_i1_full.json ├── hunyuanvideo.json ├── ltx_video.json ├── lumina_image_2.json ├── pulid_flux.json ├── wan2.1_i2v.json └── wan2.1_t2v.json ├── models └── cogvideox │ ├── custom_cogvideox_transformer_3d.py │ ├── embeddings.py │ └── enhance_a_video │ ├── __init__.py │ ├── enhance.py │ └── globals.py ├── nodes.py ├── nodes_diffusers.py ├── pyproject.toml └── requirements.txt /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welltop-cn/ComfyUI-TeaCache/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welltop-cn/ComfyUI-TeaCache/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welltop-cn/ComfyUI-TeaCache/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welltop-cn/ComfyUI-TeaCache/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welltop-cn/ComfyUI-TeaCache/HEAD/__init__.py -------------------------------------------------------------------------------- /assets/compare_flux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welltop-cn/ComfyUI-TeaCache/HEAD/assets/compare_flux.png -------------------------------------------------------------------------------- /assets/compare_flux_kontext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welltop-cn/ComfyUI-TeaCache/HEAD/assets/compare_flux_kontext.png -------------------------------------------------------------------------------- /assets/compare_hidream_i1_dev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welltop-cn/ComfyUI-TeaCache/HEAD/assets/compare_hidream_i1_dev.png -------------------------------------------------------------------------------- /assets/compare_hidream_i1_fast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welltop-cn/ComfyUI-TeaCache/HEAD/assets/compare_hidream_i1_fast.png -------------------------------------------------------------------------------- /assets/compare_hidream_i1_full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welltop-cn/ComfyUI-TeaCache/HEAD/assets/compare_hidream_i1_full.png -------------------------------------------------------------------------------- /assets/compare_lumina_image_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welltop-cn/ComfyUI-TeaCache/HEAD/assets/compare_lumina_image_2.png -------------------------------------------------------------------------------- /assets/compare_pulid_flux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welltop-cn/ComfyUI-TeaCache/HEAD/assets/compare_pulid_flux.png -------------------------------------------------------------------------------- /assets/compile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welltop-cn/ComfyUI-TeaCache/HEAD/assets/compile.png -------------------------------------------------------------------------------- /assets/einstein.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welltop-cn/ComfyUI-TeaCache/HEAD/assets/einstein.jpg -------------------------------------------------------------------------------- /assets/fennec_girl_sing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welltop-cn/ComfyUI-TeaCache/HEAD/assets/fennec_girl_sing.png -------------------------------------------------------------------------------- /assets/flux_dev_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welltop-cn/ComfyUI-TeaCache/HEAD/assets/flux_dev_example.png -------------------------------------------------------------------------------- /examples/cogvideox.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welltop-cn/ComfyUI-TeaCache/HEAD/examples/cogvideox.json -------------------------------------------------------------------------------- /examples/flux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welltop-cn/ComfyUI-TeaCache/HEAD/examples/flux.json -------------------------------------------------------------------------------- /examples/flux_kontext.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welltop-cn/ComfyUI-TeaCache/HEAD/examples/flux_kontext.json -------------------------------------------------------------------------------- /examples/hidream_i1_dev.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welltop-cn/ComfyUI-TeaCache/HEAD/examples/hidream_i1_dev.json -------------------------------------------------------------------------------- /examples/hidream_i1_fast.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welltop-cn/ComfyUI-TeaCache/HEAD/examples/hidream_i1_fast.json -------------------------------------------------------------------------------- /examples/hidream_i1_full.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welltop-cn/ComfyUI-TeaCache/HEAD/examples/hidream_i1_full.json -------------------------------------------------------------------------------- /examples/hunyuanvideo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welltop-cn/ComfyUI-TeaCache/HEAD/examples/hunyuanvideo.json -------------------------------------------------------------------------------- /examples/ltx_video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welltop-cn/ComfyUI-TeaCache/HEAD/examples/ltx_video.json -------------------------------------------------------------------------------- /examples/lumina_image_2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welltop-cn/ComfyUI-TeaCache/HEAD/examples/lumina_image_2.json -------------------------------------------------------------------------------- /examples/pulid_flux.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welltop-cn/ComfyUI-TeaCache/HEAD/examples/pulid_flux.json -------------------------------------------------------------------------------- /examples/wan2.1_i2v.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welltop-cn/ComfyUI-TeaCache/HEAD/examples/wan2.1_i2v.json -------------------------------------------------------------------------------- /examples/wan2.1_t2v.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welltop-cn/ComfyUI-TeaCache/HEAD/examples/wan2.1_t2v.json -------------------------------------------------------------------------------- /models/cogvideox/custom_cogvideox_transformer_3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welltop-cn/ComfyUI-TeaCache/HEAD/models/cogvideox/custom_cogvideox_transformer_3d.py -------------------------------------------------------------------------------- /models/cogvideox/embeddings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welltop-cn/ComfyUI-TeaCache/HEAD/models/cogvideox/embeddings.py -------------------------------------------------------------------------------- /models/cogvideox/enhance_a_video/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/cogvideox/enhance_a_video/enhance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welltop-cn/ComfyUI-TeaCache/HEAD/models/cogvideox/enhance_a_video/enhance.py -------------------------------------------------------------------------------- /models/cogvideox/enhance_a_video/globals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welltop-cn/ComfyUI-TeaCache/HEAD/models/cogvideox/enhance_a_video/globals.py -------------------------------------------------------------------------------- /nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welltop-cn/ComfyUI-TeaCache/HEAD/nodes.py -------------------------------------------------------------------------------- /nodes_diffusers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welltop-cn/ComfyUI-TeaCache/HEAD/nodes_diffusers.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welltop-cn/ComfyUI-TeaCache/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/welltop-cn/ComfyUI-TeaCache/HEAD/requirements.txt --------------------------------------------------------------------------------