Multi-Image Editing

Combine up to 3 reference images in a single edit request. The model blends elements from all references according to your prompt.

CLI

progrok image --ref style.png --ref subject.png "combine the style with the subject"

API

curl -X POST http://localhost:18645/v1/images/edits   -H 'Authorization: Bearer anything'   -H 'Content-Type: application/json'   -d '{
  "prompt": "combine the style with the subject",
  "images": [
    {"url": "https://example.com/style.png"},
    {"url": "https://example.com/subject.png"}
  ],
  "size": "1024x1024"
}'