Diffusers How to use strangerzonehf/Aura-Lights 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/Aura-Lights")
prompt = "aura lights, a vibrant black smiley face is adorned with a glowing circle of light. The face is encircled by a pair of shiny, shiny hands, adding a touch of warmth to the scene. The background is a solid black, creating a stark contrast to the black figure. The figures arms and hands are positioned in a way that creates a sense of balance, adding depth to the composition."
image = pipe(prompt).images[0]