├── .github └── workflows │ └── publish.yml ├── LICENSE ├── README.md ├── STABILITY_AI_COMMUNITY_LICENSE ├── __init__.py ├── example_workflows └── tangoflux_example.json ├── install.py ├── nodes.py ├── pyproject.toml ├── requirements.txt ├── server.py ├── tangoflux ├── __init__.py └── model.py └── web └── js └── playAudio.js /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucipherDev/ComfyUI-TangoFlux/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucipherDev/ComfyUI-TangoFlux/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucipherDev/ComfyUI-TangoFlux/HEAD/README.md -------------------------------------------------------------------------------- /STABILITY_AI_COMMUNITY_LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucipherDev/ComfyUI-TangoFlux/HEAD/STABILITY_AI_COMMUNITY_LICENSE -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucipherDev/ComfyUI-TangoFlux/HEAD/__init__.py -------------------------------------------------------------------------------- /example_workflows/tangoflux_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucipherDev/ComfyUI-TangoFlux/HEAD/example_workflows/tangoflux_example.json -------------------------------------------------------------------------------- /install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucipherDev/ComfyUI-TangoFlux/HEAD/install.py -------------------------------------------------------------------------------- /nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucipherDev/ComfyUI-TangoFlux/HEAD/nodes.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucipherDev/ComfyUI-TangoFlux/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | torchaudio 2 | diffusers 3 | accelerate 4 | tqdm -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucipherDev/ComfyUI-TangoFlux/HEAD/server.py -------------------------------------------------------------------------------- /tangoflux/__init__.py: -------------------------------------------------------------------------------- 1 | # Code from https://github.com/declare-lab/TangoFlux -------------------------------------------------------------------------------- /tangoflux/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucipherDev/ComfyUI-TangoFlux/HEAD/tangoflux/model.py -------------------------------------------------------------------------------- /web/js/playAudio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucipherDev/ComfyUI-TangoFlux/HEAD/web/js/playAudio.js --------------------------------------------------------------------------------