# ImagineArt 1.5 (Preview) > Vyro AI's professional-grade text-to-image model delivering photorealistic output with accurate text rendering and typography precision for commercial workflows ## Quick Reference - Model ID: imagineart-1.5-preview - Creator: Vyro AI - Status: preview - Family: imagineart - Base URL: https://api.lumenfall.ai/openai/v1 ## Specifications - Max Resolution: 2048x2048 - Input Modalities: text - Output Modalities: image ## Model Identifiers - Primary Slug: imagineart-1.5-preview - Aliases: imagineart-1.5 ## Dates ## Tags image-generation, text-to-image, photorealistic, typography ## Available Providers ### Replicate - Config Key: replicate/imagineart-1.5-preview - Provider Model ID: imagineart/imagineart-1.5 - Pricing: - notes: ["Most advanced photorealistic image generation model", "Enhanced MoE architecture with industry-leading text generation"] - source: official - currency: USD - components: [{"type" => "output", "metric" => "image", "unit_price" => 0.03}] - source_url: https://replicate.com/imagineart/imagineart-1.5 - effective_at: 2025-12-30 ### fal.ai - Config Key: fal/imagineart-1.5-preview - Provider Model ID: imagineart/imagineart-1.5-preview/text-to-image - Pricing: - source: official - currency: USD - components: [{"type" => "output", "metric" => "image", "unit_price" => 0.03}] - source_url: https://fal.ai/models/imagineart/imagineart-1.5-preview/text-to-image - effective_at: 2025-12-29 ## Arena Benchmarks ### Intricate Floral Mandala - Elo: 1252 - Record: 7W / 4L / 4T (15 battles) - Rank: #3 of 15 ### Geometric Composition - Elo: 1231 - Record: 11W / 6L / 3T (20 battles) - Rank: #2 of 22 ### Heroic Super Hero Portrait - Elo: 1220 - Record: 14W / 3L / 2T (19 battles) - Rank: #3 of 19 ### Victorian Greenhouse Oasis - Elo: 1213 - Record: 11W / 6L / 2T (19 battles) - Rank: #3 of 17 ### Fantasy Warrior - Elo: 1210 - Record: 13W / 7L / 0T (20 battles) - Rank: #5 of 19 ### Modern Clean Menu - Elo: 1181 - Record: 9W / 5L / 0T (14 battles) - Rank: #9 of 19 ### Candid Street Photography - Elo: 1169 - Record: 11W / 5L / 1T (17 battles) - Rank: #9 of 22 ### Apollo 11: Journey to Tranquility - Elo: 1146 - Record: 4W / 6L / 0T (10 battles) - Rank: #12 of 19 ### Vintage Cafe Logo - Elo: 1134 - Record: 8W / 5L / 1T (14 battles) - Rank: #15 of 19 ### Isometric Miniature Diorama Scenes - Elo: 1123 - Record: 8W / 9L / 2T (19 battles) - Rank: #18 of 19 ### Fantasy Warrior - Elo: 1074 - Record: 2W / 2L / 0T (4 battles) - Rank: #8 of 14 ## Use Cases & Category Performance ### Photorealism (Text-to-Image) - Rank: #5 of 22 - Elo: 1212 - Record: 11W / 5L / 1T (17 battles) - Win Rate: 64.7% ### Portrait (Text-to-Image) - Rank: #6 of 19 - Elo: 1213 - Record: 13W / 7L / 0T (20 battles) - Win Rate: 65.0% ### Text Rendering (Text-to-Image) - Rank: #10 of 21 - Elo: 1224 - Record: 21W / 16L / 1T (38 battles) - Win Rate: 55.3% ### Product, Branding & Commercial (Text-to-Image) - Rank: #10 of 19 - Elo: 1170 - Record: 8W / 5L / 1T (14 battles) - Win Rate: 57.1% ## Image Gallery 16 images available for this model. - Curated examples: 5 - "A grand, cinematic wide shot of a bustling, old-world European library where the towering mahogany shelves merge into..." - "A wide, cinematic shot of a sophisticated, high-end gallery interior. In the center of a minimalist concrete wall, a ..." - "A hyper-realistic, close-up shot of a high-end designer leather bag resting on a polished marble countertop. In the b..." - "A hyper-realistic close-up of an artisan leatherworker's workbench, featuring a set of vintage steel stamps, a wooden..." - "A sunlit, minimalist bakery storefront with a large glass window displaying the hand-lettered gold leaf signage "FLOU..." - Competition results: 11 - Intricate Floral Mandala: #3 of 15 (Elo 1252) - Geometric Composition: #2 of 22 (Elo 1231) - Heroic Super Hero Portrait: #3 of 19 (Elo 1220) - Victorian Greenhouse Oasis: #3 of 17 (Elo 1213) - Fantasy Warrior: #5 of 19 (Elo 1210) - Modern Clean Menu: #9 of 19 (Elo 1181) - Candid Street Photography: #9 of 22 (Elo 1169) - Apollo 11: Journey to Tranquility: #12 of 19 (Elo 1146) - Vintage Cafe Logo: #15 of 19 (Elo 1134) - Isometric Miniature Diorama Scenes: #18 of 19 (Elo 1123) - Fantasy Warrior: #8 of 14 (Elo 1074) ## Example Prompt The following prompt was used to generate an example image in our playground: A sunlit, minimalist bakery storefront with a large glass window displaying the hand-lettered gold leaf signage "FLOUR & BLOOM". Inside, a baker frost a cake, while a capybara sits calmly on the sidewalk by the door, wearing a tiny bowtie. ## 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": "imagineart-1.5-preview", "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: 'imagineart-1.5-preview', 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="imagineart-1.5-preview", prompt="A serene mountain landscape at sunset", size="1024x1024" ) # { created: 1234567890, data: [{ url: "https://...", revised_prompt: "..." }] } print(response.data[0].url) ## About ## Overview ImagineArt 1.5 (Preview) is a high-fidelity text-to-image model developed by Vyro AI, designed specifically for professional and commercial design workflows. It distinguishes itself from earlier iterations by prioritizing photorealistic textures and a significant reduction in anatomical artifacts. The model is particularly focused on solving the historical challenge of legibility in generated imagery, offering enhanced control over embedded text and brand elements. ## Strengths * **Typography Precision:** Effectively renders complex strings of text within images, maintaining correct spelling and font consistency across varied backgrounds. * **Photorealistic Textures:** Produces skin tones, fabric weaves, and environmental lighting that closely mimic real-world photography, suitable for high-end lookbooks or product mockups. * **Prompt Adherence:** Shows a high degree of sensitivity to descriptive modifiers, allowing for precise control over camera angles, depth of field, and specific lighting conditions. * **Compositional Stability:** Demonstrates improved spatial awareness, accurately placing objects according to prepositional phrases in the prompt (e.g., "behind," "leaning against," or "centered within"). ## Limitations * **Computational Latency:** As a preview model optimized for quality, generation times may be longer compared to "Turbo" or lightning-distilled models intended for real-time applications. * **Complexity in Fine Details:** While primary subjects are sharp, extremely busy backgrounds or crowds in the far distance may still exhibit some characteristic AI softening or blurring. * **Experimental Nature:** Being a preview release, some edge-case prompts may yield inconsistent results as the model weights undergo further refinement for the final stable release. ## Technical Background ImagineArt 1.5 is built upon a latent diffusion architecture tailored for high-resolution output without the need for immediate upscaling. Vyro AI utilized a curated dataset of professional photography and graphic design assets, emphasizing high-contrast lighting and legible typography during the fine-tuning phase. Key technical optimizations were made to the cross-attention layers to improve the alignment between specific text tokens and their visual representation in the final pixel grid. ## Best For ImagineArt 1.5 is an ideal choice for creating marketing collateral, social media assets, and product concepts where brand messaging or specific text must be legible. It is particularly effective for designers who require a "photographed" look rather than an "illustrated" one. You can experiment with ImagineArt 1.5 (Preview) and integrate it into your production environment through Lumenfall’s unified API and interactive playground. ## Frequently Asked Questions ### How much does ImagineArt 1.5 (Preview) cost? ImagineArt 1.5 (Preview) starts at $0.03 per image through Lumenfall. Pricing varies by provider. Lumenfall does not add any markup to provider pricing. ### How do I use ImagineArt 1.5 (Preview) via API? You can use ImagineArt 1.5 (Preview) through Lumenfall's OpenAI-compatible API. Send requests to the unified endpoint with model ID "imagineart-1.5-preview". Code examples are available in Python, JavaScript, and cURL. ### Which providers offer ImagineArt 1.5 (Preview)? ImagineArt 1.5 (Preview) is available through Replicate and fal.ai on Lumenfall. Lumenfall automatically routes requests to the best available provider. ### What is the maximum resolution for ImagineArt 1.5 (Preview)? ImagineArt 1.5 (Preview) supports images up to 2048x2048 resolution. ## Links - Model Page: https://lumenfall.ai/models/vyro-ai/imagineart-1.5-preview - About: https://lumenfall.ai/models/vyro-ai/imagineart-1.5-preview/about - Providers, Pricing & Performance: https://lumenfall.ai/models/vyro-ai/imagineart-1.5-preview/providers - API Reference: https://lumenfall.ai/models/vyro-ai/imagineart-1.5-preview/api - Benchmarks: https://lumenfall.ai/models/vyro-ai/imagineart-1.5-preview/benchmarks - Use Cases: https://lumenfall.ai/models/vyro-ai/imagineart-1.5-preview/use-cases - Gallery: https://lumenfall.ai/models/vyro-ai/imagineart-1.5-preview/gallery - Playground: https://lumenfall.ai/playground?model=imagineart-1.5-preview - API Documentation: https://docs.lumenfall.ai