MODEL IDkrea:krea@2-turbo
live

Krea 2 Turbo

Krea
by Krea

Krea 2 Turbo is the speed-optimized variant of Krea 2. It is designed to preserve as much of the original Krea 2 creative workflow as possible while running significantly faster, making it well suited to rapid ideation, prompt experimentation, early concept work, and other iteration-heavy image generation tasks where responsiveness matters more than the stronger final-image polish of the larger Krea 2 variants.

Krea 2 Turbo
Text to Image

Glass Orchestra Rehearsal Chamber

Glass Orchestra Rehearsal Chamber

A cinematic wide-angle concept image of a futuristic rehearsal chamber where an ensemble of translucent glass instruments levitates above polished black floors, faceted walls splitting warm amber and icy blue stage beams into prismatic reflections, a conductor's podium made of frosted quartz, thin holographic sheet music floating in precise arcs, musicians in sculptural ivory suits, dramatic depth, crisp reflections, sleek production design, ultra detailed, clean composition, high contrast, no text

import { createClient } from '@runware/sdk'

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

const [result] = await client.run({
  model: 'krea:krea@2-turbo',
  positivePrompt: 'A cinematic wide-angle concept image of a futuristic rehearsal chamber where an ensemble of translucent glass instruments levitates above polished black floors, faceted walls splitting warm amber and icy blue stage beams into prismatic reflections, a conductor\'s podium made of frosted quartz, thin holographic sheet music floating in precise arcs, musicians in sculptural ivory suits, dramatic depth, crisp reflections, sleek production design, ultra detailed, clean composition, high contrast, no text',
  width: 1376,
  height: 768,
  seed: 83539,
  settings: {
    creativity: 'high',
    moodboards: [
      {
        id: '0bff265b-ba63-468f-9acb-e38705a343b8',
        strength: 0.32
      }
    ]
  }
})
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": "krea:krea@2-turbo",
            "positivePrompt": "A cinematic wide-angle concept image of a futuristic rehearsal chamber where an ensemble of translucent glass instruments levitates above polished black floors, faceted walls splitting warm amber and icy blue stage beams into prismatic reflections, a conductor's podium made of frosted quartz, thin holographic sheet music floating in precise arcs, musicians in sculptural ivory suits, dramatic depth, crisp reflections, sleek production design, ultra detailed, clean composition, high contrast, no text",
            "width": 1376,
            "height": 768,
            "seed": 83539,
            "settings": {
                "creativity": "high",
                "moodboards": [
                    {
                        "id": "0bff265b-ba63-468f-9acb-e38705a343b8",
                        "strength": 0.32
                    }
                ]
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "imageInference",
      "taskUUID": "9b4dda71-3e6c-4a88-b6c1-34866235bb6e",
      "model": "krea:krea@2-turbo",
      "positivePrompt": "A cinematic wide-angle concept image of a futuristic rehearsal chamber where an ensemble of translucent glass instruments levitates above polished black floors, faceted walls splitting warm amber and icy blue stage beams into prismatic reflections, a conductor's podium made of frosted quartz, thin holographic sheet music floating in precise arcs, musicians in sculptural ivory suits, dramatic depth, crisp reflections, sleek production design, ultra detailed, clean composition, high contrast, no text",
      "width": 1376,
      "height": 768,
      "seed": 83539,
      "settings": {
        "creativity": "high",
        "moodboards": [
          {
            "id": "0bff265b-ba63-468f-9acb-e38705a343b8",
            "strength": 0.32
          }
        ]
      }
    }
  ]'
