├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── assets ├── show_1.png ├── show_2.png └── show_3.png ├── dreamo ├── dreamo_pipeline.py ├── transformer.py └── utils.py ├── nodes └── comfy_nodes.py ├── requirements.txt ├── tools └── BEN2.py └── workflow └── dreamo.json /.gitignore: -------------------------------------------------------------------------------- 1 | dev_notes 2 | pushgit.bat 3 | __pycache__ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jax-explorer/ComfyUI-DreamO/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jax-explorer/ComfyUI-DreamO/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jax-explorer/ComfyUI-DreamO/HEAD/__init__.py -------------------------------------------------------------------------------- /assets/show_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jax-explorer/ComfyUI-DreamO/HEAD/assets/show_1.png -------------------------------------------------------------------------------- /assets/show_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jax-explorer/ComfyUI-DreamO/HEAD/assets/show_2.png -------------------------------------------------------------------------------- /assets/show_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jax-explorer/ComfyUI-DreamO/HEAD/assets/show_3.png -------------------------------------------------------------------------------- /dreamo/dreamo_pipeline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jax-explorer/ComfyUI-DreamO/HEAD/dreamo/dreamo_pipeline.py -------------------------------------------------------------------------------- /dreamo/transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jax-explorer/ComfyUI-DreamO/HEAD/dreamo/transformer.py -------------------------------------------------------------------------------- /dreamo/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jax-explorer/ComfyUI-DreamO/HEAD/dreamo/utils.py -------------------------------------------------------------------------------- /nodes/comfy_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jax-explorer/ComfyUI-DreamO/HEAD/nodes/comfy_nodes.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jax-explorer/ComfyUI-DreamO/HEAD/requirements.txt -------------------------------------------------------------------------------- /tools/BEN2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jax-explorer/ComfyUI-DreamO/HEAD/tools/BEN2.py -------------------------------------------------------------------------------- /workflow/dreamo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jax-explorer/ComfyUI-DreamO/HEAD/workflow/dreamo.json --------------------------------------------------------------------------------