Diffusers How to use davisbro/flux-multi-angle 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("davisbro/flux-multi-angle")
prompt = "A TOK composite photo of a person posing at different angles, wearing a leather black jacket and graphic t-shirt, long black flaming cargo pants, blond hair, 90s, Y2K, dark eyeshadow, black boots, white background with geometric shapes sparkles, expressive emotion, different perspectives"
image = pipe(prompt).images[0]