├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── requirements.txt ├── veo_api.py ├── veo_nodes.py ├── web ├── css │ └── veo_styles.css └── js │ └── veo_nodes.js └── workflow └── Veo2_ComfyUI.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShmuelRonen/ComfyUI-Veo2-Experimental/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShmuelRonen/ComfyUI-Veo2-Experimental/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShmuelRonen/ComfyUI-Veo2-Experimental/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShmuelRonen/ComfyUI-Veo2-Experimental/HEAD/__init__.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | google-genai>=0.2.0 2 | -------------------------------------------------------------------------------- /veo_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShmuelRonen/ComfyUI-Veo2-Experimental/HEAD/veo_api.py -------------------------------------------------------------------------------- /veo_nodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShmuelRonen/ComfyUI-Veo2-Experimental/HEAD/veo_nodes.py -------------------------------------------------------------------------------- /web/css/veo_styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShmuelRonen/ComfyUI-Veo2-Experimental/HEAD/web/css/veo_styles.css -------------------------------------------------------------------------------- /web/js/veo_nodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShmuelRonen/ComfyUI-Veo2-Experimental/HEAD/web/js/veo_nodes.js -------------------------------------------------------------------------------- /workflow/Veo2_ComfyUI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShmuelRonen/ComfyUI-Veo2-Experimental/HEAD/workflow/Veo2_ComfyUI.json --------------------------------------------------------------------------------