├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── assets └── luma_logo.png ├── config.ini ├── py ├── imgbb_node.py ├── luma_nodes.py └── lumaai_api_node.py ├── pyproject.toml ├── requirements.txt ├── web └── js │ ├── previewVideo.js │ └── showGenerationId.js └── workflows ├── AddAudio2Video.json ├── ExtendingGeneration.json ├── Image2Video.json ├── Ray2Text2Video.json ├── Text2Video.json ├── Upscale.json ├── char_ref.json ├── img_ref.json ├── modify_image.json ├── style_ref.json └── text2img.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumalabs/ComfyUI-LumaAI-API/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumalabs/ComfyUI-LumaAI-API/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumalabs/ComfyUI-LumaAI-API/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumalabs/ComfyUI-LumaAI-API/HEAD/__init__.py -------------------------------------------------------------------------------- /assets/luma_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumalabs/ComfyUI-LumaAI-API/HEAD/assets/luma_logo.png -------------------------------------------------------------------------------- /config.ini: -------------------------------------------------------------------------------- 1 | [API] 2 | LUMAAI_API_KEY = -------------------------------------------------------------------------------- /py/imgbb_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumalabs/ComfyUI-LumaAI-API/HEAD/py/imgbb_node.py -------------------------------------------------------------------------------- /py/luma_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumalabs/ComfyUI-LumaAI-API/HEAD/py/luma_nodes.py -------------------------------------------------------------------------------- /py/lumaai_api_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumalabs/ComfyUI-LumaAI-API/HEAD/py/lumaai_api_node.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumalabs/ComfyUI-LumaAI-API/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | lumaai==1.7.0 2 | requests 3 | numpy 4 | Pillow -------------------------------------------------------------------------------- /web/js/previewVideo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumalabs/ComfyUI-LumaAI-API/HEAD/web/js/previewVideo.js -------------------------------------------------------------------------------- /web/js/showGenerationId.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumalabs/ComfyUI-LumaAI-API/HEAD/web/js/showGenerationId.js -------------------------------------------------------------------------------- /workflows/AddAudio2Video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumalabs/ComfyUI-LumaAI-API/HEAD/workflows/AddAudio2Video.json -------------------------------------------------------------------------------- /workflows/ExtendingGeneration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumalabs/ComfyUI-LumaAI-API/HEAD/workflows/ExtendingGeneration.json -------------------------------------------------------------------------------- /workflows/Image2Video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumalabs/ComfyUI-LumaAI-API/HEAD/workflows/Image2Video.json -------------------------------------------------------------------------------- /workflows/Ray2Text2Video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumalabs/ComfyUI-LumaAI-API/HEAD/workflows/Ray2Text2Video.json -------------------------------------------------------------------------------- /workflows/Text2Video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumalabs/ComfyUI-LumaAI-API/HEAD/workflows/Text2Video.json -------------------------------------------------------------------------------- /workflows/Upscale.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumalabs/ComfyUI-LumaAI-API/HEAD/workflows/Upscale.json -------------------------------------------------------------------------------- /workflows/char_ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumalabs/ComfyUI-LumaAI-API/HEAD/workflows/char_ref.json -------------------------------------------------------------------------------- /workflows/img_ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumalabs/ComfyUI-LumaAI-API/HEAD/workflows/img_ref.json -------------------------------------------------------------------------------- /workflows/modify_image.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumalabs/ComfyUI-LumaAI-API/HEAD/workflows/modify_image.json -------------------------------------------------------------------------------- /workflows/style_ref.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumalabs/ComfyUI-LumaAI-API/HEAD/workflows/style_ref.json -------------------------------------------------------------------------------- /workflows/text2img.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lumalabs/ComfyUI-LumaAI-API/HEAD/workflows/text2img.json --------------------------------------------------------------------------------