MODEL IDrunware:400@1
live

FLUX.2 [dev]

Black Forest Labs
by Black Forest Labs

FLUX.2 dev is an open weight text to image and image editing model from Black Forest Labs. It targets developers who need precise control over prompts, references, and iteration. Use it for non commercial research, workflow prototyping, and multi conditioning image pipelines.

FLUX.2 [dev]
Text to Image

Surreal Botanical Fashion Portrait

Surreal Botanical Fashion Portrait

An avant-garde editorial fashion portrait of a regal model standing in a moonlit glass conservatory, wearing a sculptural gown made of translucent petals, fine gold filigree, and bioluminescent vines; intricate botanical crown, porcelain skin, subtle freckles, dramatic eyes, elegant pose, soft mist curling around marble floors, oversized tropical flowers opening in the background, luminous pollen drifting through the air, cinematic rim lighting, rich jewel tones, ultra-detailed textures, shallow depth of field, luxury magazine photography, surreal yet refined composition

import { createClient } from '@runware/sdk'

const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()

const [result] = await client.run({
  model: 'runware:400@1',
  positivePrompt: 'An avant-garde editorial fashion portrait of a regal model standing in a moonlit glass conservatory, wearing a sculptural gown made of translucent petals, fine gold filigree, and bioluminescent vines; intricate botanical crown, porcelain skin, subtle freckles, dramatic eyes, elegant pose, soft mist curling around marble floors, oversized tropical flowers opening in the background, luminous pollen drifting through the air, cinematic rim lighting, rich jewel tones, ultra-detailed textures, shallow depth of field, luxury magazine photography, surreal yet refined composition',
  width: 1024,
  height: 1536,
  seed: 18472951,
  steps: 28,
  CFGScale: 4
})
import asyncio
import os

from runware import Runware


async def main():
    async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
        results = await client.run({
            "model": "runware:400@1",
            "positivePrompt": "An avant-garde editorial fashion portrait of a regal model standing in a moonlit glass conservatory, wearing a sculptural gown made of translucent petals, fine gold filigree, and bioluminescent vines; intricate botanical crown, porcelain skin, subtle freckles, dramatic eyes, elegant pose, soft mist curling around marble floors, oversized tropical flowers opening in the background, luminous pollen drifting through the air, cinematic rim lighting, rich jewel tones, ultra-detailed textures, shallow depth of field, luxury magazine photography, surreal yet refined composition",
            "width": 1024,
            "height": 1536,
            "seed": 18472951,
            "steps": 28,
            "CFGScale": 4
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "imageInference",
      "taskUUID": "d0e2c4dc-41fa-41b4-aadc-aac2032bf0cc",
      "model": "runware:400@1",
      "positivePrompt": "An avant-garde editorial fashion portrait of a regal model standing in a moonlit glass conservatory, wearing a sculptural gown made of translucent petals, fine gold filigree, and bioluminescent vines; intricate botanical crown, porcelain skin, subtle freckles, dramatic eyes, elegant pose, soft mist curling around marble floors, oversized tropical flowers opening in the background, luminous pollen drifting through the air, cinematic rim lighting, rich jewel tones, ultra-detailed textures, shallow depth of field, luxury magazine photography, surreal yet refined composition",
      "width": 1024,
      "height": 1536,
      "seed": 18472951,
      "steps": 28,
      "CFGScale": 4
    }
  ]'
runware run runware:400@1 \
  positivePrompt="An avant-garde editorial fashion portrait of a regal model standing in a moonlit glass conservatory, wearing a sculptural gown made of translucent petals, fine gold filigree, and bioluminescent vines; intricate botanical crown, porcelain skin, subtle freckles, dramatic eyes, elegant pose, soft mist curling around marble floors, oversized tropical flowers opening in the background, luminous pollen drifting through the air, cinematic rim lighting, rich jewel tones, ultra-detailed textures, shallow depth of field, luxury magazine photography, surreal yet refined composition" \
  width=1024 \
  height=1536 \
  seed=18472951 \
  steps=28 \
  CFGScale=4
{
  "taskType": "imageInference",
  "taskUUID": "d0e2c4dc-41fa-41b4-aadc-aac2032bf0cc",
  "model": "runware:400@1",
  "positivePrompt": "An avant-garde editorial fashion portrait of a regal model standing in a moonlit glass conservatory, wearing a sculptural gown made of translucent petals, fine gold filigree, and bioluminescent vines; intricate botanical crown, porcelain skin, subtle freckles, dramatic eyes, elegant pose, soft mist curling around marble floors, oversized tropical flowers opening in the background, luminous pollen drifting through the air, cinematic rim lighting, rich jewel tones, ultra-detailed textures, shallow depth of field, luxury magazine photography, surreal yet refined composition",
  "width": 1024,
  "height": 1536,
  "seed": 18472951,
  "steps": 28,
  "CFGScale": 4
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "d0e2c4dc-41fa-41b4-aadc-aac2032bf0cc",
  "imageUUID": "077eebcc-4d0c-47d5-8584-715b23acffa2",
  "imageURL": "https://im.runware.ai/image/os/a19d05/ws/2/ii/077eebcc-4d0c-47d5-8584-715b23acffa2.jpg",
  "seed": 18472951,
  "cost": 0.1062
}
Text to Image

