News
October 10, 2024

Top 10 Prompts for Flux 1.1 Pro: Best Image Generation Ideas

Faster, sharper, and more creative than ever — bring your ideas to life with Flux 1.1 Pro

The excitement surrounding AI image generation continues to grow, especially with the recent release of Flux 1.1 Pro. Following our previous blog post on effective prompts for Flux.1, we are thrilled to present the next installment in our prompt series.

This time, we delve into the top 10 prompts specifically designed to maximize the capabilities of Flux 1.1 Pro, an advanced model that offers significant enhancements in speed, quality, and prompt adherence.

Why Flux 1.1 Pro Stands Out

The development of Flux 1.1 Pro by Black Forest Labs was shrouded in mystery, initially referred to as Project Blueberry. Hold up, isn’t this a story we’ve heard already? This playful codename highlighted the model's evolution from previous iterations, promising exciting new features and improvements.

Flux has consistently offered three variations: Flux .1 Schnell, a nod to the German word for "fast," Flux.1 Dev and Flux.1 Pro. With the introduction of the new 1.1 model, Flux Pro has made significant advancements. Just how significant? Considering the German affinity for precision, the Flux 1.1 Pro model produces images at 6 times the speed of its predecessor, taking less than five seconds to produce an image.

This enhancement isn't just about speed; it also boosts user satisfaction by better adhering to complex prompts and improving overall image quality. For digital artists, marketers, and designers, the Flux 1.1 Pro opens up new avenues for creative expression, enabling them to realize their visions with unprecedented accuracy.

Explore the technical specifications and image model comparisons for the Flux 1.1 Pro here.

Where to get Flux 1.1 Pro API?

Eager to get started with the Flux 1.1 Pro API? You're in luck! Just visit our AI ML API platform, where you can copy your API key and effortlessly bring Flux into your projects.

Plus, we’ve got something extra for you: access Flux.1 Schnell for Free in our Playground with non code environment.

General prompting recommendation

1. Craft detailed and specific prompts that incorporate various elements. This includes the subject, style, composition, lighting, and color palette, as well as technical details such as camera settings and atmospheric conditions.

2. To avoid blur background, do prompt enhancement with "describe the background in detail" or actually include detailed background attributes like texture, color, objects, and depth.

3. When comparing Flux to other models, a key difference in prompting style can be observed. While Midjourney responds well to descriptive keywords (e.g. "hyperrealistic"), adjectives, and examples, Flux prioritizes technical accuracy. To achieve optimal results with Flux, focus on specific camera types, settings, and environmental descriptions instead of relying on general terms.

Although these guidelines can be somewhat restrictive, prioritizing technical accuracy over artistic expression, they enable Flux to effectively process intricate prompts and unlock advanced creative possibilities.

4. To perfect your prompts for Flux 1.1 Pro use text generation model Llama 3 70B Instruct for Free in AI Playground.

Top 10 Prompts for Flux 1.1 Pro

1. IMG_1080.jpg

One of the standout features of Flux1.1 Pro is its ability to generate highly realistic phone photos, particularly selfies. For optimal results, we recommend using prompts in the format of IMG_1086.jpg along with a brief description of the image content.

Prompt: "IMG_1086.jpg, birthday, girl selfie".

Don't worry if you encounter some hallucinations occasionally, for example, hands. Correct results are being consistently obtained on the first attempt, and they appear more often than with previous Flux.

2. Human emotions

Prompt: "Close-up portrait of a child with bright, vivid emotions, their eyes wide and sparkling with joy, a genuine, infectious smile spreading across their face. The sunlight dances on their features, highlighting the rosy cheeks and creating a warm, radiant glow. The background is slightly out of focus, enhancing the child's exuberant expression and the feeling of pure, unfiltered happiness".

3. Reflections in Nature

Prompt: "Capture a serene lake reflecting a dense forest during golden hour. The composition should emphasize symmetry, with the horizon line perfectly dividing the image. Use a DSLR camera with a wide-angle lens, setting the aperture to f/8 for depth of field, ISO 100 for clarity, and a shutter speed of 1/125 to capture natural lighting. The color palette should include deep greens, soft oranges, and gentle blues to highlight the warm, peaceful atmosphere".

