nemoooooooooo
nemoooooooooo
> Have you tried using `ChatOpenAI` and also using `SystemMessage` as the message? i have tried that and it's clearly not working. I am not a 100% sure about it...
@darhsu try this: base_model = 'black-forest-labs/FLUX.1-dev' controlnet_model_union = 'InstantX/FLUX.1-dev-Controlnet-Union' controlnet_union = FluxControlNetModel.from_pretrained(controlnet_model_union, torch_dtype=torch.bfloat16) controlnet = FluxMultiControlNetModel([controlnet_union]) # we always recommend loading via FluxMultiControlNetModel controlnet.config = controlnet_union.config pipe = FluxControlNetPipeline.from_pretrained(base_model, controlnet=controlnet,...