Surreal Botanical Portrait

Surreal Botanical Portrait

An ultra-detailed surreal editorial portrait of a serene woman emerging from a garden of bioluminescent orchids and translucent ferns, delicate petals woven into her hair like a couture headdress, porcelain skin with subtle freckles, iridescent dew droplets, cinematic soft rim lighting, moody emerald and violet color palette, shallow depth of field, fine botanical textures, elegant composition, high-fashion magazine aesthetic, dreamlike atmosphere, crisp facial features, richly layered background, premium studio quality

import { createClient } from '@runware/sdk'

const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()

const [result] = await client.run({
  model: 'runware:400@1',
  positivePrompt: 'An ultra-detailed surreal editorial portrait of a serene woman emerging from a garden of bioluminescent orchids and translucent ferns, delicate petals woven into her hair like a couture headdress, porcelain skin with subtle freckles, iridescent dew droplets, cinematic soft rim lighting, moody emerald and violet color palette, shallow depth of field, fine botanical textures, elegant composition, high-fashion magazine aesthetic, dreamlike atmosphere, crisp facial features, richly layered background, premium studio quality',
  width: 1024,
  height: 1536,
  seed: 314159,
  steps: 28,
  CFGScale: 4
})
import asyncio
import os

from runware import Runware


async def main():
    async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
        results = await client.run({
            "model": "runware:400@1",
            "positivePrompt": "An ultra-detailed surreal editorial portrait of a serene woman emerging from a garden of bioluminescent orchids and translucent ferns, delicate petals woven into her hair like a couture headdress, porcelain skin with subtle freckles, iridescent dew droplets, cinematic soft rim lighting, moody emerald and violet color palette, shallow depth of field, fine botanical textures, elegant composition, high-fashion magazine aesthetic, dreamlike atmosphere, crisp facial features, richly layered background, premium studio quality",
            "width": 1024,
            "height": 1536,
            "seed": 314159,
            "steps": 28,
            "CFGScale": 4
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "imageInference",
      "taskUUID": "15a90813-4dc2-4047-b3aa-c4fa5ba18312",
      "model": "runware:400@1",
      "positivePrompt": "An ultra-detailed surreal editorial portrait of a serene woman emerging from a garden of bioluminescent orchids and translucent ferns, delicate petals woven into her hair like a couture headdress, porcelain skin with subtle freckles, iridescent dew droplets, cinematic soft rim lighting, moody emerald and violet color palette, shallow depth of field, fine botanical textures, elegant composition, high-fashion magazine aesthetic, dreamlike atmosphere, crisp facial features, richly layered background, premium studio quality",
      "width": 1024,
      "height": 1536,
      "seed": 314159,
      "steps": 28,
      "CFGScale": 4
    }
  ]'
runware run runware:400@1 \
  positivePrompt="An ultra-detailed surreal editorial portrait of a serene woman emerging from a garden of bioluminescent orchids and translucent ferns, delicate petals woven into her hair like a couture headdress, porcelain skin with subtle freckles, iridescent dew droplets, cinematic soft rim lighting, moody emerald and violet color palette, shallow depth of field, fine botanical textures, elegant composition, high-fashion magazine aesthetic, dreamlike atmosphere, crisp facial features, richly layered background, premium studio quality" \
  width=1024 \
  height=1536 \
  seed=314159 \
  steps=28 \
  CFGScale=4
{
  "taskType": "imageInference",
  "taskUUID": "15a90813-4dc2-4047-b3aa-c4fa5ba18312",
  "model": "runware:400@1",
  "positivePrompt": "An ultra-detailed surreal editorial portrait of a serene woman emerging from a garden of bioluminescent orchids and translucent ferns, delicate petals woven into her hair like a couture headdress, porcelain skin with subtle freckles, iridescent dew droplets, cinematic soft rim lighting, moody emerald and violet color palette, shallow depth of field, fine botanical textures, elegant composition, high-fashion magazine aesthetic, dreamlike atmosphere, crisp facial features, richly layered background, premium studio quality",
  "width": 1024,
  "height": 1536,
  "seed": 314159,
  "steps": 28,
  "CFGScale": 4
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "15a90813-4dc2-4047-b3aa-c4fa5ba18312",
  "imageUUID": "e390dd59-3f8e-4ee4-ad6f-2996d1f50044",
  "imageURL": "https://im.runware.ai/image/os/a08d21/ws/2/ii/e390dd59-3f8e-4ee4-ad6f-2996d1f50044.jpg",
  "seed": 314159,
  "cost": 0.0179
}
Text to Image

