Скидка 50% на модели Vidu Q3 и Q3 Pro · только на WaveSpeedAI | 20 мая – 2 июня

Flux 2 Dev Text to Image LoRA

wavespeed-ai /

FLUX.2 [dev] with LoRA support delivers fast, studio-quality text-to-image generation with enhanced realism, crisper text rendering, and personalized styles via custom LoRA adapters. Extends FLUX.2 [dev] with up to 4 LoRAs for brand-specific outputs. Ready-to-use REST inference API, best performance, no cold starts, affordable pricing.

lora-support
Ввод
width
height
1024 × 1024 px
Range: 256 - 1536
If enabled, the output will be encoded into a BASE64 string instead of a URL. This property is only available through the API.
If set to true, the function will wait for the result to be generated and uploaded before returning the response. It allows you to get the result directly in the response. This property is only available through the API.

Ожидание

A colossal porcelain mask suspended above a velvet baroque table, soft pastel dreamcore lighting, floating dust particles, DV film softness, faint golden glow, vintage floral wallpaper, surreal quiet atmosphere, intricate porcelain cracks, shadows gently swaying, cinematic 16:9 composition, highly detailed, clean edges.

$0.018за запуск·~55 / $1

ПримерыСмотреть всё

A colossal porcelain mask suspended above a velvet baroque table, soft pastel dreamcore lighting, floating dust particles, DV film softness, faint golden glow, vintage floral wallpaper, surreal quiet atmosphere, intricate porcelain cracks, shadows gently swaying, cinematic 16:9 composition, highly detailed, clean edges.

A colossal porcelain mask suspended above a velvet baroque table, soft pastel dreamcore lighting, floating dust particles, DV film softness, faint golden glow, vintage floral wallpaper, surreal quiet atmosphere, intricate porcelain cracks, shadows gently swaying, cinematic 16:9 composition, highly detailed, clean edges.

berthe_morisot style, woman with red hair, playing chess at the park, bomb going off in the background

berthe_morisot style, woman with red hair, playing chess at the park, bomb going off in the background

berthe_morisot style, woman playing the guitar, on stage, singing a song, laser lights, punk rocker

berthe_morisot style, woman playing the guitar, on stage, singing a song, laser lights, punk rocker

A wooden chair floating gently in a fog-tinted living room, pastel blue haze, warped perspective, nostalgic dreamcore mood, soft light beams through curtains, grainy DV aesthetic, drifting shadows, surreal calm atmosphere, highly detailed textures.

A wooden chair floating gently in a fog-tinted living room, pastel blue haze, warped perspective, nostalgic dreamcore mood, soft light beams through curtains, grainy DV aesthetic, drifting shadows, surreal calm atmosphere, highly detailed textures.

A hyper-realistic glass perfume bottle on a marble surface, dramatic hard light, crisp shadows, soft reflections, luxury product photography style.

A hyper-realistic glass perfume bottle on a marble surface, dramatic hard light, crisp shadows, soft reflections, luxury product photography style.

Похожие модели

README

FLUX.2 [dev] — Text-to-Image with LoRA

FLUX.2 [dev] with LoRA support is the personalised version of the lean FLUX.2 [dev] Text-to-Image model. It keeps the fast, stable base behaviour, while letting you plug in up to 4 custom LoRA adapters to inject your own styles, characters, or brand identity into each generation.

Good for

  • Rapid prototyping with personalised visual styles
  • Brand-specific image generation at scale
  • Character-consistent content (mascots, VTubers, OCs, etc.)
  • Custom training workflows based on LoRA fine-tuning
  • Teams that need both speed and fine-grained style control

LoRA-powered personalisation on a lean base

FLUX.2 [dev] + LoRA starts from the same lightweight, production-friendly dev model and adds adapter hooks for your own LoRAs. You can mix several adapters in one request, control their strengths independently, and still get the fast turnaround and predictable behaviour that make dev a good “default” engine.

Why Choose this

• Familiar dev behaviour, with extra style control

You get the same quick, reliable generations as FLUX.2 [dev] Text-to-Image, plus the ability to load custom LoRAs for specific art styles, brand looks, or recurring characters.

• Up to 4 LoRAs in a single run

Attach as many as four adapters at once and give each one its own strength (0–4). Combine, for example, a character LoRA, a lighting/style LoRA, and a brand-colour LoRA in one prompt to keep everything consistent across outputs.

• Style-consistent batches

Generate 1–4 images per request with the same LoRA stack, making it easy to produce A/B variants, campaign sets, or social content packs that share a coherent visual identity.

• Open, transparent foundation

Built on the same open FLUX.2 stack as the base dev model, so integrating with your own LoRA training, management, and deployment tooling is straightforward.

• Cost-effective customisation

LoRA adapters add only a small overhead compared with full fine-tuning, which keeps per-image costs low even when you apply several custom styles.

Pricing

Simple per-image billing:

  • $0.018 per generated image

FLUX.2 [dev] family on WaveSpeedAI