runware run krea:krea@2-turbo \
  positivePrompt="A cinematic wide-angle concept image of a futuristic rehearsal chamber where an ensemble of translucent glass instruments levitates above polished black floors, faceted walls splitting warm amber and icy blue stage beams into prismatic reflections, a conductor's podium made of frosted quartz, thin holographic sheet music floating in precise arcs, musicians in sculptural ivory suits, dramatic depth, crisp reflections, sleek production design, ultra detailed, clean composition, high contrast, no text" \
  width=1376 \
  height=768 \
  seed=83539 \
  settings.creativity=high \
  settings.moodboards.0.id=0bff265b-ba63-468f-9acb-e38705a343b8 \
  settings.moodboards.0.strength=0.32
{
  "taskType": "imageInference",
  "taskUUID": "9b4dda71-3e6c-4a88-b6c1-34866235bb6e",
  "model": "krea:krea@2-turbo",
  "positivePrompt": "A cinematic wide-angle concept image of a futuristic rehearsal chamber where an ensemble of translucent glass instruments levitates above polished black floors, faceted walls splitting warm amber and icy blue stage beams into prismatic reflections, a conductor's podium made of frosted quartz, thin holographic sheet music floating in precise arcs, musicians in sculptural ivory suits, dramatic depth, crisp reflections, sleek production design, ultra detailed, clean composition, high contrast, no text",
  "width": 1376,
  "height": 768,
  "seed": 83539,
  "settings": {
    "creativity": "high",
    "moodboards": [
      {
        "id": "0bff265b-ba63-468f-9acb-e38705a343b8",
        "strength": 0.32
      }
    ]
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "9b4dda71-3e6c-4a88-b6c1-34866235bb6e",
  "imageUUID": "2f5a25f5-060e-4698-8296-6e50e2830cb4",
  "imageURL": "https://im.runware.ai/image/os/a02d21/ws/3/ii/2f5a25f5-060e-4698-8296-6e50e2830cb4.jpg",
  "seed": 83539,
  "cost": 0.02
}
Text to Image

Polar Seed Vault Atrium

Polar Seed Vault Atrium

An expansive interior of a polar seed vault converted into a living botanical archive, faceted ice ceiling with green aurora glow filtering through, towering frost-coated glass cylinders holding heirloom plants, a solitary curator in a white insulated parka examining seed vials on a stainless table, condensation mist, polished concrete floor with thin channels of meltwater, soft cyan and emerald lighting, cinematic wide shot, ultra-detailed textures, crisp depth, futuristic conservation facility, quiet hopeful mood

import { createClient } from '@runware/sdk'

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

const [result] = await client.run({
  model: 'krea:krea@2-turbo',
  positivePrompt: 'An expansive interior of a polar seed vault converted into a living botanical archive, faceted ice ceiling with green aurora glow filtering through, towering frost-coated glass cylinders holding heirloom plants, a solitary curator in a white insulated parka examining seed vials on a stainless table, condensation mist, polished concrete floor with thin channels of meltwater, soft cyan and emerald lighting, cinematic wide shot, ultra-detailed textures, crisp depth, futuristic conservation facility, quiet hopeful mood',
  width: 1376,
  height: 768,
  seed: 40501,
  settings: {
    creativity: 'high'
  }
})
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": "krea:krea@2-turbo",
            "positivePrompt": "An expansive interior of a polar seed vault converted into a living botanical archive, faceted ice ceiling with green aurora glow filtering through, towering frost-coated glass cylinders holding heirloom plants, a solitary curator in a white insulated parka examining seed vials on a stainless table, condensation mist, polished concrete floor with thin channels of meltwater, soft cyan and emerald lighting, cinematic wide shot, ultra-detailed textures, crisp depth, futuristic conservation facility, quiet hopeful mood",
            "width": 1376,
            "height": 768,
            "seed": 40501,
            "settings": {
                "creativity": "high"
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "imageInference",
      "taskUUID": "4d60fb34-652f-4160-837e-0e7c440607a7",
      "model": "krea:krea@2-turbo",
      "positivePrompt": "An expansive interior of a polar seed vault converted into a living botanical archive, faceted ice ceiling with green aurora glow filtering through, towering frost-coated glass cylinders holding heirloom plants, a solitary curator in a white insulated parka examining seed vials on a stainless table, condensation mist, polished concrete floor with thin channels of meltwater, soft cyan and emerald lighting, cinematic wide shot, ultra-detailed textures, crisp depth, futuristic conservation facility, quiet hopeful mood",
      "width": 1376,
      "height": 768,
      "seed": 40501,
      "settings": {
        "creativity": "high"
      }
    }
  ]'