Mythic Bioluminescent Forest

Mythic Bioluminescent Forest

A mythic bioluminescent forest at twilight, towering ancient trees with glowing blue and violet moss, translucent mushrooms illuminating the path, a crystal-clear stream reflecting constellations, drifting firefly-like spirits, dense volumetric fog, intricate bark textures, luminous flora, cinematic fantasy concept art, ultra-detailed, painterly realism, dramatic depth, rich color contrast, ethereal atmosphere

import { createClient } from '@runware/sdk'

const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()

const [result] = await client.run({
  model: 'runware:400@1',
  positivePrompt: 'A mythic bioluminescent forest at twilight, towering ancient trees with glowing blue and violet moss, translucent mushrooms illuminating the path, a crystal-clear stream reflecting constellations, drifting firefly-like spirits, dense volumetric fog, intricate bark textures, luminous flora, cinematic fantasy concept art, ultra-detailed, painterly realism, dramatic depth, rich color contrast, ethereal atmosphere',
  width: 1024,
  height: 1536,
  seed: 314159,
  steps: 32,
  CFGScale: 4
})
import asyncio
import os

from runware import Runware


async def main():
    async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
        results = await client.run({
            "model": "runware:400@1",
            "positivePrompt": "A mythic bioluminescent forest at twilight, towering ancient trees with glowing blue and violet moss, translucent mushrooms illuminating the path, a crystal-clear stream reflecting constellations, drifting firefly-like spirits, dense volumetric fog, intricate bark textures, luminous flora, cinematic fantasy concept art, ultra-detailed, painterly realism, dramatic depth, rich color contrast, ethereal atmosphere",
            "width": 1024,
            "height": 1536,
            "seed": 314159,
            "steps": 32,
            "CFGScale": 4
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "imageInference",
      "taskUUID": "53e4a2e8-9869-4ed5-8880-7e55a97a31da",
      "model": "runware:400@1",
      "positivePrompt": "A mythic bioluminescent forest at twilight, towering ancient trees with glowing blue and violet moss, translucent mushrooms illuminating the path, a crystal-clear stream reflecting constellations, drifting firefly-like spirits, dense volumetric fog, intricate bark textures, luminous flora, cinematic fantasy concept art, ultra-detailed, painterly realism, dramatic depth, rich color contrast, ethereal atmosphere",
      "width": 1024,
      "height": 1536,
      "seed": 314159,
      "steps": 32,
      "CFGScale": 4
    }
  ]'
runware run runware:400@1 \
  positivePrompt="A mythic bioluminescent forest at twilight, towering ancient trees with glowing blue and violet moss, translucent mushrooms illuminating the path, a crystal-clear stream reflecting constellations, drifting firefly-like spirits, dense volumetric fog, intricate bark textures, luminous flora, cinematic fantasy concept art, ultra-detailed, painterly realism, dramatic depth, rich color contrast, ethereal atmosphere" \
  width=1024 \
  height=1536 \
  seed=314159 \
  steps=32 \
  CFGScale=4
{
  "taskType": "imageInference",
  "taskUUID": "53e4a2e8-9869-4ed5-8880-7e55a97a31da",
  "model": "runware:400@1",
  "positivePrompt": "A mythic bioluminescent forest at twilight, towering ancient trees with glowing blue and violet moss, translucent mushrooms illuminating the path, a crystal-clear stream reflecting constellations, drifting firefly-like spirits, dense volumetric fog, intricate bark textures, luminous flora, cinematic fantasy concept art, ultra-detailed, painterly realism, dramatic depth, rich color contrast, ethereal atmosphere",
  "width": 1024,
  "height": 1536,
  "seed": 314159,
  "steps": 32,
  "CFGScale": 4
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "53e4a2e8-9869-4ed5-8880-7e55a97a31da",
  "imageUUID": "533213c7-e286-459b-a322-80bd150f9ae1",
  "imageURL": "https://im.runware.ai/image/os/a25d05/ws/2/ii/533213c7-e286-459b-a322-80bd150f9ae1.jpg",
  "seed": 314159,
  "cost": 0.0198
}
Image to Image

Editorial Fashion Portrait

Editorial Fashion Portrait

