├── .github └── workflows │ └── publish.yml ├── LICENSE ├── README.md ├── __init__.py ├── comfyui_imagefx.py ├── comfyui_whisk.py ├── googel.json ├── pyproject.toml ├── requirements.txt ├── utils.py └── workflows ├── ComfyUI-ImageFx.json ├── ComfyUI-Whisk&ImageFx.json └── ComfyUI-Whisk.json /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ainewsto/comfyui-labs-google/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ainewsto/comfyui-labs-google/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ainewsto/comfyui-labs-google/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ainewsto/comfyui-labs-google/HEAD/__init__.py -------------------------------------------------------------------------------- /comfyui_imagefx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ainewsto/comfyui-labs-google/HEAD/comfyui_imagefx.py -------------------------------------------------------------------------------- /comfyui_whisk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ainewsto/comfyui-labs-google/HEAD/comfyui_whisk.py -------------------------------------------------------------------------------- /googel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ainewsto/comfyui-labs-google/HEAD/googel.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ainewsto/comfyui-labs-google/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | pillow 3 | chardet 4 | -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ainewsto/comfyui-labs-google/HEAD/utils.py -------------------------------------------------------------------------------- /workflows/ComfyUI-ImageFx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ainewsto/comfyui-labs-google/HEAD/workflows/ComfyUI-ImageFx.json -------------------------------------------------------------------------------- /workflows/ComfyUI-Whisk&ImageFx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ainewsto/comfyui-labs-google/HEAD/workflows/ComfyUI-Whisk&ImageFx.json -------------------------------------------------------------------------------- /workflows/ComfyUI-Whisk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ainewsto/comfyui-labs-google/HEAD/workflows/ComfyUI-Whisk.json --------------------------------------------------------------------------------