Diffusers How to use strangerzonehf/Flux-NFTv4-Designs-LoRA 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("strangerzonehf/Flux-NFTv4-Designs-LoRA")
prompt = "NFT V4, Captured at eye-level, a close-up shot of a cats face is depicted. The cats fur is a vibrant shade of pink, with a mix of brown and yellow. The eyes are tinted black, with yellow accents. The ears of the cat are a light pink, and the cats nose is a darker pink. The background is a dark brown, adding a pop of color to the scene."
image = pipe(prompt).images[0]