Diffusers How to use ControlNetLoRA/FLUX.1-dev with Diffusers:
pip install -U diffusers transformers accelerate
from diffusers import ControlNetModel, StableDiffusionControlNetPipeline
controlnet = ControlNetModel.from_pretrained("ControlNetLoRA/FLUX.1-dev")
pipe = StableDiffusionControlNetPipeline.from_pretrained(
"black-forest-labs/flux.1-dev", controlnet=controlnet
)