> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mynth.io/llms.txt
> Use this file to discover all available pages before exploring further.

# FIBO Edit 1.5

> Use Bria FIBO Edit 1.5 with the Mynth SDK or REST API. Capabilities, inputs, auto size, and magic prompt.

```text Model ID theme={"theme":"kanagawa-dragon"}
bria/fibo-edit-1.5
```

See pricing & more on [mynth.io](https://mynth.io/models/bria%2Ffibo-edit-1.5).

## Capabilities

|                      |                      |
| -------------------- | -------------------- |
| **Modes**            | Image-to-image       |
| **Inputs**           | 1–4 reference images |
| **Native auto size** | Yes                  |
| **Magic prompt**     | Supported            |

FIBO Edit 1.5 follows natural-language edit instructions against one to four references. Use it for object and character composites, virtual try-on, background replacement, and style transfer. Trained on licensed data.

## Edit images

Pass between **1 and 4** input images. URLs or uploaded files both work. See [Upload input images](/guides/upload-input-images).

<CodeGroup>
  ```ts Mynth SDK theme={"theme":"kanagawa-dragon"}
  import Mynth from "@mynthio/sdk";

  const mynth = new Mynth();

  const task = await mynth.image.generate({
    prompt: "Uncross her arms and place the serum bottle in her right hand, label toward the camera",
    model: "bria/fibo-edit-1.5",
    inputs: ["https://example.com/portrait.jpg", "https://example.com/product.png"],
    size: "auto",
  });

  console.log(task.urls);
  ```

  ```bash REST API theme={"theme":"kanagawa-dragon"}
  curl https://api.mynth.io/image/generate \
    -X POST \
    -H "Authorization: Bearer $MYNTH_API_KEY" \
    -H "Content-Type: application/json" \
    -d '{
      "prompt": "Uncross her arms and place the serum bottle in her right hand, label toward the camera",
      "model": "bria/fibo-edit-1.5",
      "inputs": [
        {
          "type": "image",
          "source": { "type": "url", "url": "https://example.com/portrait.jpg" }
        },
        {
          "type": "image",
          "source": { "type": "url", "url": "https://example.com/product.png" }
        }
      ],
      "size": "auto"
    }'
  ```
</CodeGroup>

## Auto size

This model supports **native auto size**. Left unset, output keeps the first reference image's ratio.

```ts theme={"theme":"kanagawa-dragon"}
size: "auto";
```

See [Control size](/guides/control-size).
