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

Bria logo

Bria/

fibo_edit-1.5

Partner

$0.04

/ image

Instruction-based image editing powered by FIBO 1.5: edit one image with a text instruction or a mask, or compose up to four reference images into a single result.

Public
Paper
Bria/fibo_edit-1.5 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 image=@my_image.jpg  \
    'https://api.deepinfra.com/v1/inference/Bria/fibo_edit-1.5'
copy

which will give you back something similar to:

{
  "images": [
    null
  ],
  "structured_instruction": null,
  "seed": 0,
  "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