High-fashion editorial portrait, same subject and overall pose as the reference image, transformed into a luxury magazine cover shoot, sculptural avant-garde couture in ivory and silver, dramatic softbox lighting with subtle rim light, refined skin texture, elegant fabric folds, minimal gallery-like background, cinematic depth, crisp facial detail, premium beauty retouching, sophisticated color grading, photorealistic, ultra-clean composition

import { createClient } from '@runware/sdk'

const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()

const [result] = await client.run({
  referenceImages: [
    'https://assets.runware.ai/assets/inputs/9e62ffe6-d89e-4fe6-a33f-597a45ba0920.jpg'
  ],
  model: 'runware:400@1',
  positivePrompt: 'High-fashion editorial portrait, same subject and overall pose as the reference image, transformed into a luxury magazine cover shoot, sculptural avant-garde couture in ivory and silver, dramatic softbox lighting with subtle rim light, refined skin texture, elegant fabric folds, minimal gallery-like background, cinematic depth, crisp facial detail, premium beauty retouching, sophisticated color grading, photorealistic, ultra-clean composition',
  width: 1024,
  height: 1536,
  seed: 1337,
  steps: 32,
  CFGScale: 4
})
import asyncio
import os

from runware import Runware


async def main():
    async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
        results = await client.run({
            "referenceImages": [
                "https://assets.runware.ai/assets/inputs/9e62ffe6-d89e-4fe6-a33f-597a45ba0920.jpg"
            ],
            "model": "runware:400@1",
            "positivePrompt": "High-fashion editorial portrait, same subject and overall pose as the reference image, transformed into a luxury magazine cover shoot, sculptural avant-garde couture in ivory and silver, dramatic softbox lighting with subtle rim light, refined skin texture, elegant fabric folds, minimal gallery-like background, cinematic depth, crisp facial detail, premium beauty retouching, sophisticated color grading, photorealistic, ultra-clean composition",
            "width": 1024,
            "height": 1536,
            "seed": 1337,
            "steps": 32,
            "CFGScale": 4
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "imageInference",
      "taskUUID": "33486e63-85c0-475b-8709-528a1c97c3d7",
      "referenceImages": [
        "https://assets.runware.ai/assets/inputs/9e62ffe6-d89e-4fe6-a33f-597a45ba0920.jpg"
      ],
      "model": "runware:400@1",
      "positivePrompt": "High-fashion editorial portrait, same subject and overall pose as the reference image, transformed into a luxury magazine cover shoot, sculptural avant-garde couture in ivory and silver, dramatic softbox lighting with subtle rim light, refined skin texture, elegant fabric folds, minimal gallery-like background, cinematic depth, crisp facial detail, premium beauty retouching, sophisticated color grading, photorealistic, ultra-clean composition",
      "width": 1024,
      "height": 1536,
      "seed": 1337,
      "steps": 32,
      "CFGScale": 4
    }
  ]'
runware run runware:400@1 \
  referenceImages.0=https://assets.runware.ai/assets/inputs/9e62ffe6-d89e-4fe6-a33f-597a45ba0920.jpg \
  positivePrompt="High-fashion editorial portrait, same subject and overall pose as the reference image, transformed into a luxury magazine cover shoot, sculptural avant-garde couture in ivory and silver, dramatic softbox lighting with subtle rim light, refined skin texture, elegant fabric folds, minimal gallery-like background, cinematic depth, crisp facial detail, premium beauty retouching, sophisticated color grading, photorealistic, ultra-clean composition" \
  width=1024 \
  height=1536 \
  seed=1337 \
  steps=32 \
  CFGScale=4
{
  "taskType": "imageInference",
  "taskUUID": "33486e63-85c0-475b-8709-528a1c97c3d7",
  "referenceImages": [
    "https://assets.runware.ai/assets/inputs/9e62ffe6-d89e-4fe6-a33f-597a45ba0920.jpg"
  ],
  "model": "runware:400@1",
  "positivePrompt": "High-fashion editorial portrait, same subject and overall pose as the reference image, transformed into a luxury magazine cover shoot, sculptural avant-garde couture in ivory and silver, dramatic softbox lighting with subtle rim light, refined skin texture, elegant fabric folds, minimal gallery-like background, cinematic depth, crisp facial detail, premium beauty retouching, sophisticated color grading, photorealistic, ultra-clean composition",
  "width": 1024,
  "height": 1536,
  "seed": 1337,
  "steps": 32,
  "CFGScale": 4
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "33486e63-85c0-475b-8709-528a1c97c3d7",
  "imageUUID": "4dbd4987-4ee4-43d6-8fed-e8c156b16670",
  "imageURL": "https://im.runware.ai/image/os/a14d18/ws/2/ii/4dbd4987-4ee4-43d6-8fed-e8c156b16670.jpg",
  "seed": 1337,
  "cost": 0.0326
}