runware run krea:krea@2-turbo \
  positivePrompt="An expansive interior of a polar seed vault converted into a living botanical archive, faceted ice ceiling with green aurora glow filtering through, towering frost-coated glass cylinders holding heirloom plants, a solitary curator in a white insulated parka examining seed vials on a stainless table, condensation mist, polished concrete floor with thin channels of meltwater, soft cyan and emerald lighting, cinematic wide shot, ultra-detailed textures, crisp depth, futuristic conservation facility, quiet hopeful mood" \
  width=1376 \
  height=768 \
  seed=40501 \
  settings.creativity=high
{
  "taskType": "imageInference",
  "taskUUID": "4d60fb34-652f-4160-837e-0e7c440607a7",
  "model": "krea:krea@2-turbo",
  "positivePrompt": "An expansive interior of a polar seed vault converted into a living botanical archive, faceted ice ceiling with green aurora glow filtering through, towering frost-coated glass cylinders holding heirloom plants, a solitary curator in a white insulated parka examining seed vials on a stainless table, condensation mist, polished concrete floor with thin channels of meltwater, soft cyan and emerald lighting, cinematic wide shot, ultra-detailed textures, crisp depth, futuristic conservation facility, quiet hopeful mood",
  "width": 1376,
  "height": 768,
  "seed": 40501,
  "settings": {
    "creativity": "high"
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "4d60fb34-652f-4160-837e-0e7c440607a7",
  "imageUUID": "62a7b0bc-01dc-48fc-9001-582bf7617187",
  "imageURL": "https://im.runware.ai/image/os/a02d21/ws/3/ii/62a7b0bc-01dc-48fc-9001-582bf7617187.jpg",
  "seed": 40501,
  "cost": 0.015
}
Text to Image

Ceramic Origami Space Elevator

Ceramic Origami Space Elevator

A vast stratospheric space elevator concourse built from folded white ceramic panels, translucent solar-sail canopies, and suspended walkways curving around a central ascent cable that disappears into pale blue sky. Tiny travelers in sleek ivory pressure suits stand near sculptural docking gates, maintenance drones glide between seams, and sunlight scatters through frosted composite membranes. Clean futuristic industrial design, monumental scale, precise geometry, soft atmospheric haze, high detail, cinematic wide angle, elegant minimal palette with accents of cobalt and warm gold.

import { createClient } from '@runware/sdk'

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

const [result] = await client.run({
  model: 'krea:krea@2-turbo',
  positivePrompt: 'A vast stratospheric space elevator concourse built from folded white ceramic panels, translucent solar-sail canopies, and suspended walkways curving around a central ascent cable that disappears into pale blue sky. Tiny travelers in sleek ivory pressure suits stand near sculptural docking gates, maintenance drones glide between seams, and sunlight scatters through frosted composite membranes. Clean futuristic industrial design, monumental scale, precise geometry, soft atmospheric haze, high detail, cinematic wide angle, elegant minimal palette with accents of cobalt and warm gold.',
  width: 1376,
  height: 768,
  seed: 76725,
  settings: {
    creativity: 'high',
    moodboards: [
      {
        id: '0bff265b-ba63-468f-9acb-e38705a343b8',
        strength: 0.28
      }
    ]
  }
})
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": "krea:krea@2-turbo",
            "positivePrompt": "A vast stratospheric space elevator concourse built from folded white ceramic panels, translucent solar-sail canopies, and suspended walkways curving around a central ascent cable that disappears into pale blue sky. Tiny travelers in sleek ivory pressure suits stand near sculptural docking gates, maintenance drones glide between seams, and sunlight scatters through frosted composite membranes. Clean futuristic industrial design, monumental scale, precise geometry, soft atmospheric haze, high detail, cinematic wide angle, elegant minimal palette with accents of cobalt and warm gold.",
            "width": 1376,
            "height": 768,
            "seed": 76725,
            "settings": {
                "creativity": "high",
                "moodboards": [
                    {
                        "id": "0bff265b-ba63-468f-9acb-e38705a343b8",
                        "strength": 0.28
                    }
                ]
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "imageInference",
      "taskUUID": "2359d1ac-b1e6-48dc-8369-1637309eadbd",
      "model": "krea:krea@2-turbo",
      "positivePrompt": "A vast stratospheric space elevator concourse built from folded white ceramic panels, translucent solar-sail canopies, and suspended walkways curving around a central ascent cable that disappears into pale blue sky. Tiny travelers in sleek ivory pressure suits stand near sculptural docking gates, maintenance drones glide between seams, and sunlight scatters through frosted composite membranes. Clean futuristic industrial design, monumental scale, precise geometry, soft atmospheric haze, high detail, cinematic wide angle, elegant minimal palette with accents of cobalt and warm gold.",
      "width": 1376,
      "height": 768,
      "seed": 76725,
      "settings": {
        "creativity": "high",
        "moodboards": [
          {
            "id": "0bff265b-ba63-468f-9acb-e38705a343b8",
            "strength": 0.28
          }
        ]
      }
    }
  ]'
