Diffusers How to use DavidBaloches/NouvaLume 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("DavidBaloches/NouvaLume")
prompt = "professional 3d model cinematic film still <lora:laura23:1>retro-futuristic, Art Nouveau sci-fi, cinematic lighting, organic architecture, misty atmosphere.....A mysterious young woman wearing a Victorian-inspired black dress with intricate ruffles, seated in a surreal futuristic laboratory. Her head is encased in a transparent, bio-mechanical glass helmet, connected to an array of floating, organic relics preserved inside antique glass chambers. The room is softly lit, with muted pastel-green walls and a dreamlike misty ambiance. "
image = pipe(prompt).images[0]