Compare

Stable-Diffusion-V1-5-Img2img vs Stable-Diffusion-V1-5-Inpainting

Pricing per million tokens, context window, capabilities — pulled from each provider's public docs. All 2 are available via the same AIgateway OpenAI-compatible endpoint; flip the model string to switch.

Search2/4
Stable-Diffusion-V1-5-Img2img
runwayml/stable-diffusion-v1-5-img2img
Stable-Diffusion-V1-5-Inpainting
runwayml/stable-diffusion-v1-5-inpainting
Provider
Runway
Runway
Family
Stable Diffusion
Stable Diffusion
Modality
image
image
Context window
Max output
Released
2024-02-27
2024-02-27
License
Proprietary
Proprietary
Per image
$0.0008 /img
$0.0008 /img
Tools
Streaming
Vision
JSON mode
Reasoning
Prompt caching
Batch API
Try it
View model →
View model →
Stable-Diffusion-V1-5-Img2img
runwayml/stable-diffusion-v1-5-img2img
Full spec →

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.

Strengths
  • Text-to-image generation
  • Creative control
Use cases
Marketing assetsProduct mockupsConcept art
Stable-Diffusion-V1-5-Inpainting
runwayml/stable-diffusion-v1-5-inpainting
Full spec →

Stable Diffusion Inpainting is a latent text-to-image diffusion model capable of generating photo-realistic images given any text input, with the extra capability of inpainting the pictures by using a mask.

Strengths
  • Text-to-image generation
  • Creative control
Use cases
Marketing assetsProduct mockupsConcept art

Compare with another

Stable-Diffusion-XL-Lightning vs Stable-Diffusion-V1-5-Inpainting
bytedance/stable-diffusion-xl-lightning · runwayml/stable-diffusion-v1-5-inpainting
Stable-Diffusion-V1-5-Inpainting vs Stable-Diffusion-XL-Base-1.0
runwayml/stable-diffusion-v1-5-inpainting · stabilityai/stable-diffusion-xl-base-1.0
Stable-Diffusion-XL-Lightning vs Stable-Diffusion-V1-5-Img2img
bytedance/stable-diffusion-xl-lightning · runwayml/stable-diffusion-v1-5-img2img
Stable-Diffusion-V1-5-Img2img vs Stable-Diffusion-XL-Base-1.0
runwayml/stable-diffusion-v1-5-img2img · stabilityai/stable-diffusion-xl-base-1.0
SWITCH BETWEEN THEM

One key, all 2, one line different.

from openai import OpenAI

client = OpenAI(
    base_url="https://api.aigateway.sh/v1",
    api_key="sk-aig-...",
)

# Stable-Diffusion-V1-5-Img2img
client.chat.completions.create(
    model="runwayml/stable-diffusion-v1-5-img2img",
    messages=[{"role":"user","content":"hello"}],
)

# Stable-Diffusion-V1-5-Inpainting
client.chat.completions.create(
    model="runwayml/stable-diffusion-v1-5-inpainting",
    messages=[{"role":"user","content":"hello"}],
)
Get an AIgateway keyRun an eval on these →