Stable Diffusion is a latent text-to-image diffusion model capable of generating photo-realistic images. Img2img generate a new image from an input image with Stable Diffusion.
curl https://api.aigateway.sh/v1/images/generations \
-H "Authorization: Bearer $AIGATEWAY_API_KEY" \
-H "Content-Type: application/json" \
-d '{"model":"runwayml/stable-diffusion-v1-5-img2img","prompt":"a cyberpunk cat"}'{
"model": "runwayml/stable-diffusion-v1-5-img2img",
"prompt": "A cyberpunk cat at sunset, cinematic lighting",
"n": 1,
"size": "1024x1024",
"response_format": "url" // or "b64_json"
}{
"created": 1776947082,
"data": [
{ "url": "https://media.aigateway.sh/img/abc123.png" }
// or { "b64_json": "iVBORw0KGgoAAAANSUhEU..." }
]
}from openai import OpenAI
client = OpenAI(base_url="https://api.aigateway.sh/v1", api_key="sk-aig-...")
r = client.images.generate(
model="runwayml/stable-diffusion-v1-5-img2img",
prompt="a cyberpunk cat at sunset",
size="1024x1024",
)
print(r.data[0].url)