How to use ayanda13/Horizon_Creature_v1 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("ayanda13/Horizon_Creature_v1") prompt = "A cybernetic creature resembling a mechanical eagle, with a sleek black and gold metallic body, feathered wings made of overlapping metal plates, and glowing red eyes. The creature is perched on a rocky outcrop, its wings slightly spread as if preparing to take flight. Its talons are reinforced with sharp, articulated claws, and its beak is made of polished steel. The design merges the majesty of an eagle with futuristic robotic enhancements, evoking both elegance and power. Horizon_Cre4ture" image = pipe(prompt).images[0]