Skip to main content
Endpoint: POST https://fal.run/bria/fibo-edit/edit Endpoint ID: bria/fibo-edit/edit

Try it in the Playground

Run this model interactively with your own prompts.

Quick Start

import fal_client

def on_queue_update(update):
    if isinstance(update, fal_client.InProgress):
        for log in update.logs:
           print(log["message"])

result = fal_client.subscribe(
    "bria/fibo-edit/edit",
    arguments={},
    with_logs=True,
    on_queue_update=on_queue_update,
)
print(result)

Examples

Example output from Fibo Edit
Example output from Fibo Edit
Example output from Fibo Edit

Input Schema

image_url
string
Reference image (file or URL).
mask_url
string
Mask image (file or URL). Optional
instruction
string
Instruction for image editing.
structured_instruction
StructuredInstruction
The structured prompt to generate an image from.
original_vgl
StructuredInstruction
The original vgl used to generate the image.
new_vgl
StructuredInstruction
The new vgl describing image after edit.
seed
integer
default:"5555"
Random seed for reproducibility. Default value: 5555
steps_num
integer
default:"30"
Number of inference steps. Default value: 30Range: 20 to 50
negative_prompt
string
default:""
Negative prompt for image generation. Default value: ""
guidance_scale
float | integer
default:"5"
Guidance scale for text. Default value: 5
sync_mode
boolean
default:"false"
If true, returns the image directly in the response (increases latency).

Output Schema

image
Image
required
Generated image.
images
list<Image>
default:""
Generated images.
structured_instruction
Structured Instruction
required
Current instruction.

Input Example

{
  "image_url": "https://v3b.fal.media/files/b/0a8b07e8/GYKVk2EVivg_MC3jRRZi3_png%20-%202026-01-13T094835.850%20(3).png",
  "instruction": "change lighting to starlight nighttime",
  "seed": 5555,
  "steps_num": 30,
  "negative_prompt": "",
  "guidance_scale": 5,
  "sync_mode": false
}

Output Example

{
  "image": {
    "url": "",
    "content_type": "image/png",
    "file_name": "z9RV14K95DvU.png",
    "file_size": 4404019,
    "width": 1024,
    "height": 1024
  },
  "images": [
    {
      "url": "https://bria-datasets.s3.us-east-1.amazonaws.com/Liza/ewT7wv-jMgkqs7z7xQNNL_e8707c299d034feab7a64d903118098f.png"
    }
  ]
}

Limitations

  • steps_num range: 20 to 50
  • light_direction restricted to: front, side, bottom, top-down
  • color restricted to: contemporary color, vivid color, black and white colors, sepia vintage
  • season restricted to: spring, summer, autumn, winter