├── .github └── workflows │ └── publish.yml ├── .gitignore ├── AiHelper.py ├── Comfly.py ├── Comflyapi.json ├── LICENSE ├── README.md ├── __init__.py ├── docs └── mjstyle │ ├── mj_art.json │ └── mj_hd.json ├── pyproject.toml ├── requirements.txt ├── utils.py ├── web └── js │ ├── Comfly_manager.js │ ├── Comfly_mjstyle.js │ ├── chat_button.js │ ├── comfly.js │ ├── drag_handle.js │ ├── help_button.js │ └── split_image.js └── workflow ├── Comfly Doubao SeedEdit.json ├── ComflyGeminiAPI.json ├── Comfly_lip_sync.json ├── Comfly_mj.json ├── comfly-gemmi-editimage.json ├── comfly-gpt4o-api.json ├── comfly-kling-V1.0-text2video.json ├── comfly-kling-image2video.json └── comfly-kling-text2video.json /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ainewsto/Comfyui_Comfly/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ainewsto/Comfyui_Comfly/HEAD/.gitignore -------------------------------------------------------------------------------- /AiHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ainewsto/Comfyui_Comfly/HEAD/AiHelper.py -------------------------------------------------------------------------------- /Comfly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ainewsto/Comfyui_Comfly/HEAD/Comfly.py -------------------------------------------------------------------------------- /Comflyapi.json: -------------------------------------------------------------------------------- 1 | { 2 | "api_key": "" 3 | } 4 | 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ainewsto/Comfyui_Comfly/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ainewsto/Comfyui_Comfly/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ainewsto/Comfyui_Comfly/HEAD/__init__.py -------------------------------------------------------------------------------- /docs/mjstyle/mj_art.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ainewsto/Comfyui_Comfly/HEAD/docs/mjstyle/mj_art.json -------------------------------------------------------------------------------- /docs/mjstyle/mj_hd.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ainewsto/Comfyui_Comfly/HEAD/docs/mjstyle/mj_hd.json -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ainewsto/Comfyui_Comfly/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ainewsto/Comfyui_Comfly/HEAD/requirements.txt -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ainewsto/Comfyui_Comfly/HEAD/utils.py -------------------------------------------------------------------------------- /web/js/Comfly_manager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ainewsto/Comfyui_Comfly/HEAD/web/js/Comfly_manager.js -------------------------------------------------------------------------------- /web/js/Comfly_mjstyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ainewsto/Comfyui_Comfly/HEAD/web/js/Comfly_mjstyle.js -------------------------------------------------------------------------------- /web/js/chat_button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ainewsto/Comfyui_Comfly/HEAD/web/js/chat_button.js -------------------------------------------------------------------------------- /web/js/comfly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ainewsto/Comfyui_Comfly/HEAD/web/js/comfly.js -------------------------------------------------------------------------------- /web/js/drag_handle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ainewsto/Comfyui_Comfly/HEAD/web/js/drag_handle.js -------------------------------------------------------------------------------- /web/js/help_button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ainewsto/Comfyui_Comfly/HEAD/web/js/help_button.js -------------------------------------------------------------------------------- /web/js/split_image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ainewsto/Comfyui_Comfly/HEAD/web/js/split_image.js -------------------------------------------------------------------------------- /workflow/Comfly Doubao SeedEdit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ainewsto/Comfyui_Comfly/HEAD/workflow/Comfly Doubao SeedEdit.json -------------------------------------------------------------------------------- /workflow/ComflyGeminiAPI.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ainewsto/Comfyui_Comfly/HEAD/workflow/ComflyGeminiAPI.json -------------------------------------------------------------------------------- /workflow/Comfly_lip_sync.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ainewsto/Comfyui_Comfly/HEAD/workflow/Comfly_lip_sync.json -------------------------------------------------------------------------------- /workflow/Comfly_mj.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ainewsto/Comfyui_Comfly/HEAD/workflow/Comfly_mj.json -------------------------------------------------------------------------------- /workflow/comfly-gemmi-editimage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ainewsto/Comfyui_Comfly/HEAD/workflow/comfly-gemmi-editimage.json -------------------------------------------------------------------------------- /workflow/comfly-gpt4o-api.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ainewsto/Comfyui_Comfly/HEAD/workflow/comfly-gpt4o-api.json -------------------------------------------------------------------------------- /workflow/comfly-kling-V1.0-text2video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ainewsto/Comfyui_Comfly/HEAD/workflow/comfly-kling-V1.0-text2video.json -------------------------------------------------------------------------------- /workflow/comfly-kling-image2video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ainewsto/Comfyui_Comfly/HEAD/workflow/comfly-kling-image2video.json -------------------------------------------------------------------------------- /workflow/comfly-kling-text2video.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ainewsto/Comfyui_Comfly/HEAD/workflow/comfly-kling-text2video.json --------------------------------------------------------------------------------