runware run krea:krea@2-turbo \
  positivePrompt="A vast stratospheric space elevator concourse built from folded white ceramic panels, translucent solar-sail canopies, and suspended walkways curving around a central ascent cable that disappears into pale blue sky. Tiny travelers in sleek ivory pressure suits stand near sculptural docking gates, maintenance drones glide between seams, and sunlight scatters through frosted composite membranes. Clean futuristic industrial design, monumental scale, precise geometry, soft atmospheric haze, high detail, cinematic wide angle, elegant minimal palette with accents of cobalt and warm gold." \
  width=1376 \
  height=768 \
  seed=76725 \
  settings.creativity=high \
  settings.moodboards.0.id=0bff265b-ba63-468f-9acb-e38705a343b8 \
  settings.moodboards.0.strength=0.28
{
  "taskType": "imageInference",
  "taskUUID": "2359d1ac-b1e6-48dc-8369-1637309eadbd",
  "model": "krea:krea@2-turbo",
  "positivePrompt": "A vast stratospheric space elevator concourse built from folded white ceramic panels, translucent solar-sail canopies, and suspended walkways curving around a central ascent cable that disappears into pale blue sky. Tiny travelers in sleek ivory pressure suits stand near sculptural docking gates, maintenance drones glide between seams, and sunlight scatters through frosted composite membranes. Clean futuristic industrial design, monumental scale, precise geometry, soft atmospheric haze, high detail, cinematic wide angle, elegant minimal palette with accents of cobalt and warm gold.",
  "width": 1376,
  "height": 768,
  "seed": 76725,
  "settings": {
    "creativity": "high",
    "moodboards": [
      {
        "id": "0bff265b-ba63-468f-9acb-e38705a343b8",
        "strength": 0.28
      }
    ]
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "2359d1ac-b1e6-48dc-8369-1637309eadbd",
  "imageUUID": "71d5d85f-e94f-4d7f-8f30-a074c6c9912a",
  "imageURL": "https://im.runware.ai/image/os/a04d20/ws/3/ii/71d5d85f-e94f-4d7f-8f30-a074c6c9912a.jpg",
  "seed": 76725,
  "cost": 0.02
}
Text to Image

Chromatic Rainforest Data Shrine

Chromatic Rainforest Data Shrine

A colossal crystalline server shrine in a dense emerald rainforest after rainfall, braided fiber-optic roots wrapped around ancient trees, glassy data monoliths stacked like standing stones, tiny maintenance drones hovering between ferns, mist catching magenta and cyan light, wet leaves with sharp reflections, cinematic wide angle, intricate environmental concept design, high-detail textures, dramatic depth, imaginative near-future ecology

import { createClient } from '@runware/sdk'

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

const [result] = await client.run({
  model: 'krea:krea@2-turbo',
  positivePrompt: 'A colossal crystalline server shrine in a dense emerald rainforest after rainfall, braided fiber-optic roots wrapped around ancient trees, glassy data monoliths stacked like standing stones, tiny maintenance drones hovering between ferns, mist catching magenta and cyan light, wet leaves with sharp reflections, cinematic wide angle, intricate environmental concept design, high-detail textures, dramatic depth, imaginative near-future ecology',
  width: 1376,
  height: 768,
  seed: 67816,
  settings: {
    creativity: 'high',
    moodboards: [
      {
        id: '0bff265b-ba63-468f-9acb-e38705a343b8',
        strength: 0.35
      }
    ]
  }
})
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": "krea:krea@2-turbo",
            "positivePrompt": "A colossal crystalline server shrine in a dense emerald rainforest after rainfall, braided fiber-optic roots wrapped around ancient trees, glassy data monoliths stacked like standing stones, tiny maintenance drones hovering between ferns, mist catching magenta and cyan light, wet leaves with sharp reflections, cinematic wide angle, intricate environmental concept design, high-detail textures, dramatic depth, imaginative near-future ecology",
            "width": 1376,
            "height": 768,
            "seed": 67816,
            "settings": {
                "creativity": "high",
                "moodboards": [
                    {
                        "id": "0bff265b-ba63-468f-9acb-e38705a343b8",
                        "strength": 0.35
                    }
                ]
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "imageInference",
      "taskUUID": "091524ac-05ed-44ef-874c-631334ddabe8",
      "model": "krea:krea@2-turbo",
      "positivePrompt": "A colossal crystalline server shrine in a dense emerald rainforest after rainfall, braided fiber-optic roots wrapped around ancient trees, glassy data monoliths stacked like standing stones, tiny maintenance drones hovering between ferns, mist catching magenta and cyan light, wet leaves with sharp reflections, cinematic wide angle, intricate environmental concept design, high-detail textures, dramatic depth, imaginative near-future ecology",
      "width": 1376,
      "height": 768,
      "seed": 67816,
      "settings": {
        "creativity": "high",
        "moodboards": [
          {
            "id": "0bff265b-ba63-468f-9acb-e38705a343b8",
            "strength": 0.35
          }
        ]
      }
    }
  ]'
