
Edits each input Image under a text prompt with a HuggingFace diffusers image-to-image checkpoint (default `stabilityai/sdxl-turbo`) and emits one edited Image at the same resolution. strength sets how far the edit departs from the source.
Restyle a live webcam frame with a prompt and stream the edited result to a browser.
Apply a prompted edit to an uploaded image file and return the result over HTTP.
Image to exactly one output Image at the same resolution; the diffusion processor rounds the working size to the VAE scale factor internally and the result is resized back to the input dimensions before emit.strength and num_inference_steps interact: the pipeline runs `int(num_inference_steps * strength)` denoising steps, and a turbo checkpoint requires that product be at least 1. The defaults (steps 2, strength 0.5) clear it; lowering both at once can drop the effective step count to 0.guidance_scale should stay 0.0 and the negative instruction has no effect; a non-turbo checkpoint wants guidance_scale ~7.5 and honours the negative instruction.model is hot-swappable at runtime and triggers a pipeline reload (and a GPU memory reclaim on CUDA) on the next call, producing a one-call latency spike.Image. An empty or degenerate (sub-16-pixel-side) frame and an empty prompt both pass the input frame through unchanged without running diffusion, and a diffusion fault is logged and degraded to the input frame passed through; there is no 1-to-0 drop. device is read once at startup and a value starting with `cuda` silently falls back to CPU when CUDA is unavailable.Automated release