Diffusers How to use AiWise/Copax-TimeLess_XIV-SDXL 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("AiWise/Copax-TimeLess_XIV-SDXL")
prompt = "A butterfly with wings that dissolve into splashes of vibrant, chaotic paint. The background is an explosion of color and energy, with streaks and splatters creating the illusion of movement. The butterfly appears to be caught mid-flight, as if it is both emerging from and dissolving into the abstract chaos."
image = pipe(prompt).images[0]