runware run krea:krea@2-turbo \
  positivePrompt="A colossal crystalline server shrine in a dense emerald rainforest after rainfall, braided fiber-optic roots wrapped around ancient trees, glassy data monoliths stacked like standing stones, tiny maintenance drones hovering between ferns, mist catching magenta and cyan light, wet leaves with sharp reflections, cinematic wide angle, intricate environmental concept design, high-detail textures, dramatic depth, imaginative near-future ecology" \
  width=1376 \
  height=768 \
  seed=67816 \
  settings.creativity=high \
  settings.moodboards.0.id=0bff265b-ba63-468f-9acb-e38705a343b8 \
  settings.moodboards.0.strength=0.35
{
  "taskType": "imageInference",
  "taskUUID": "091524ac-05ed-44ef-874c-631334ddabe8",
  "model": "krea:krea@2-turbo",
  "positivePrompt": "A colossal crystalline server shrine in a dense emerald rainforest after rainfall, braided fiber-optic roots wrapped around ancient trees, glassy data monoliths stacked like standing stones, tiny maintenance drones hovering between ferns, mist catching magenta and cyan light, wet leaves with sharp reflections, cinematic wide angle, intricate environmental concept design, high-detail textures, dramatic depth, imaginative near-future ecology",
  "width": 1376,
  "height": 768,
  "seed": 67816,
  "settings": {
    "creativity": "high",
    "moodboards": [
      {
        "id": "0bff265b-ba63-468f-9acb-e38705a343b8",
        "strength": 0.35
      }
    ]
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "091524ac-05ed-44ef-874c-631334ddabe8",
  "imageUUID": "85feccf8-b29b-4be5-9d09-1b12802c864d",
  "imageURL": "https://im.runware.ai/image/os/a06dlim3/ws/3/ii/85feccf8-b29b-4be5-9d09-1b12802c864d.jpg",
  "seed": 67816,
  "cost": 0.02
}