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('histin116/ad-lahenga1', weight_name='ad-lahenga1.safetensors')
image = pipeline('The image showcases a close-up of a person wearing an intricately designed garment JHMGK . The outfit is adorned with a multitude of gold and silver sequins, creating a shimmering effect. The fabric appears to be a light, possibly off-white or cream color, providing a neutral backdrop for the elaborate embellishments. The neckline is deep and scalloped, adding a touch of elegance to the design. The sleeves are long and fitted, with the same sequin detailing that covers the entire garment. The person is also wearing a matching choker necklace and earrings, both featuring large, hexagonal gemstones set in gold, which complement the overall look. The camera angle is focused on the upper body, with the model looking to the left side, capturing the intricate details of the clothing and jewelry. The lighting is soft, highlighting the textures and colors of the outfit. JHMGK').images[0]
image.save("my_image.png")