# Lucid Origin > Leonardo AI's versatile image model producing artistic and high-quality visuals with improved prompt adherence, diversity, and definition ## Quick Reference - Model ID: lucid-origin - Creator: Leonardo AI - Status: active - Family: lucid - Base URL: https://api.lumenfall.ai/openai/v1 ## Specifications - Input Modalities: text - Output Modalities: image ## Model Identifiers - Primary Slug: lucid-origin ## Dates ## Tags image-generation, text-to-image ## Available Providers ### Replicate - Config Key: replicate/lucid-origin - Provider Model ID: leonardoai/lucid-origin - Pricing: - notes: ["Leonardo AI's versatile image model", "High-fidelity with improved prompt adherence and diversity"] - source: official - currency: USD - components: [{"type" => "output", "metric" => "image", "unit_price" => 0.02}] - source_url: https://replicate.com/leonardoai/lucid-origin - effective_at: 2025-12-30 ## Arena Benchmarks ### Fantasy Warrior - Elo: 1253 - Record: 15W / 15L / 2T (32 battles) - Rank: #1 of 19 ### Adorable Baby Animals in Sunny Meadow - Elo: 1130 - Record: 3W / 3L / 1T (7 battles) - Rank: #16 of 23 ### Fantasy Warrior - Elo: 1069 - Record: 2W / 4L / 0T (6 battles) - Rank: #9 of 14 ## Use Cases & Category Performance ### Portrait (Text-to-Image) - Rank: #10 of 19 - Elo: 1189 - Record: 15W / 15L / 2T (32 battles) - Win Rate: 46.9% ## Image Gallery 7 images available for this model. - Curated examples: 4 - "A wide cinematic shot of a high-end, minimalist lifestyle boutique at dusk. Through the large glass storefront, warm ..." - "A macro photography shot of an antique copper compass resting on a weathered nautical map. Sunlight filters through a..." - "A hyper-realistic close-up portrait of an elderly watchmaker in a sun-drenched workshop, dust motes dancing in the go..." - "A cozy ceramic studio with a hand-painted wooden sign that reads "MELTED EARTH POTTERY" in elegant gold leaf letterin..." - Competition results: 3 - Fantasy Warrior: #1 of 19 (Elo 1253) - Adorable Baby Animals in Sunny Meadow: #16 of 23 (Elo 1130) - Fantasy Warrior: #9 of 14 (Elo 1069) ## Example Prompt The following prompt was used to generate an example image in our playground: A cozy ceramic studio with a hand-painted wooden sign that reads "MELTED EARTH POTTERY" in elegant gold leaf lettering. In the sun-drenched background, a capybara calmly rests on a terracotta floor tile near a potter's wheel. ## 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": "lucid-origin", "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: 'lucid-origin', 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="lucid-origin", prompt="A serene mountain landscape at sunset", size="1024x1024" ) # { created: 1234567890, data: [{ url: "https://...", revised_prompt: "..." }] } print(response.data[0].url) ## About ## Overview Lucid Origin is a versatile text-to-image model developed by Leonardo AI, designed to bridge the gap between creative artistic expression and technical precision. It serves as the foundational model within the Lucid family, prioritizing high-definition output and improved prompt adherence. The model is distinguished by its ability to maintain structural integrity across diverse visual styles, ranging from photorealistic textures to stylized digital art. ## Strengths * **Prompt Adherence:** Lucid Origin demonstrates a high degree of fidelity to complex, multi-subject prompts, accurately placing objects and attributes as described in the input text. * **Visual Definition:** The model excels at rendering fine details and sharp edges, reducing the frequency of blurriness in foreground subjects compared to standard base models. * **Stylistic Range:** It is capable of generating a broad spectrum of aesthetics—including oil paintings, 3D renders, and cinematic photography—without requiring extensive style-specific prompting. * **Compositional Diversity:** The model avoids "mode collapse" by providing varied layout interpretations for the same prompt, making it useful for creative exploration and brainstorming. ## Limitations * **Text Rendering:** Like many general-purpose generative models, it may struggle with rendering long strings of legible text or complex anatomical details like overlapping fingers in certain orientations. * **Optimization Overhead:** Achieving the highest level of detail may require more specific descriptors regarding lighting and camera settings than models specifically tuned for "one-word" aesthetics. ## Technical Background Lucid Origin is built upon a diffusion-based architecture optimized by Leonardo AI for enhanced aesthetic performance. The training process focused on a curated dataset that balances high-resolution photographic data with high-quality digital artwork, allowing the model to understand nuanced lighting and textural cues. Key technical decisions involve a refined latent space that allows for better separation of distinct visual concepts during the denoising process. ## Best For Lucid Origin is ideal for professional workflows requiring high-quality assets for concept art, architectural visualization, and marketing materials where visual clarity is paramount. It is a strong choice for users who need a reliable general-purpose model that can handle both realistic and imaginative requests with equal competence. You can experiment with Lucid Origin and compare its outputs directly with other industry-leading models through **Lumenfall’s unified API and playground**. ## Frequently Asked Questions ### How much does Lucid Origin cost? Lucid Origin starts at $0.02 per image through Lumenfall. Pricing varies by provider. Lumenfall does not add any markup to provider pricing. ### How do I use Lucid Origin via API? You can use Lucid Origin through Lumenfall's OpenAI-compatible API. Send requests to the unified endpoint with model ID "lucid-origin". Code examples are available in Python, JavaScript, and cURL. ### Which providers offer Lucid Origin? Lucid Origin is available through Replicate on Lumenfall. Lumenfall automatically routes requests to the best available provider. ## Links - Model Page: https://lumenfall.ai/models/leonardo-ai/lucid-origin - About: https://lumenfall.ai/models/leonardo-ai/lucid-origin/about - Providers, Pricing & Performance: https://lumenfall.ai/models/leonardo-ai/lucid-origin/providers - API Reference: https://lumenfall.ai/models/leonardo-ai/lucid-origin/api - Benchmarks: https://lumenfall.ai/models/leonardo-ai/lucid-origin/benchmarks - Use Cases: https://lumenfall.ai/models/leonardo-ai/lucid-origin/use-cases - Gallery: https://lumenfall.ai/models/leonardo-ai/lucid-origin/gallery - Playground: https://lumenfall.ai/playground?model=lucid-origin - API Documentation: https://docs.lumenfall.ai