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

Try it in the Playground

Run this model interactively with your own prompts.

Quick Start

Examples

several coffee beans floating independently in mid air, the subject is red, in a red photo, red and black duotone image, red wash, red light, red lens, extreme close up, a dark black empty background, closeup, dramatic lighting with a strong red hue that gives the image a moody and intense atmospher…
Generated image: several coffee beans floating independently in mid air, the subject is red, in a
Example output from Fibo Lite
Example output from Fibo Lite

Input Schema

string
The prompt to generate.
StructuredPrompt
The structured prompt to generate.
string
Input image URL
integer
default:"7"
Seed for the random number generator. Default value: 7
AspectRatioEnum
default:"1:1"
Aspect ratio. Options: 1:1, 2:3, 3:2, 3:4, 4:3, 4:5, 5:4, 9:16, 16:9 Default value: "1:1"Possible values: 1:1, 2:3, 3:2, 3:4, 4:3, 4:5, 5:4, 9:16, 16:9
string
default:""
Negative prompt for image generation. Default value: ""
integer
default:"8"
Number of inference steps. Default value: 8Range: 4 to 30
boolean
default:"false"
If true, returns the image directly in the response (increases latency).

Output Schema

Image
required
Generated image.
list<object>
Generated images.
StructuredPrompt
required
Current prompt.

Input Example

Output Example

Overview Fibo Lite, the new addition to the Fibo model family, allows generating high-quality images with the same controllability of the JSON structured prompt, while using significantly fewer inference steps, resulting in significantly improved latency. This is a two-stage distilled model for the FIBO text-to-image model, combining:
  1. CFG Distillation: First, we distill classifier-free guidance into the model, enabling inference with Guidance Scale = 1.0 (skipping the negative prompt pass).
  2. SCFM (Shortcutting Flow Matching): On top of the CFG-distilled merged model, we apply velocity field self-distillation to enable efficient few-step sampling.

🔑 Key Benefits

  • Two-Stage Distillation: Combines CFG distillation with SCFM for maximum efficiency—the SCFM was trained on top of the already CFG-distilled merged model.
  • Few-Step Generation: SCFM enables efficient sampling in significantly fewer inference steps.
  • No CFG Overhead: Running at guidance_scale=1 means calculating the noise prediction only once per step instead of twice.
  • Quality Tradeoff: As a distillation approach, there is a slight quality degradation compared to the full model at CFG=5, but the speed gains make it ideal for rapid iteration and production workflows.
  • Drop-in Replacement: Works seamlessly with existing FIBO workflows—just set guidance_scale=1.0.
  • Memory Efficient: Minimal additional GPU memory overhead.

Limitations

  • steps_num range: 4 to 30