What problem does it solve? Running local text-to-image generation, inpainting, and image-to-image workflows requires navigating Diffusers pipelines, schedulers, memory constraints, and model variants, which is error-prone without a structured guide. ## Core Features & Use Cases - Text-to-Image Generation: Produce images from prompts using SD 1.5, SDXL, SD 3.0, or Flux pipelines with tunable steps, guidance scale, and negative prompts. - Image Transformation: Perform img2img translation, inpainting of masked regions, and ControlNet-conditioned generation from edges, poses, or depth maps. - Optimization & Fine-Tuning: Apply LoRA adapters, memory optimizations like CPU offloading and attention slicing, and fast schedulers such as DPM-Solver or LCM. - Use Case: A developer building an image generation API loads SDXL with FP16 precision, enables model CPU offloading to fit on a single GPU, and serves reproducible generations with seeded generators through a FastAPI endpoint. ## Quick Start Generate an image from the prompt "a serene mountain landscape at sunset" using the Stable Diffusion pipeline with 50 inference steps and save it as output.png.