How to use soloai1/v3flux 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/v3flux") prompt = " A top down aerial view DND battle map, DND battle map. Depicts a fantastical building complex designed like giant seashells situated on a sandy seabed or beach, surrounded by coral-like formations. Notable elements include a large central domed structure resembling a clam or scallop shell, smaller surrounding shell-shaped sections, stairs leading up, sandy ground with rocks and smaller shells, and underwater flora. The atmosphere is whimsical, aquatic, and unique. The scene is set during the daytime (possibly underwater), rendered in a detailed fantasy style with linework." image = pipe(prompt).images[0]