# FLUX.2 [dev] Turbo > Distilled version of Black Forest Labs' FLUX.2 [dev] outperforming it at a cheaper price. Developed by fal.ai. ## Quick Reference - Model ID: flux.2-dev-turbo - Creator: fal - Status: active - Family: flux.2 - Base URL: https://api.lumenfall.ai/openai/v1 ## Specifications - Max Resolution: 2048x2048 - Max Input Images: 4 - Input Modalities: text, image - Output Modalities: image ## Model Identifiers - Primary Slug: flux.2-dev-turbo ## Dates - Released: December 2025 ## Tags image-generation, text-to-image, open-weights, non-commercial ## Available Providers ### fal.ai - Config Key: fal/flux.2-dev-turbo - Provider Model ID: fal-ai/flux-2/turbo - Pricing: - source: official - currency: USD - components: [{"type" => "input", "metric" => "megapixel", "unit_price" => 0.008}, {"type" => "output", "metric" => "megapixel", "unit_price" => 0.008}] - source_url: https://fal.ai/models/fal-ai/flux-2 - effective_at: 2025-12-29 ## Performance Metrics Provider performance over the last 30 days. ### fal - Median Generation Time (p50): 3232ms - 95th Percentile Generation Time (p95): 8957ms - Average Generation Time: 4722ms - Success Rate: 100.0% - Total Requests: 11 - Time to First Byte (p50): 3232ms - Time to First Byte (p95): 9229ms ## Arena Benchmarks ### Intricate Floral Mandala - Elo: 1353 - Record: 13W / 0L / 5T (18 battles) - Rank: #1 of 15 ### Geometric Composition - Elo: 1256 - Record: 14W / 4L / 5T (23 battles) - Rank: #1 of 22 ### Isometric Miniature Diorama Scenes - Elo: 1225 - Record: 12W / 13L / 3T (28 battles) - Rank: #4 of 19 ### Apollo 11: Journey to Tranquility - Elo: 1210 - Record: 12W / 2L / 3T (17 battles) - Rank: #3 of 19 ### Victorian Greenhouse Oasis - Elo: 1207 - Record: 8W / 7L / 1T (16 battles) - Rank: #4 of 17 ### Fantasy Warrior - Elo: 1193 - Record: 13W / 4L / 0T (17 battles) - Rank: #7 of 19 ### Vintage Cafe Logo - Elo: 1164 - Record: 9W / 4L / 0T (13 battles) - Rank: #7 of 19 ### Adorable Baby Animals in Sunny Meadow - Elo: 1152 - Record: 4W / 2L / 0T (6 battles) - Rank: #12 of 23 ### Modern Clean Menu - Elo: 1130 - Record: 6W / 9L / 2T (17 battles) - Rank: #16 of 19 ### Heroic Super Hero Portrait - Elo: 1129 - Record: 5W / 2L / 1T (8 battles) - Rank: #13 of 19 ### Candid Street Photography - Elo: 1124 - Record: 3W / 9L / 1T (13 battles) - Rank: #18 of 22 ### Fantasy Warrior - Elo: 1113 - Record: 4W / 0L / 2T (6 battles) - Rank: #5 of 14 ## Use Cases & Category Performance ### Text Rendering (Text-to-Image) - Rank: #4 of 21 - Elo: 1250 - Record: 27W / 15L / 5T (47 battles) - Win Rate: 57.4% ### Product, Branding & Commercial (Text-to-Image) - Rank: #4 of 19 - Elo: 1209 - Record: 9W / 4L / 0T (13 battles) - Win Rate: 69.2% ### Portrait (Text-to-Image) - Rank: #8 of 19 - Elo: 1202 - Record: 13W / 4L / 0T (17 battles) - Win Rate: 76.5% ### Photorealism (Text-to-Image) - Rank: #20 of 22 - Elo: 1125 - Record: 3W / 9L / 1T (13 battles) - Win Rate: 23.1% ## Image Gallery 16 images available for this model. - Curated examples: 4 - "Cinematic wide shot of a high-end, minimalist creative studio at sunset. In the center of the frame, a sleek, brushed..." - "A hyper-realistic, macro close-up of a weathered leather craftsmans's workbench. In the soft, natural light of a dust..." - "A hyper-realistic close-up portrait of an elderly artisan woodworker in a sun-drenched workshop. Every deep wrinkle, ..." - "A cozy corner of a sunlit independent bookstore with a large chalkboard sign that reads "TODAY'S SPECIAL: POETRY & TE..." - Competition results: 12 - Intricate Floral Mandala: #1 of 15 (Elo 1353) - Geometric Composition: #1 of 22 (Elo 1256) - Isometric Miniature Diorama Scenes: #4 of 19 (Elo 1225) - Apollo 11: Journey to Tranquility: #3 of 19 (Elo 1210) - Victorian Greenhouse Oasis: #4 of 17 (Elo 1207) - Fantasy Warrior: #7 of 19 (Elo 1193) - Vintage Cafe Logo: #7 of 19 (Elo 1164) - Adorable Baby Animals in Sunny Meadow: #12 of 23 (Elo 1152) - Modern Clean Menu: #16 of 19 (Elo 1130) - Heroic Super Hero Portrait: #13 of 19 (Elo 1129) - Candid Street Photography: #18 of 22 (Elo 1124) - Fantasy Warrior: #5 of 14 (Elo 1113) ## Example Prompt The following prompt was used to generate an example image in our playground: A cozy corner of a sunlit independent bookstore with a large chalkboard sign that reads "TODAY'S SPECIAL: POETRY & TEA" in elegant cursive. In the soft-blur background near a stack of novels, a calm capybara is wearing a tiny reading monocle. ## Code Examples ### Text to Image (Generation) #### cURL curl -X POST \ https://api.lumenfall.ai/openai/v1/images/generations \ -H "Authorization: Bearer $LUMENFALL_API_KEY" \ -H "Content-Type: application/json" \ -d '{ "model": "flux.2-dev-turbo", "prompt": "A serene mountain landscape at sunset", "size": "1024x1024" }' # Response: # { "created": 1234567890, "data": [{ "url": "https://...", "revised_prompt": "..." }] } #### JavaScript import OpenAI from 'openai'; const client = new OpenAI({ apiKey: 'YOUR_API_KEY', baseURL: 'https://api.lumenfall.ai/openai/v1' }); const response = await client.images.generate({ model: 'flux.2-dev-turbo', prompt: 'A serene mountain landscape at sunset', size: '1024x1024' }); // { created: 1234567890, data: [{ url: "https://...", revised_prompt: "..." }] } console.log(response.data[0].url); #### Python from openai import OpenAI client = OpenAI( api_key="YOUR_API_KEY", base_url="https://api.lumenfall.ai/openai/v1" ) response = client.images.generate( model="flux.2-dev-turbo", prompt="A serene mountain landscape at sunset", size="1024x1024" ) # { created: 1234567890, data: [{ url: "https://...", revised_prompt: "..." }] } print(response.data[0].url) ### Image Editing #### cURL curl -X POST \ https://api.lumenfall.ai/openai/v1/images/edits \ -H "Authorization: Bearer $LUMENFALL_API_KEY" \ -F "model=flux.2-dev-turbo" \ -F "image=@source.png" \ -F "prompt=Add a starry night sky to this image" \ -F "size=1024x1024" # Response: # { "created": 1234567890, "data": [{ "url": "https://...", "revised_prompt": "..." }] } #### JavaScript import OpenAI from 'openai'; import fs from 'fs'; const client = new OpenAI({ apiKey: 'YOUR_API_KEY', baseURL: 'https://api.lumenfall.ai/openai/v1' }); const response = await client.images.edit({ model: 'flux.2-dev-turbo', image: fs.createReadStream('source.png'), prompt: 'Add a starry night sky to this image', size: '1024x1024' }); // { created: 1234567890, data: [{ url: "https://...", revised_prompt: "..." }] } console.log(response.data[0].url); #### Python from openai import OpenAI client = OpenAI( api_key="YOUR_API_KEY", base_url="https://api.lumenfall.ai/openai/v1" ) response = client.images.edit( model="flux.2-dev-turbo", image=open("source.png", "rb"), prompt="Add a starry night sky to this image", size="1024x1024" ) # { created: 1234567890, data: [{ url: "https://...", revised_prompt: "..." }] } print(response.data[0].url) ## About ## Overview FLUX.2 [dev] Turbo is an accelerated image generation model developed by fal.ai, designed to provide high-fidelity outputs with significantly lower latency than the base FLUX.2 [dev] model. It uses architectural distillation to achieve high performance at a lower cost, maintaining the composition and detail of the original Black Forest Labs weights while requiring fewer sampling steps. This open-weights model is released under a non-commercial license and is optimized for workflows where generation speed and cost-efficiency are prioritized over maximum sampling depth. ## Strengths * **Generation Velocity:** Significant reduction in inference time compared to the standard FLUX.2 [dev], capable of producing high-resolution images in a fraction of the steps. * **Anatomical and Text Fidelity:** Retains the core architectural strengths of the FLUX family, specifically in rendering legible text and accurate human anatomy (such as hands and limbs). * **Instruction Following:** High responsiveness to complex, multi-subject prompts involving specific spatial arrangements or lighting conditions. * **Operational Efficiency:** Lower compute requirements and a reduced price point ($0.008 starting price) make it suitable for high-volume prototyping or iterative design processes. ## Limitations * **Non-Commercial License:** The model is restricted to research and personal use; it cannot be integrated into commercial products or used for profit-generating workflows. * **Detail Ceiling:** Due to the distillation process, it may occasionally lack the extreme fine-grain texture or subtle lighting nuances found in the full FLUX.2 [dev] model during multi-step high-CFG generations. * **Reduced Flexibility:** This turbo variant is specifically tuned for a lower step count, which may make it less responsive to manual sampling adjustments compared to its non-distilled counterpart. ## Technical Background FLUX.2 [dev] Turbo is part of the FLUX.2 family, utilizing a distilled version of the original diffusion transformer (DiT) architecture. By applying adversarial or sequence-level distillation techniques, fal.ai optimized the original Black Forest Labs weights to converge in fewer iterations without sacrificing the structural integrity of the generated output. The model accepts both text and image inputs, allowing for versatile image-to-image and text-to-image workflows. ## Best For * **Iterative Design:** Rapidly testing different prompt variations or character concepts without the wait times associated with standard diffusion models. * **Prototyping:** Building proof-of-concept creative tools where speed-of-feedback is critical for user experience. * **Research and Personal Projects:** High-quality image generation for non-commercial academic research or hobbyist exploration. FLUX.2 [dev] Turbo is available through Lumenfall’s unified API and playground, allowing developers to integrate fast, state-of-the-art image generation into their research environments with minimal configuration. ## Frequently Asked Questions ### How much does FLUX.2 [dev] Turbo cost? FLUX.2 [dev] Turbo starts at $0.008 per image through Lumenfall. Pricing varies by provider. Lumenfall does not add any markup to provider pricing. ### How do I use FLUX.2 [dev] Turbo via API? You can use FLUX.2 [dev] Turbo through Lumenfall's OpenAI-compatible API. Send requests to the unified endpoint with model ID "flux.2-dev-turbo". Code examples are available in Python, JavaScript, and cURL. ### Which providers offer FLUX.2 [dev] Turbo? FLUX.2 [dev] Turbo is available through fal.ai on Lumenfall. Lumenfall automatically routes requests to the best available provider. ### What is the maximum resolution for FLUX.2 [dev] Turbo? FLUX.2 [dev] Turbo supports images up to 2048x2048 resolution. ## Links - Model Page: https://lumenfall.ai/models/fal/flux.2-dev-turbo - About: https://lumenfall.ai/models/fal/flux.2-dev-turbo/about - Providers, Pricing & Performance: https://lumenfall.ai/models/fal/flux.2-dev-turbo/providers - API Reference: https://lumenfall.ai/models/fal/flux.2-dev-turbo/api - Benchmarks: https://lumenfall.ai/models/fal/flux.2-dev-turbo/benchmarks - Use Cases: https://lumenfall.ai/models/fal/flux.2-dev-turbo/use-cases - Gallery: https://lumenfall.ai/models/fal/flux.2-dev-turbo/gallery - Playground: https://lumenfall.ai/playground?model=flux.2-dev-turbo - API Documentation: https://docs.lumenfall.ai