How to use soloai1/scenev1 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("soloai1/scenev1") prompt = "A DnD scene of a dark cave with a large, glowing blue skull in the center. The skull is surrounded by long, black tentacles that stretch out in various directions. The cave walls are adorned with blue and green moss, creating a moist and damp atmosphere. The lighting in the cave is dim, with the blue glow from the skull being the main source of illumination. The overall scene has a mysterious and eerie feel, as if one is exploring an ancient underground temple." image = pipe(prompt).images[0]