DeepInfra raises $107M Series B to scale the inference cloud — read the announcement

inclusionAI/

Ming-Image-0.1-Design-Layer

$0.015

x (width / 1024) x (height / 1024) x (iters / 12)

Open-weight layer decomposition (6B) from the Ming-Image 0.1 Design family — splits a flattened design or composite into stacked, transparent, editable PNG layers (text, subject, background) for localizable, editable design workflows. MIT-licensed.

Public
Zero retention
inclusionAI/Ming-Image-0.1-Design-Layer cover image
demo

HTTP/cURL API

You can use cURL or any other http client to run inferences:

curl -X POST \
    -H "Authorization: bearer $DEEPINFRA_TOKEN"  \
    -F 'prompt=Decompose this image into 5 layers.'  \
    -F input_image=@my_image.jpg  \
    'https://api.deepinfra.com/v1/inference/inclusionAI/Ming-Image-0.1-Design-Layer'
copy

which will give you back something similar to:

{
  "images": [
    "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAADElEQVQI12PQz3wAAAJDAXkkWn+MAAAAAElFTkSuQmCC"
  ],
  "nsfw_content_detected": [
    false
  ],
  "seed": 42,
  "request_id": null,
  "inference_status": {
    "status": "unknown",
    "runtime_ms": 0,
    "cost": 0.0,
    "tokens_generated": 0,
    "tokens_input": 0,
    "output_length": 0
  }
}

copy

Input fields

Input Schema

Output Schema