Z Image Turbo Lora

general

fal-ai/z-image/turbo/lora

Eight-step inference: Z-Image Turbo with LoRAs.

The fastest LoRA inference in this catalog: Z-Image Turbo defaults to just 8 denoising steps, so style and subject LoRAs render almost instantly. Loads up to three LoRAs. The natural target for everything the Z-Image trainers produce.

Parameters

Schema facts from the fal API; the notes are ours.

Required

promptstringrequired

The text description of what to generate.

Tip: If your LoRA used a trigger word, include it. Describe the scene around the subject normally.

Raw schema description

The prompt to generate an image from.

Optional

image_sizeobjectdefault: landscape_4_3

Output resolution, as a preset name or explicit width and height.

Raw schema description

The size of the generated image.

num_inference_stepsintegerdefault: 818

Number of denoising steps per image. More steps, more refinement, more latency.

Tip: Defaults are tuned per model. Cutting steps in half is the quickest way to trade quality for speed.

Raw schema description

The number of inference steps to perform.

seedinteger

Random seed. Same seed plus same inputs gives a nearly identical image.

Tip: Fix the seed when comparing LoRA scales or parameters, so the only thing changing is the thing you are testing.

Raw schema description

The same seed and the same prompt given to the same version of the model will output the same image every time.

sync_modebooleandefault: false

Returns media as a data URI instead of a hosted URL, and skips storing it.

Tip: Useful for privacy; awkward for big files. Most workflows leave it off.

Raw schema description

If `True`, the media will be returned as a data URI and the output data won't be available in the request history.

num_imagesintegerdefault: 114

How many images to generate in one call.

Raw schema description

The number of images to generate.

enable_safety_checkerbooleandefault: true

Runs a safety filter on outputs.

Raw schema description

If set to true, the safety checker will be enabled.

output_formatenumdefault: pngjpeg | png | webp

File format of the result: jpeg, png or webp.

Raw schema description

The format of the generated image.

accelerationenumdefault: regularnone | regular | high

Speed and cost preset for the generation backend.

Tip: 'regular' balances quality and latency. Use higher acceleration for drafts and iteration.

Raw schema description

The acceleration level to use.

enable_prompt_expansionbooleandefault: false

Lets the endpoint rewrite your prompt with more detail before generating.

Raw schema description

Whether to enable prompt expansion. Note: this will increase the price by 0.0025 credits per request.

loraslistdefault: []

List of LoRA weights to load, each with a path (URL or HF repo) and a scale.

In the atelier: Which bracelets the painter wears for this painting, and how hard he leans on each.

Tip: Order does not matter; scales do. Start every LoRA at 1.0 and adjust one at a time.

Watch out: Stacking three strong LoRAs usually degrades all of them. Lower each scale when combining.

Raw schema description

List of LoRA weights to apply (maximum 3).

Call it

import { fal } from "@fal-ai/client";

const result = await fal.subscribe("fal-ai/z-image/turbo/lora", {
  input: {
    "prompt": "a photo of TOK on a sunny windowsill",
    "loras": [
      {
        "path": "https://your-cdn.com/lora.safetensors",
        "scale": 1
      }
    ]
  },
  logs: true,
});
console.log(result.data);