├── .github └── workflows │ └── publish.yml ├── .gitignore ├── .vscode └── settings.json ├── LICENSE ├── README.md ├── __init__.py ├── config.ini ├── example_workflows ├── Flux-Kontext-Workflow.json ├── Flux-v1-Fill.json ├── Nano-Banana-Pro-14_Images.json ├── Video-Bria-Increase-Resolution.json ├── Video-Seedvr-Upscale.json └── Video-Workflow-Veo2.json ├── nodes ├── fal_utils.py ├── image_node.py ├── llm_node.py ├── trainer_node.py ├── upscaler_node.py ├── video_node.py └── vlm_node.py ├── pyproject.toml └── requirements.txt /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokayfem/ComfyUI-fal-API/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokayfem/ComfyUI-fal-API/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokayfem/ComfyUI-fal-API/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokayfem/ComfyUI-fal-API/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokayfem/ComfyUI-fal-API/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokayfem/ComfyUI-fal-API/HEAD/__init__.py -------------------------------------------------------------------------------- /config.ini: -------------------------------------------------------------------------------- 1 | [API] 2 | FAL_KEY = -------------------------------------------------------------------------------- /example_workflows/Flux-Kontext-Workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokayfem/ComfyUI-fal-API/HEAD/example_workflows/Flux-Kontext-Workflow.json -------------------------------------------------------------------------------- /example_workflows/Flux-v1-Fill.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokayfem/ComfyUI-fal-API/HEAD/example_workflows/Flux-v1-Fill.json -------------------------------------------------------------------------------- /example_workflows/Nano-Banana-Pro-14_Images.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokayfem/ComfyUI-fal-API/HEAD/example_workflows/Nano-Banana-Pro-14_Images.json -------------------------------------------------------------------------------- /example_workflows/Video-Bria-Increase-Resolution.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokayfem/ComfyUI-fal-API/HEAD/example_workflows/Video-Bria-Increase-Resolution.json -------------------------------------------------------------------------------- /example_workflows/Video-Seedvr-Upscale.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokayfem/ComfyUI-fal-API/HEAD/example_workflows/Video-Seedvr-Upscale.json -------------------------------------------------------------------------------- /example_workflows/Video-Workflow-Veo2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokayfem/ComfyUI-fal-API/HEAD/example_workflows/Video-Workflow-Veo2.json -------------------------------------------------------------------------------- /nodes/fal_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokayfem/ComfyUI-fal-API/HEAD/nodes/fal_utils.py -------------------------------------------------------------------------------- /nodes/image_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokayfem/ComfyUI-fal-API/HEAD/nodes/image_node.py -------------------------------------------------------------------------------- /nodes/llm_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokayfem/ComfyUI-fal-API/HEAD/nodes/llm_node.py -------------------------------------------------------------------------------- /nodes/trainer_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokayfem/ComfyUI-fal-API/HEAD/nodes/trainer_node.py -------------------------------------------------------------------------------- /nodes/upscaler_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokayfem/ComfyUI-fal-API/HEAD/nodes/upscaler_node.py -------------------------------------------------------------------------------- /nodes/video_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokayfem/ComfyUI-fal-API/HEAD/nodes/video_node.py -------------------------------------------------------------------------------- /nodes/vlm_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokayfem/ComfyUI-fal-API/HEAD/nodes/vlm_node.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gokayfem/ComfyUI-fal-API/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | fal-client 2 | torch 3 | opencv-python 4 | --------------------------------------------------------------------------------