├── .github └── workflows │ └── publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── __init__.py ├── config.ini ├── nodes ├── api_node.py ├── base.py ├── config.py ├── config_node.py ├── finetune.py └── status.py ├── pyproject.toml ├── requirements.txt └── workflows ├── BFL-API-finetune.json ├── BFL-API-tools.json └── BFL-API-workflow.json /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelasdev/ComfyUI-FLUX-BFL-API/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelasdev/ComfyUI-FLUX-BFL-API/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelasdev/ComfyUI-FLUX-BFL-API/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelasdev/ComfyUI-FLUX-BFL-API/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelasdev/ComfyUI-FLUX-BFL-API/HEAD/__init__.py -------------------------------------------------------------------------------- /config.ini: -------------------------------------------------------------------------------- 1 | [API] 2 | X_KEY = your-key 3 | BASE_URL = https://api.bfl.ml/v1/ -------------------------------------------------------------------------------- /nodes/api_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelasdev/ComfyUI-FLUX-BFL-API/HEAD/nodes/api_node.py -------------------------------------------------------------------------------- /nodes/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelasdev/ComfyUI-FLUX-BFL-API/HEAD/nodes/base.py -------------------------------------------------------------------------------- /nodes/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelasdev/ComfyUI-FLUX-BFL-API/HEAD/nodes/config.py -------------------------------------------------------------------------------- /nodes/config_node.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelasdev/ComfyUI-FLUX-BFL-API/HEAD/nodes/config_node.py -------------------------------------------------------------------------------- /nodes/finetune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelasdev/ComfyUI-FLUX-BFL-API/HEAD/nodes/finetune.py -------------------------------------------------------------------------------- /nodes/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelasdev/ComfyUI-FLUX-BFL-API/HEAD/nodes/status.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelasdev/ComfyUI-FLUX-BFL-API/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | torch -------------------------------------------------------------------------------- /workflows/BFL-API-finetune.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelasdev/ComfyUI-FLUX-BFL-API/HEAD/workflows/BFL-API-finetune.json -------------------------------------------------------------------------------- /workflows/BFL-API-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelasdev/ComfyUI-FLUX-BFL-API/HEAD/workflows/BFL-API-tools.json -------------------------------------------------------------------------------- /workflows/BFL-API-workflow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gelasdev/ComfyUI-FLUX-BFL-API/HEAD/workflows/BFL-API-workflow.json --------------------------------------------------------------------------------