Diffusers How to use Hack337/flux-lora-Winky with Diffusers:
pip install -U diffusers transformers accelerate
import torch
from diffusers import DiffusionPipeline
# switch to "mps" for apple devices
pipe = DiffusionPipeline.from_pretrained("black-forest-labs/FLUX.1-dev", dtype=torch.bfloat16, device_map="cuda")
pipe.load_lora_weights("Hack337/flux-lora-Winky")
prompt = "winky cat sitting atop a wooden box with the word \"Winky\" written on it, The cat is wearing a pink bow tie, and in the background there is a wall"
image = pipe(prompt).images[0]