from diffusers import AutoPipelineForText2Image
import torch
pipeline = AutoPipelineForText2Image.from_pretrained('black-forest-labs/FLUX.1-dev', torch_dtype=torch.bfloat16).to('cuda')
pipeline.load_lora_weights('Coquelicots/valorant-bundle-lora-flux1-dev', weight_name='valorant-bundle-lora-flux1-dev.safetensors')
image = pipeline('VLRBUNDLE Embark on a journey through the unforgiving wilderness with the Desert Sands Bundle, a collection that captures the raw beauty and harsh reality of arid landscapes. This bundle features the Desert Sands Vandal, Desert Sands Phantom, Desert Sands Operator, Desert Sands Knife, and Desert Sands Shorty, each designed with a rugged, weathered aesthetic that evokes the spirit of survival. The weapons boast a palette of earthy browns, tans, and muted golds, with textured surfaces that mimic the wear and tear of the desert environment. Set against a backdrop of endless sand dunes and scorching sun, the Desert Sands Bundle is inspired by the resilience and adaptability of those who brave the desert, perfect for players who thrive in challenging conditions and seek to dominate with grit and determination.').images[0]
image.save("my_image.png")