More LoRA Support Image Tools

  • qwen-image/edit-plus-lora – combines Qwen’s strong semantic understanding with LoRA-based style control for precise, localised edits that still preserve overall composition.
  • FLUX Kontext LoRA – a FLUX.2 dev LoRA stack optimised for cleaner prompts, better context handling, and more coherent, production-friendly generations.
  • SDXL-LoRA – a collection of SDXL LoRAs offering a wide range of ready-made styles and subjects, ideal for fast customisation without full fine-tuning.

LoRA resources

Доступность:Этот сайт использует модели ИИ, предоставляемые третьими лицами.

Flux 2 Dev Text To Image Lora API — Quick start

Grab a WaveSpeedAI API key, then call POST https://api.wavespeed.ai/api/v3/wavespeed-ai/flux-2-dev/text-to-image-lora with your input as JSON. The endpoint returns a prediction id; poll the prediction endpoint until status flips to completed, then read the output URL from data.outputs[0]. Examples for Flux 2 Dev Text To Image Lora below.

HTTP example
# Submit the prediction
curl -X POST "https://api.wavespeed.ai/api/v3/wavespeed-ai/flux-2-dev/text-to-image-lora" \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $WAVESPEED_API_KEY" \
  -d '{
    "prompt": "A cinematic shot of a city at sunset, soft golden light",
    "size": "1024*1024",
    "seed": -1,
    "enable_base64_output": false,
    "enable_sync_mode": false
}'

# Response includes a prediction id. Poll for the result:
curl -X GET "https://api.wavespeed.ai/api/v3/predictions/{request_id}/result" \
  -H "Authorization: Bearer $WAVESPEED_API_KEY"

# When status is "completed", read the output from data.outputs[0].
Node.js example
// npm install wavespeed
const WaveSpeed = require('wavespeed');

const client = new WaveSpeed(); // reads WAVESPEED_API_KEY from env

const result = await client.run("wavespeed-ai/flux-2-dev/text-to-image-lora", {
        "prompt": "A cinematic shot of a city at sunset, soft golden light",
        "size": "1024*1024",
        "seed": -1,
        "enable_base64_output": false,
        "enable_sync_mode": false
});

console.log(result.outputs[0]); // → URL of the generated output
Python example
# pip install wavespeed
import wavespeed

output = wavespeed.run(
    "wavespeed-ai/flux-2-dev/text-to-image-lora",
    {
    "prompt": "A cinematic shot of a city at sunset, soft golden light",
    "size": "1024*1024",
    "seed": -1,
    "enable_base64_output": false,
    "enable_sync_mode": false
}
)

print(output["outputs"][0])  # → URL of the generated output

Flux 2 Dev Text To Image Lora API — Frequently asked questions

What is the Flux 2 Dev Text To Image Lora API?

Flux 2 Dev Text To Image Lora is a WaveSpeedAI model for AI inference, exposed as a REST API on WaveSpeedAI. FLUX.2 [dev] with LoRA support delivers fast, studio-quality text-to-image generation with enhanced realism, crisper text rendering, and personalized styles via custom LoRA adapters. Extends FLUX.2 [dev] with up to 4 LoRAs for brand-specific outputs. Ready-to-use REST inference API, best performance, no cold starts, affordable pricing. You can call it programmatically or try it from the playground above.

How do I call the Flux 2 Dev Text To Image Lora API?

POST your input parameters to the model's REST endpoint (shown in the API tab of this playground) with your WaveSpeedAI API key in the Authorization header. Submission returns a prediction ID; poll the prediction endpoint until status flips to "completed", then read the output URL from the result. The playground generates a ready-to-paste code sample in Python, JavaScript, or cURL for whatever inputs you've set. Full request/response shape is documented at https://wavespeed.ai/docs/docs-api/wavespeed-ai/flux-2-dev-text-to-image-lora.

How much does Flux 2 Dev Text To Image Lora cost per run?

Flux 2 Dev Text To Image Lora starts at $0.018 per run. That figure is the base price — the final charge scales with the parameters you set in the form (output size, length, count, references, or whatever knobs this model exposes), so a higher-quality or larger output costs more than a minimal one. The exact cost for your current input is shown live next to the Generate button before you submit, and the actual per-call charge is recorded on the prediction afterwards.

What inputs does Flux 2 Dev Text To Image Lora accept?

Key inputs: `prompt`, `size`, `seed`, `enable_base64_output`, `enable_sync_mode`, `loras`. The full JSON schema (types, defaults, allowed values) is rendered above the Generate button and mirrored in the API reference at https://wavespeed.ai/docs/docs-api/wavespeed-ai/flux-2-dev-text-to-image-lora.

How long does Flux 2 Dev Text To Image Lora take to generate?

Average end-to-end generation time on WaveSpeedAI is around 30 seconds per request — measured across recent runs. Queue time scales with global demand; live status is visible in the prediction record.

Can I use Flux 2 Dev Text To Image Lora outputs commercially?

Commercial usage rights depend on the model's license, set by its provider (WaveSpeedAI). The license summary appears on the model card above; see WaveSpeedAI's Terms of Service for platform-level conditions.