4. In-Camera Motion Blurs

Prompt: "Photograph a dancer in motion using a DSLR with a 24-105mm lens, set to f/16 and a slow shutter speed of 1/15s. The background is a dimly lit studio with a spotlight on the dancer. The motion blur conveys energy and fluidity."

5. Long Exposure Light Writing

Prompt: "Photograph light trails created by sparklers against a night sky. Use a DSLR camera with a 35mm lens, set to f/22 and a long exposure of 10 seconds. The scene is illuminated by the light trails, creating intricate patterns against a starry backdrop".

6. Through the Looking Glass

Prompt: "Capture a bustling city street through a rain-soaked window using a compact camera with a 24-70mm lens, f/5.6, and ISO 800. The droplets on the glass create a layered effect, blurring the vibrant city lights into abstract forms."

7. Through Glass Textures

Prompt: "Capture an image of a person holding a large, transparent orb in a forest setting. Use a digital camera with a 16-35mm lens, f/2.8, and ISO 400. The orb distorts and magnifies the forest background, with soft, natural lighting creating a magical atmosphere".

8. Shadow Play

Prompt: "Capture a dramatic image of shadows cast by a human figure against an ornate brick wall. Use a DSLR camera with a 50mm lens, set to f/1.8 for a shallow depth of field, and ISO 100 to reduce noise. Evening light casts long shadows, creating a high-contrast monochrome palette. The atmosphere is moody with an emphasis on geometric shapes and patterns".

9. Spontaneous Human Interaction

Prompt: "Capture the fleeting moment when strangers share a spontaneous laugh at a street corner in a bustling city. Focus on the joyful expressions, diverse clothing styles, and the vibrant, textured background of urban graffiti and bustling pedestrians. Use a Canon EOS R5 at 1/500s, f/2.8, ISO 400 to capture the motion and emotion vividly. The atmosphere should convey the energy and diversity of city life, with the warm hues of a setting sun casting long shadows".

10. Logo Creation

Prompt: "A logo for 'AI ML API' is presented in two different settings. In the first, the logo appears on a diary cover, featuring a minimalist black icon and a sleek sans-serif font. In the second, the logo is displayed on a large signboard with the same minimalist clack and white design and font style. A black and white color scheme is used to convey a sense of optimism and dynamic. The logo maintains a clean, professional, and approachable look, making it suitable for both small applications like diaries and larger formats like signboards".

Conclusion

These ten prompts are just the beginning of what you can do with Flux 1.1 Pro. To dive in, grab your API key from the AI/ML API platform and use the simple code snippet below to get started.

import requests
import base64


def main():
    headers = {
        "Authorization": "Bearer <YOUR_API_KEY>",
    }

    payload = {
        "prompt": "IMG_1086.jpg, birthday, girl selfie.",
        "model": "flux-pro/v1.1",
    }

    response = requests.post(
        "https://api.aimlapi.com/images/generations", headers=headers, json=payload
    )

    image_base64 = response.json()["output"]["choices"][0]["image_base64"]
    image_data = base64.b64decode(image_base64)

    with open("./image.png", "wb") as file:
        file.write(image_data)


main()

You can experience the power of Flux 1.1 Pro firsthand by testing the new model on our interactive AI playground. This user-friendly platform allows you to experiment with various prompts and settings, giving you a feel for the model's capabilities.

For those who prefer a more integrated experience, we've partnered with the innovative startup Amigo Chat. Through their app, you can seamlessly generate images using Flux 1.1 Pro, along with accessing other exciting features. This option is perfect for users who want to incorporate image generation into their daily messaging and social media routines.

Whether you choose our playground or Amigo Chat, you'll have the opportunity to bring your creative ideas to life and explore the full potential of Flux 1.1 Pro. We encourage you to try both options and discover which one best suits your needs and workflow.

Get API Key