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-style-lora-flux1-dev', weight_name='valorant-style-lora-flux1-dev.safetensors')
image = pipeline('VLRSTYLE, A dynamic scene featuring Neon, a futuristic runner, dashing through a desolate and arid landscape reminiscent of Kirikou's world. The environment is dry and barren, with cracked earth stretching out under a hazy, oppressive sky. Sparse, leafless trees with gnarled branches cast long, eerie shadows. The air feels tense and still, amplifying the sense of urgency and stress. Neon, with her electric-blue streaks and glowing outfit, radiates energy as she sprints, leaving behind a faint trail of neon light. In the distance looms a foreboding silhouette of a towering figure, resembling a witch, adding an ominous sense of pursuit. The scene is bathed in muted earth tones, contrasting sharply with Neon's vibrant glow, creating a striking visual tension.').images[0]
image.save("my_image.png")