MODEL IDluma:uni@1
live

UNI-1

Luma
by Luma

UNI-1 is a unified image model in Luma's UNI-1 family for both image creation and precision image editing. It combines text prompting, source-image modification, multi-reference guidance, seed-based reproducibility, and reasoning-informed visual generation in one system, with strong control over composition, identity, style, and visual plausibility.

UNI-1
text-to-image

Big Bud Tractor Landscape Composite

Big Bud Tractor Landscape Composite

Create a finished, photorealistic background-replacement composite featuring the real Big Bud 16V-747 tractor, accurately reproducing its monumental proportions, articulated chassis, cream-white bodywork, red-orange trim, authentic BIG BUD 747 markings, exhaust stacks, cab glazing, and eight enormous dual tires. Show the complete tractor from a low three-quarter front angle on the right side of a wide landscape frame. Replace any trade-show, museum, or parking-lot surroundings with a sunlit late-summer wheat field near Havre, Montana, with distant Bear Paw Mountains, a pale cyan sky, dry straw-gold grasses, and subtle windblown dust. Match the warm directional sunlight across the tractor and landscape; add realistic tire contact, compressed vegetation, and a soft grounded shadow. Preserve crisp, natural cutout edges around the cab, mirrors, exhausts, steps, and tires with no haloing or color spill. Leave generous uncluttered landscape and sky on the left for museum campaign copy, but include no added headline, logo, border, interface, or watermark. Grounded heritage-documentary art direction, restrained cream, oxidized red, straw gold, and clear blue palette, exceptional mechanical detail, believable scale, premium commercial retouching.

import { createClient } from '@runware/sdk'

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

const [result] = await client.run({
  model: 'luma:uni@1',
  positivePrompt: 'Create a finished, photorealistic background-replacement composite featuring the real Big Bud 16V-747 tractor, accurately reproducing its monumental proportions, articulated chassis, cream-white bodywork, red-orange trim, authentic BIG BUD 747 markings, exhaust stacks, cab glazing, and eight enormous dual tires. Show the complete tractor from a low three-quarter front angle on the right side of a wide landscape frame. Replace any trade-show, museum, or parking-lot surroundings with a sunlit late-summer wheat field near Havre, Montana, with distant Bear Paw Mountains, a pale cyan sky, dry straw-gold grasses, and subtle windblown dust. Match the warm directional sunlight across the tractor and landscape; add realistic tire contact, compressed vegetation, and a soft grounded shadow. Preserve crisp, natural cutout edges around the cab, mirrors, exhausts, steps, and tires with no haloing or color spill. Leave generous uncluttered landscape and sky on the left for museum campaign copy, but include no added headline, logo, border, interface, or watermark. Grounded heritage-documentary art direction, restrained cream, oxidized red, straw gold, and clear blue palette, exceptional mechanical detail, believable scale, premium commercial retouching.',
  width: 2912,
  height: 1440,
  settings: {
    search: true
  }
})
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": "luma:uni@1",
            "positivePrompt": "Create a finished, photorealistic background-replacement composite featuring the real Big Bud 16V-747 tractor, accurately reproducing its monumental proportions, articulated chassis, cream-white bodywork, red-orange trim, authentic BIG BUD 747 markings, exhaust stacks, cab glazing, and eight enormous dual tires. Show the complete tractor from a low three-quarter front angle on the right side of a wide landscape frame. Replace any trade-show, museum, or parking-lot surroundings with a sunlit late-summer wheat field near Havre, Montana, with distant Bear Paw Mountains, a pale cyan sky, dry straw-gold grasses, and subtle windblown dust. Match the warm directional sunlight across the tractor and landscape; add realistic tire contact, compressed vegetation, and a soft grounded shadow. Preserve crisp, natural cutout edges around the cab, mirrors, exhausts, steps, and tires with no haloing or color spill. Leave generous uncluttered landscape and sky on the left for museum campaign copy, but include no added headline, logo, border, interface, or watermark. Grounded heritage-documentary art direction, restrained cream, oxidized red, straw gold, and clear blue palette, exceptional mechanical detail, believable scale, premium commercial retouching.",
            "width": 2912,
            "height": 1440,
            "settings": {
                "search": True
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "imageInference",
      "taskUUID": "46789d41-fdcd-475f-9ac0-f65c7d548ac8",
      "model": "luma:uni@1",
      "positivePrompt": "Create a finished, photorealistic background-replacement composite featuring the real Big Bud 16V-747 tractor, accurately reproducing its monumental proportions, articulated chassis, cream-white bodywork, red-orange trim, authentic BIG BUD 747 markings, exhaust stacks, cab glazing, and eight enormous dual tires. Show the complete tractor from a low three-quarter front angle on the right side of a wide landscape frame. Replace any trade-show, museum, or parking-lot surroundings with a sunlit late-summer wheat field near Havre, Montana, with distant Bear Paw Mountains, a pale cyan sky, dry straw-gold grasses, and subtle windblown dust. Match the warm directional sunlight across the tractor and landscape; add realistic tire contact, compressed vegetation, and a soft grounded shadow. Preserve crisp, natural cutout edges around the cab, mirrors, exhausts, steps, and tires with no haloing or color spill. Leave generous uncluttered landscape and sky on the left for museum campaign copy, but include no added headline, logo, border, interface, or watermark. Grounded heritage-documentary art direction, restrained cream, oxidized red, straw gold, and clear blue palette, exceptional mechanical detail, believable scale, premium commercial retouching.",
      "width": 2912,
      "height": 1440,
      "settings": {
        "search": true
      }
    }
  ]'
runware run luma:uni@1 \
  positivePrompt="Create a finished, photorealistic background-replacement composite featuring the real Big Bud 16V-747 tractor, accurately reproducing its monumental proportions, articulated chassis, cream-white bodywork, red-orange trim, authentic BIG BUD 747 markings, exhaust stacks, cab glazing, and eight enormous dual tires. Show the complete tractor from a low three-quarter front angle on the right side of a wide landscape frame. Replace any trade-show, museum, or parking-lot surroundings with a sunlit late-summer wheat field near Havre, Montana, with distant Bear Paw Mountains, a pale cyan sky, dry straw-gold grasses, and subtle windblown dust. Match the warm directional sunlight across the tractor and landscape; add realistic tire contact, compressed vegetation, and a soft grounded shadow. Preserve crisp, natural cutout edges around the cab, mirrors, exhausts, steps, and tires with no haloing or color spill. Leave generous uncluttered landscape and sky on the left for museum campaign copy, but include no added headline, logo, border, interface, or watermark. Grounded heritage-documentary art direction, restrained cream, oxidized red, straw gold, and clear blue palette, exceptional mechanical detail, believable scale, premium commercial retouching." \
  width=2912 \
  height=1440 \
  settings.search=true
{
  "taskType": "imageInference",
  "taskUUID": "46789d41-fdcd-475f-9ac0-f65c7d548ac8",
  "model": "luma:uni@1",
  "positivePrompt": "Create a finished, photorealistic background-replacement composite featuring the real Big Bud 16V-747 tractor, accurately reproducing its monumental proportions, articulated chassis, cream-white bodywork, red-orange trim, authentic BIG BUD 747 markings, exhaust stacks, cab glazing, and eight enormous dual tires. Show the complete tractor from a low three-quarter front angle on the right side of a wide landscape frame. Replace any trade-show, museum, or parking-lot surroundings with a sunlit late-summer wheat field near Havre, Montana, with distant Bear Paw Mountains, a pale cyan sky, dry straw-gold grasses, and subtle windblown dust. Match the warm directional sunlight across the tractor and landscape; add realistic tire contact, compressed vegetation, and a soft grounded shadow. Preserve crisp, natural cutout edges around the cab, mirrors, exhausts, steps, and tires with no haloing or color spill. Leave generous uncluttered landscape and sky on the left for museum campaign copy, but include no added headline, logo, border, interface, or watermark. Grounded heritage-documentary art direction, restrained cream, oxidized red, straw gold, and clear blue palette, exceptional mechanical detail, believable scale, premium commercial retouching.",
  "width": 2912,
  "height": 1440,
  "settings": {
    "search": true
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "46789d41-fdcd-475f-9ac0-f65c7d548ac8",
  "imageUUID": "06f40cdc-6e80-4763-a7b2-0fe031e62172",
  "imageURL": "https://im.runware.ai/image/os/a09dlim3/ws/4/ii/06f40cdc-6e80-4763-a7b2-0fe031e62172.jpg",
  "seed": 189715607,
  "cost": 0.0404
}
text-to-image

Shinkansen Ekiben Menu Hero

Shinkansen Ekiben Menu Hero

Premium landscape menu photography inside an accurately rendered N700S Shinkansen carriage traveling past Mount Fuji. In the foreground, an open Japanese ekiben box is the unmistakable hero: glossy soy-glazed anago over rice, precise slices of tamagoyaki, lotus root, bamboo shoot, edamame, shiso, umeboshi and seasonal pickles, each compartment immaculate and appetizing, with a small ceramic cup of green tea beside it. Place the meal on the window tray table, photographed from the adjacent passenger seat at table height. Through the large window, show a geographically plausible, sharply recognizable snow-capped Mount Fuji above sunlit fields, with subtle lateral motion blur near the tracks. Accurate contemporary Japanese high-speed-train interior details, clean blue upholstery, restrained white surfaces and soft daylight. Crisp editorial food styling, realistic steam and glaze, natural textures, bright cool morning palette with warm amber food accents, generous ultra-wide environmental framing, shallow but sufficient depth of field so the meal is tack-sharp and Mount Fuji remains clearly legible. Sophisticated hospitality catalog quality, photorealistic, no people, no visible logos, no packaging text, no captions or typography.

import { createClient } from '@runware/sdk'

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

const [result] = await client.run({
  model: 'luma:uni@1',
  positivePrompt: 'Premium landscape menu photography inside an accurately rendered N700S Shinkansen carriage traveling past Mount Fuji. In the foreground, an open Japanese ekiben box is the unmistakable hero: glossy soy-glazed anago over rice, precise slices of tamagoyaki, lotus root, bamboo shoot, edamame, shiso, umeboshi and seasonal pickles, each compartment immaculate and appetizing, with a small ceramic cup of green tea beside it. Place the meal on the window tray table, photographed from the adjacent passenger seat at table height. Through the large window, show a geographically plausible, sharply recognizable snow-capped Mount Fuji above sunlit fields, with subtle lateral motion blur near the tracks. Accurate contemporary Japanese high-speed-train interior details, clean blue upholstery, restrained white surfaces and soft daylight. Crisp editorial food styling, realistic steam and glaze, natural textures, bright cool morning palette with warm amber food accents, generous ultra-wide environmental framing, shallow but sufficient depth of field so the meal is tack-sharp and Mount Fuji remains clearly legible. Sophisticated hospitality catalog quality, photorealistic, no people, no visible logos, no packaging text, no captions or typography.',
  width: 2912,
  height: 1440,
  settings: {
    search: true,
    style: 'auto'
  }
})
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": "luma:uni@1",
            "positivePrompt": "Premium landscape menu photography inside an accurately rendered N700S Shinkansen carriage traveling past Mount Fuji. In the foreground, an open Japanese ekiben box is the unmistakable hero: glossy soy-glazed anago over rice, precise slices of tamagoyaki, lotus root, bamboo shoot, edamame, shiso, umeboshi and seasonal pickles, each compartment immaculate and appetizing, with a small ceramic cup of green tea beside it. Place the meal on the window tray table, photographed from the adjacent passenger seat at table height. Through the large window, show a geographically plausible, sharply recognizable snow-capped Mount Fuji above sunlit fields, with subtle lateral motion blur near the tracks. Accurate contemporary Japanese high-speed-train interior details, clean blue upholstery, restrained white surfaces and soft daylight. Crisp editorial food styling, realistic steam and glaze, natural textures, bright cool morning palette with warm amber food accents, generous ultra-wide environmental framing, shallow but sufficient depth of field so the meal is tack-sharp and Mount Fuji remains clearly legible. Sophisticated hospitality catalog quality, photorealistic, no people, no visible logos, no packaging text, no captions or typography.",
            "width": 2912,
            "height": 1440,
            "settings": {
                "search": True,
                "style": "auto"
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "imageInference",
      "taskUUID": "dddc82a1-696c-4a44-a503-7a33045cf589",
      "model": "luma:uni@1",
      "positivePrompt": "Premium landscape menu photography inside an accurately rendered N700S Shinkansen carriage traveling past Mount Fuji. In the foreground, an open Japanese ekiben box is the unmistakable hero: glossy soy-glazed anago over rice, precise slices of tamagoyaki, lotus root, bamboo shoot, edamame, shiso, umeboshi and seasonal pickles, each compartment immaculate and appetizing, with a small ceramic cup of green tea beside it. Place the meal on the window tray table, photographed from the adjacent passenger seat at table height. Through the large window, show a geographically plausible, sharply recognizable snow-capped Mount Fuji above sunlit fields, with subtle lateral motion blur near the tracks. Accurate contemporary Japanese high-speed-train interior details, clean blue upholstery, restrained white surfaces and soft daylight. Crisp editorial food styling, realistic steam and glaze, natural textures, bright cool morning palette with warm amber food accents, generous ultra-wide environmental framing, shallow but sufficient depth of field so the meal is tack-sharp and Mount Fuji remains clearly legible. Sophisticated hospitality catalog quality, photorealistic, no people, no visible logos, no packaging text, no captions or typography.",
      "width": 2912,
      "height": 1440,
      "settings": {
        "search": true,
        "style": "auto"
      }
    }
  ]'
runware run luma:uni@1 \
  positivePrompt="Premium landscape menu photography inside an accurately rendered N700S Shinkansen carriage traveling past Mount Fuji. In the foreground, an open Japanese ekiben box is the unmistakable hero: glossy soy-glazed anago over rice, precise slices of tamagoyaki, lotus root, bamboo shoot, edamame, shiso, umeboshi and seasonal pickles, each compartment immaculate and appetizing, with a small ceramic cup of green tea beside it. Place the meal on the window tray table, photographed from the adjacent passenger seat at table height. Through the large window, show a geographically plausible, sharply recognizable snow-capped Mount Fuji above sunlit fields, with subtle lateral motion blur near the tracks. Accurate contemporary Japanese high-speed-train interior details, clean blue upholstery, restrained white surfaces and soft daylight. Crisp editorial food styling, realistic steam and glaze, natural textures, bright cool morning palette with warm amber food accents, generous ultra-wide environmental framing, shallow but sufficient depth of field so the meal is tack-sharp and Mount Fuji remains clearly legible. Sophisticated hospitality catalog quality, photorealistic, no people, no visible logos, no packaging text, no captions or typography." \
  width=2912 \
  height=1440 \
  settings.search=true \
  settings.style=auto
{
  "taskType": "imageInference",
  "taskUUID": "dddc82a1-696c-4a44-a503-7a33045cf589",
  "model": "luma:uni@1",
  "positivePrompt": "Premium landscape menu photography inside an accurately rendered N700S Shinkansen carriage traveling past Mount Fuji. In the foreground, an open Japanese ekiben box is the unmistakable hero: glossy soy-glazed anago over rice, precise slices of tamagoyaki, lotus root, bamboo shoot, edamame, shiso, umeboshi and seasonal pickles, each compartment immaculate and appetizing, with a small ceramic cup of green tea beside it. Place the meal on the window tray table, photographed from the adjacent passenger seat at table height. Through the large window, show a geographically plausible, sharply recognizable snow-capped Mount Fuji above sunlit fields, with subtle lateral motion blur near the tracks. Accurate contemporary Japanese high-speed-train interior details, clean blue upholstery, restrained white surfaces and soft daylight. Crisp editorial food styling, realistic steam and glaze, natural textures, bright cool morning palette with warm amber food accents, generous ultra-wide environmental framing, shallow but sufficient depth of field so the meal is tack-sharp and Mount Fuji remains clearly legible. Sophisticated hospitality catalog quality, photorealistic, no people, no visible logos, no packaging text, no captions or typography.",
  "width": 2912,
  "height": 1440,
  "settings": {
    "search": true,
    "style": "auto"
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "dddc82a1-696c-4a44-a503-7a33045cf589",
  "imageUUID": "aac44405-e2cf-4253-aeab-39b20b4b758b",
  "imageURL": "https://im.runware.ai/image/os/a09dlim3/ws/4/ii/aac44405-e2cf-4253-aeab-39b20b4b758b.jpg",
  "seed": 1071958278,
  "cost": 0.0404
}
reference-to-image

Azores Geothermal Hiking Campaign Illustration

Azores Geothermal Hiking Campaign Illustration

Create a finished portrait-oriented manga tourism campaign illustration for hiking in Furnas on São Miguel Island, Azores. Use reference image 1 to preserve the traveler's recognizable face, dark wavy hair, and white temple streak; use reference image 2 to preserve her rust-orange rain shell, charcoal trousers, mustard boots, teal backpack, and silver bottle. Show her hiking toward the viewer along a safe raised timber boardwalk through the real geothermal landscape of Furnas, turning back with an inviting, exhilarated smile. Low ferns and glossy hydrangea leaves frame the foreground; pale mineral steam rises from fenced caldeiras behind her; green volcanic slopes, tiled village roofs, and a glimpse of Furnas Lake recede through the mist. Dynamic low viewpoint with one boot stepping into the lower foreground, sweeping boardwalk lines leading upward through the composition, protagonist occupying the lower-middle third, generous atmospheric depth above her. Sophisticated contemporary travel manga, clean expressive ink lines, selective screentone texture, richly colored cel shading, mineral-turquoise steam, sulfur yellow accents, deep fern green vegetation, rust-orange jacket, soft pearl-gray sky. Fresh post-rain atmosphere with luminous breaks of Atlantic sunlight, wet timber reflections, believable volcanic terrain and practical hiking details. Aspirational, invigorating, welcoming, premium destination-campaign finish. One coherent scene, no text, no logo, no border, no UI, no collage.

import { createClient } from '@runware/sdk'

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

const [result] = await client.run({
  model: 'luma:uni@1',
  positivePrompt: 'Create a finished portrait-oriented manga tourism campaign illustration for hiking in Furnas on São Miguel Island, Azores. Use reference image 1 to preserve the traveler\'s recognizable face, dark wavy hair, and white temple streak; use reference image 2 to preserve her rust-orange rain shell, charcoal trousers, mustard boots, teal backpack, and silver bottle. Show her hiking toward the viewer along a safe raised timber boardwalk through the real geothermal landscape of Furnas, turning back with an inviting, exhilarated smile. Low ferns and glossy hydrangea leaves frame the foreground; pale mineral steam rises from fenced caldeiras behind her; green volcanic slopes, tiled village roofs, and a glimpse of Furnas Lake recede through the mist. Dynamic low viewpoint with one boot stepping into the lower foreground, sweeping boardwalk lines leading upward through the composition, protagonist occupying the lower-middle third, generous atmospheric depth above her. Sophisticated contemporary travel manga, clean expressive ink lines, selective screentone texture, richly colored cel shading, mineral-turquoise steam, sulfur yellow accents, deep fern green vegetation, rust-orange jacket, soft pearl-gray sky. Fresh post-rain atmosphere with luminous breaks of Atlantic sunlight, wet timber reflections, believable volcanic terrain and practical hiking details. Aspirational, invigorating, welcoming, premium destination-campaign finish. One coherent scene, no text, no logo, no border, no UI, no collage.',
  width: 1504,
  height: 2784,
  settings: {
    style: 'manga'
  },
  inputs: {
    referenceImages: [
      'https://assets.runware.ai/assets/inputs/5a9a61bd-19c0-4556-9d12-15304aa29f71.jpg',
      'https://assets.runware.ai/assets/inputs/f58e9c45-bbfc-40a3-b33a-ecfe438b89b8.jpg'
    ]
  }
})
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": "luma:uni@1",
            "positivePrompt": "Create a finished portrait-oriented manga tourism campaign illustration for hiking in Furnas on São Miguel Island, Azores. Use reference image 1 to preserve the traveler's recognizable face, dark wavy hair, and white temple streak; use reference image 2 to preserve her rust-orange rain shell, charcoal trousers, mustard boots, teal backpack, and silver bottle. Show her hiking toward the viewer along a safe raised timber boardwalk through the real geothermal landscape of Furnas, turning back with an inviting, exhilarated smile. Low ferns and glossy hydrangea leaves frame the foreground; pale mineral steam rises from fenced caldeiras behind her; green volcanic slopes, tiled village roofs, and a glimpse of Furnas Lake recede through the mist. Dynamic low viewpoint with one boot stepping into the lower foreground, sweeping boardwalk lines leading upward through the composition, protagonist occupying the lower-middle third, generous atmospheric depth above her. Sophisticated contemporary travel manga, clean expressive ink lines, selective screentone texture, richly colored cel shading, mineral-turquoise steam, sulfur yellow accents, deep fern green vegetation, rust-orange jacket, soft pearl-gray sky. Fresh post-rain atmosphere with luminous breaks of Atlantic sunlight, wet timber reflections, believable volcanic terrain and practical hiking details. Aspirational, invigorating, welcoming, premium destination-campaign finish. One coherent scene, no text, no logo, no border, no UI, no collage.",
            "width": 1504,
            "height": 2784,
            "settings": {
                "style": "manga"
            },
            "inputs": {
                "referenceImages": [
                    "https://assets.runware.ai/assets/inputs/5a9a61bd-19c0-4556-9d12-15304aa29f71.jpg",
                    "https://assets.runware.ai/assets/inputs/f58e9c45-bbfc-40a3-b33a-ecfe438b89b8.jpg"
                ]
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "imageInference",
      "taskUUID": "98f19dfe-28e9-4889-8d59-1c826d759fb3",
      "model": "luma:uni@1",
      "positivePrompt": "Create a finished portrait-oriented manga tourism campaign illustration for hiking in Furnas on São Miguel Island, Azores. Use reference image 1 to preserve the traveler's recognizable face, dark wavy hair, and white temple streak; use reference image 2 to preserve her rust-orange rain shell, charcoal trousers, mustard boots, teal backpack, and silver bottle. Show her hiking toward the viewer along a safe raised timber boardwalk through the real geothermal landscape of Furnas, turning back with an inviting, exhilarated smile. Low ferns and glossy hydrangea leaves frame the foreground; pale mineral steam rises from fenced caldeiras behind her; green volcanic slopes, tiled village roofs, and a glimpse of Furnas Lake recede through the mist. Dynamic low viewpoint with one boot stepping into the lower foreground, sweeping boardwalk lines leading upward through the composition, protagonist occupying the lower-middle third, generous atmospheric depth above her. Sophisticated contemporary travel manga, clean expressive ink lines, selective screentone texture, richly colored cel shading, mineral-turquoise steam, sulfur yellow accents, deep fern green vegetation, rust-orange jacket, soft pearl-gray sky. Fresh post-rain atmosphere with luminous breaks of Atlantic sunlight, wet timber reflections, believable volcanic terrain and practical hiking details. Aspirational, invigorating, welcoming, premium destination-campaign finish. One coherent scene, no text, no logo, no border, no UI, no collage.",
      "width": 1504,
      "height": 2784,
      "settings": {
        "style": "manga"
      },
      "inputs": {
        "referenceImages": [
          "https://assets.runware.ai/assets/inputs/5a9a61bd-19c0-4556-9d12-15304aa29f71.jpg",
          "https://assets.runware.ai/assets/inputs/f58e9c45-bbfc-40a3-b33a-ecfe438b89b8.jpg"
        ]
      }
    }
  ]'
runware run luma:uni@1 \
  positivePrompt="Create a finished portrait-oriented manga tourism campaign illustration for hiking in Furnas on São Miguel Island, Azores. Use reference image 1 to preserve the traveler's recognizable face, dark wavy hair, and white temple streak; use reference image 2 to preserve her rust-orange rain shell, charcoal trousers, mustard boots, teal backpack, and silver bottle. Show her hiking toward the viewer along a safe raised timber boardwalk through the real geothermal landscape of Furnas, turning back with an inviting, exhilarated smile. Low ferns and glossy hydrangea leaves frame the foreground; pale mineral steam rises from fenced caldeiras behind her; green volcanic slopes, tiled village roofs, and a glimpse of Furnas Lake recede through the mist. Dynamic low viewpoint with one boot stepping into the lower foreground, sweeping boardwalk lines leading upward through the composition, protagonist occupying the lower-middle third, generous atmospheric depth above her. Sophisticated contemporary travel manga, clean expressive ink lines, selective screentone texture, richly colored cel shading, mineral-turquoise steam, sulfur yellow accents, deep fern green vegetation, rust-orange jacket, soft pearl-gray sky. Fresh post-rain atmosphere with luminous breaks of Atlantic sunlight, wet timber reflections, believable volcanic terrain and practical hiking details. Aspirational, invigorating, welcoming, premium destination-campaign finish. One coherent scene, no text, no logo, no border, no UI, no collage." \
  width=1504 \
  height=2784 \
  settings.style=manga \
  inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/5a9a61bd-19c0-4556-9d12-15304aa29f71.jpg \
  inputs.referenceImages.1=https://assets.runware.ai/assets/inputs/f58e9c45-bbfc-40a3-b33a-ecfe438b89b8.jpg
{
  "taskType": "imageInference",
  "taskUUID": "98f19dfe-28e9-4889-8d59-1c826d759fb3",
  "model": "luma:uni@1",
  "positivePrompt": "Create a finished portrait-oriented manga tourism campaign illustration for hiking in Furnas on São Miguel Island, Azores. Use reference image 1 to preserve the traveler's recognizable face, dark wavy hair, and white temple streak; use reference image 2 to preserve her rust-orange rain shell, charcoal trousers, mustard boots, teal backpack, and silver bottle. Show her hiking toward the viewer along a safe raised timber boardwalk through the real geothermal landscape of Furnas, turning back with an inviting, exhilarated smile. Low ferns and glossy hydrangea leaves frame the foreground; pale mineral steam rises from fenced caldeiras behind her; green volcanic slopes, tiled village roofs, and a glimpse of Furnas Lake recede through the mist. Dynamic low viewpoint with one boot stepping into the lower foreground, sweeping boardwalk lines leading upward through the composition, protagonist occupying the lower-middle third, generous atmospheric depth above her. Sophisticated contemporary travel manga, clean expressive ink lines, selective screentone texture, richly colored cel shading, mineral-turquoise steam, sulfur yellow accents, deep fern green vegetation, rust-orange jacket, soft pearl-gray sky. Fresh post-rain atmosphere with luminous breaks of Atlantic sunlight, wet timber reflections, believable volcanic terrain and practical hiking details. Aspirational, invigorating, welcoming, premium destination-campaign finish. One coherent scene, no text, no logo, no border, no UI, no collage.",
  "width": 1504,
  "height": 2784,
  "settings": {
    "style": "manga"
  },
  "inputs": {
    "referenceImages": [
      "https://assets.runware.ai/assets/inputs/5a9a61bd-19c0-4556-9d12-15304aa29f71.jpg",
      "https://assets.runware.ai/assets/inputs/f58e9c45-bbfc-40a3-b33a-ecfe438b89b8.jpg"
    ]
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "98f19dfe-28e9-4889-8d59-1c826d759fb3",
  "imageUUID": "5d3c8b84-2582-48f1-9839-5d69c9327fc9",
  "imageURL": "https://im.runware.ai/image/os/a06dlim3/ws/4/ii/5d3c8b84-2582-48f1-9839-5d69c9327fc9.jpg",
  "seed": 465537026,
  "cost": 0.0464
}
image-to-image

Avalanche Field Recording Album Cover

Avalanche Field Recording Album Cover

Transform the seed photograph into finished landscape album artwork for an experimental electronic field-recording album. Retain the clearly recognizable structure and perspective of the original scene: the exact mountain ridgeline, steel avalanche-control tower on the right, diagonal snow fences across the central slope, and service road beginning at the lower-left corner. Reinterpret the photograph as a bold two-color screen print combining deep cobalt blue shadows, cold off-white snow, and sparse fluorescent safety-orange accents on the tower and route markers. Add subtle halftone grain, weather-map contour lines, calibration ticks, and utilitarian Swiss safety-manual graphics without obscuring the landscape. Integrate a small duotone profile portrait of the musician from the reference image into the lower-right snowfield, preserving her recognizable facial identity and short dark hair; make it feel deliberately printed into the artwork rather than pasted on. Set the exact album title “RIME SIGNALS” in large condensed uppercase lettering across the open sky at upper left, with the exact artist name “MARA VEIL” in much smaller uppercase type beneath it. Crisp editorial hierarchy, severe alpine atmosphere, tactile ink texture, restrained contemporary record-label design, no border, no mockup, no additional words, no logos, one finished cover image composed for a wide 2464x1696 frame.

import { createClient } from '@runware/sdk'

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

const [result] = await client.run({
  model: 'luma:uni@1',
  positivePrompt: 'Transform the seed photograph into finished landscape album artwork for an experimental electronic field-recording album. Retain the clearly recognizable structure and perspective of the original scene: the exact mountain ridgeline, steel avalanche-control tower on the right, diagonal snow fences across the central slope, and service road beginning at the lower-left corner. Reinterpret the photograph as a bold two-color screen print combining deep cobalt blue shadows, cold off-white snow, and sparse fluorescent safety-orange accents on the tower and route markers. Add subtle halftone grain, weather-map contour lines, calibration ticks, and utilitarian Swiss safety-manual graphics without obscuring the landscape. Integrate a small duotone profile portrait of the musician from the reference image into the lower-right snowfield, preserving her recognizable facial identity and short dark hair; make it feel deliberately printed into the artwork rather than pasted on. Set the exact album title “RIME SIGNALS” in large condensed uppercase lettering across the open sky at upper left, with the exact artist name “MARA VEIL” in much smaller uppercase type beneath it. Crisp editorial hierarchy, severe alpine atmosphere, tactile ink texture, restrained contemporary record-label design, no border, no mockup, no additional words, no logos, one finished cover image composed for a wide 2464x1696 frame.',
  width: 2464,
  height: 1696,
  inputs: {
    seedImage: 'https://assets.runware.ai/assets/inputs/9c9e8718-384e-4493-b5e3-909c6fbfc404.jpg',
    referenceImages: [
      'https://assets.runware.ai/assets/inputs/1bb9ca8f-0b65-46aa-bc4b-69ac49f7e83b.jpg'
    ]
  }
})
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": "luma:uni@1",
            "positivePrompt": "Transform the seed photograph into finished landscape album artwork for an experimental electronic field-recording album. Retain the clearly recognizable structure and perspective of the original scene: the exact mountain ridgeline, steel avalanche-control tower on the right, diagonal snow fences across the central slope, and service road beginning at the lower-left corner. Reinterpret the photograph as a bold two-color screen print combining deep cobalt blue shadows, cold off-white snow, and sparse fluorescent safety-orange accents on the tower and route markers. Add subtle halftone grain, weather-map contour lines, calibration ticks, and utilitarian Swiss safety-manual graphics without obscuring the landscape. Integrate a small duotone profile portrait of the musician from the reference image into the lower-right snowfield, preserving her recognizable facial identity and short dark hair; make it feel deliberately printed into the artwork rather than pasted on. Set the exact album title “RIME SIGNALS” in large condensed uppercase lettering across the open sky at upper left, with the exact artist name “MARA VEIL” in much smaller uppercase type beneath it. Crisp editorial hierarchy, severe alpine atmosphere, tactile ink texture, restrained contemporary record-label design, no border, no mockup, no additional words, no logos, one finished cover image composed for a wide 2464x1696 frame.",
            "width": 2464,
            "height": 1696,
            "inputs": {
                "seedImage": "https://assets.runware.ai/assets/inputs/9c9e8718-384e-4493-b5e3-909c6fbfc404.jpg",
                "referenceImages": [
                    "https://assets.runware.ai/assets/inputs/1bb9ca8f-0b65-46aa-bc4b-69ac49f7e83b.jpg"
                ]
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "imageInference",
      "taskUUID": "ba89250c-57e0-4ff4-9459-946c26f7fe06",
      "model": "luma:uni@1",
      "positivePrompt": "Transform the seed photograph into finished landscape album artwork for an experimental electronic field-recording album. Retain the clearly recognizable structure and perspective of the original scene: the exact mountain ridgeline, steel avalanche-control tower on the right, diagonal snow fences across the central slope, and service road beginning at the lower-left corner. Reinterpret the photograph as a bold two-color screen print combining deep cobalt blue shadows, cold off-white snow, and sparse fluorescent safety-orange accents on the tower and route markers. Add subtle halftone grain, weather-map contour lines, calibration ticks, and utilitarian Swiss safety-manual graphics without obscuring the landscape. Integrate a small duotone profile portrait of the musician from the reference image into the lower-right snowfield, preserving her recognizable facial identity and short dark hair; make it feel deliberately printed into the artwork rather than pasted on. Set the exact album title “RIME SIGNALS” in large condensed uppercase lettering across the open sky at upper left, with the exact artist name “MARA VEIL” in much smaller uppercase type beneath it. Crisp editorial hierarchy, severe alpine atmosphere, tactile ink texture, restrained contemporary record-label design, no border, no mockup, no additional words, no logos, one finished cover image composed for a wide 2464x1696 frame.",
      "width": 2464,
      "height": 1696,
      "inputs": {
        "seedImage": "https://assets.runware.ai/assets/inputs/9c9e8718-384e-4493-b5e3-909c6fbfc404.jpg",
        "referenceImages": [
          "https://assets.runware.ai/assets/inputs/1bb9ca8f-0b65-46aa-bc4b-69ac49f7e83b.jpg"
        ]
      }
    }
  ]'
runware run luma:uni@1 \
  positivePrompt="Transform the seed photograph into finished landscape album artwork for an experimental electronic field-recording album. Retain the clearly recognizable structure and perspective of the original scene: the exact mountain ridgeline, steel avalanche-control tower on the right, diagonal snow fences across the central slope, and service road beginning at the lower-left corner. Reinterpret the photograph as a bold two-color screen print combining deep cobalt blue shadows, cold off-white snow, and sparse fluorescent safety-orange accents on the tower and route markers. Add subtle halftone grain, weather-map contour lines, calibration ticks, and utilitarian Swiss safety-manual graphics without obscuring the landscape. Integrate a small duotone profile portrait of the musician from the reference image into the lower-right snowfield, preserving her recognizable facial identity and short dark hair; make it feel deliberately printed into the artwork rather than pasted on. Set the exact album title “RIME SIGNALS” in large condensed uppercase lettering across the open sky at upper left, with the exact artist name “MARA VEIL” in much smaller uppercase type beneath it. Crisp editorial hierarchy, severe alpine atmosphere, tactile ink texture, restrained contemporary record-label design, no border, no mockup, no additional words, no logos, one finished cover image composed for a wide 2464x1696 frame." \
  width=2464 \
  height=1696 \
  inputs.seedImage=https://assets.runware.ai/assets/inputs/9c9e8718-384e-4493-b5e3-909c6fbfc404.jpg \
  inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/1bb9ca8f-0b65-46aa-bc4b-69ac49f7e83b.jpg
{
  "taskType": "imageInference",
  "taskUUID": "ba89250c-57e0-4ff4-9459-946c26f7fe06",
  "model": "luma:uni@1",
  "positivePrompt": "Transform the seed photograph into finished landscape album artwork for an experimental electronic field-recording album. Retain the clearly recognizable structure and perspective of the original scene: the exact mountain ridgeline, steel avalanche-control tower on the right, diagonal snow fences across the central slope, and service road beginning at the lower-left corner. Reinterpret the photograph as a bold two-color screen print combining deep cobalt blue shadows, cold off-white snow, and sparse fluorescent safety-orange accents on the tower and route markers. Add subtle halftone grain, weather-map contour lines, calibration ticks, and utilitarian Swiss safety-manual graphics without obscuring the landscape. Integrate a small duotone profile portrait of the musician from the reference image into the lower-right snowfield, preserving her recognizable facial identity and short dark hair; make it feel deliberately printed into the artwork rather than pasted on. Set the exact album title “RIME SIGNALS” in large condensed uppercase lettering across the open sky at upper left, with the exact artist name “MARA VEIL” in much smaller uppercase type beneath it. Crisp editorial hierarchy, severe alpine atmosphere, tactile ink texture, restrained contemporary record-label design, no border, no mockup, no additional words, no logos, one finished cover image composed for a wide 2464x1696 frame.",
  "width": 2464,
  "height": 1696,
  "inputs": {
    "seedImage": "https://assets.runware.ai/assets/inputs/9c9e8718-384e-4493-b5e3-909c6fbfc404.jpg",
    "referenceImages": [
      "https://assets.runware.ai/assets/inputs/1bb9ca8f-0b65-46aa-bc4b-69ac49f7e83b.jpg"
    ]
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "ba89250c-57e0-4ff4-9459-946c26f7fe06",
  "imageUUID": "7c71c158-3ce3-4c4a-8937-685a480d25ac",
  "imageURL": "https://im.runware.ai/image/os/a02d21/ws/4/ii/7c71c158-3ce3-4c4a-8937-685a480d25ac.jpg",
  "seed": 274415113,
  "cost": 0.0464
}
Text to Image

Subterranean Fungal Tram Terminal

Subterranean Fungal Tram Terminal

A vast underground tram terminal carved into a cavern of pale stone, reimagined as a living fungal transit hub. Sleek electric trams rest on curved tracks beside platforms grown from giant shelf mushrooms and ribbed mycelium structures. Commuters in practical travel clothes wait beneath vaulted ceilings threaded with glowing spores and dangling root systems, while porters push carts of produce, tools, and wrapped parcels. Puddles reflect soft amber and violet illumination. Moss-covered signage, mineral deposits, ventilation shafts, and distant tunnels create depth and realism. Cinematic wide-angle composition, high detail, atmospheric perspective, tactile surfaces, grounded fantasy, visually plausible architecture, layered crowd activity, crisp focus, dramatic scale, immersive environmental design.

import { createClient } from '@runware/sdk'

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

const [result] = await client.run({
  model: 'luma:uni@1',
  positivePrompt: 'A vast underground tram terminal carved into a cavern of pale stone, reimagined as a living fungal transit hub. Sleek electric trams rest on curved tracks beside platforms grown from giant shelf mushrooms and ribbed mycelium structures. Commuters in practical travel clothes wait beneath vaulted ceilings threaded with glowing spores and dangling root systems, while porters push carts of produce, tools, and wrapped parcels. Puddles reflect soft amber and violet illumination. Moss-covered signage, mineral deposits, ventilation shafts, and distant tunnels create depth and realism. Cinematic wide-angle composition, high detail, atmospheric perspective, tactile surfaces, grounded fantasy, visually plausible architecture, layered crowd activity, crisp focus, dramatic scale, immersive environmental design.',
  width: 2912,
  height: 1440,
  settings: {
    style: 'auto',
    search: false
  }
})
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": "luma:uni@1",
            "positivePrompt": "A vast underground tram terminal carved into a cavern of pale stone, reimagined as a living fungal transit hub. Sleek electric trams rest on curved tracks beside platforms grown from giant shelf mushrooms and ribbed mycelium structures. Commuters in practical travel clothes wait beneath vaulted ceilings threaded with glowing spores and dangling root systems, while porters push carts of produce, tools, and wrapped parcels. Puddles reflect soft amber and violet illumination. Moss-covered signage, mineral deposits, ventilation shafts, and distant tunnels create depth and realism. Cinematic wide-angle composition, high detail, atmospheric perspective, tactile surfaces, grounded fantasy, visually plausible architecture, layered crowd activity, crisp focus, dramatic scale, immersive environmental design.",
            "width": 2912,
            "height": 1440,
            "settings": {
                "style": "auto",
                "search": False
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "imageInference",
      "taskUUID": "228564a3-6ec8-4b51-b57f-91b1c039f564",
      "model": "luma:uni@1",
      "positivePrompt": "A vast underground tram terminal carved into a cavern of pale stone, reimagined as a living fungal transit hub. Sleek electric trams rest on curved tracks beside platforms grown from giant shelf mushrooms and ribbed mycelium structures. Commuters in practical travel clothes wait beneath vaulted ceilings threaded with glowing spores and dangling root systems, while porters push carts of produce, tools, and wrapped parcels. Puddles reflect soft amber and violet illumination. Moss-covered signage, mineral deposits, ventilation shafts, and distant tunnels create depth and realism. Cinematic wide-angle composition, high detail, atmospheric perspective, tactile surfaces, grounded fantasy, visually plausible architecture, layered crowd activity, crisp focus, dramatic scale, immersive environmental design.",
      "width": 2912,
      "height": 1440,
      "settings": {
        "style": "auto",
        "search": false
      }
    }
  ]'
runware run luma:uni@1 \
  positivePrompt="A vast underground tram terminal carved into a cavern of pale stone, reimagined as a living fungal transit hub. Sleek electric trams rest on curved tracks beside platforms grown from giant shelf mushrooms and ribbed mycelium structures. Commuters in practical travel clothes wait beneath vaulted ceilings threaded with glowing spores and dangling root systems, while porters push carts of produce, tools, and wrapped parcels. Puddles reflect soft amber and violet illumination. Moss-covered signage, mineral deposits, ventilation shafts, and distant tunnels create depth and realism. Cinematic wide-angle composition, high detail, atmospheric perspective, tactile surfaces, grounded fantasy, visually plausible architecture, layered crowd activity, crisp focus, dramatic scale, immersive environmental design." \
  width=2912 \
  height=1440 \
  settings.style=auto \
  settings.search=false
{
  "taskType": "imageInference",
  "taskUUID": "228564a3-6ec8-4b51-b57f-91b1c039f564",
  "model": "luma:uni@1",
  "positivePrompt": "A vast underground tram terminal carved into a cavern of pale stone, reimagined as a living fungal transit hub. Sleek electric trams rest on curved tracks beside platforms grown from giant shelf mushrooms and ribbed mycelium structures. Commuters in practical travel clothes wait beneath vaulted ceilings threaded with glowing spores and dangling root systems, while porters push carts of produce, tools, and wrapped parcels. Puddles reflect soft amber and violet illumination. Moss-covered signage, mineral deposits, ventilation shafts, and distant tunnels create depth and realism. Cinematic wide-angle composition, high detail, atmospheric perspective, tactile surfaces, grounded fantasy, visually plausible architecture, layered crowd activity, crisp focus, dramatic scale, immersive environmental design.",
  "width": 2912,
  "height": 1440,
  "settings": {
    "style": "auto",
    "search": false
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "228564a3-6ec8-4b51-b57f-91b1c039f564",
  "imageUUID": "34edf697-1bfd-4085-ae37-aa6706aee774",
  "imageURL": "https://im.runware.ai/image/os/a01d21/ws/4/ii/34edf697-1bfd-4085-ae37-aa6706aee774.jpg",
  "seed": 1614840959,
  "cost": 0.0404
}
Image to Image

Deserted Arcade Relic Chamber

Deserted Arcade Relic Chamber

Transform the seed image into a grand forgotten relic chamber inside a derelict arcade, keeping the same wide interior layout, aisle perspective, and machine-row spacing from the seed image. Reimagine the arcade cabinets as monumental shrine-like relic housings with carved stone, aged brass trim, mosaic panels, ceremonial motifs, and artifact compartments inspired by the reference image. Preserve believable architectural structure while blending decayed entertainment venue details with ancient treasury ornament. Dust in the air, shafts of warm light from broken ceiling panels, scattered tokens and fractured tiles on the floor, faint glowing indicator lights hidden among the relic surfaces, cinematic depth, highly detailed textures, realistic materials, immersive atmosphere, dramatic contrast, visually plausible scene.

import { createClient } from '@runware/sdk'

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

const [result] = await client.run({
  model: 'luma:uni@1',
  positivePrompt: 'Transform the seed image into a grand forgotten relic chamber inside a derelict arcade, keeping the same wide interior layout, aisle perspective, and machine-row spacing from the seed image. Reimagine the arcade cabinets as monumental shrine-like relic housings with carved stone, aged brass trim, mosaic panels, ceremonial motifs, and artifact compartments inspired by the reference image. Preserve believable architectural structure while blending decayed entertainment venue details with ancient treasury ornament. Dust in the air, shafts of warm light from broken ceiling panels, scattered tokens and fractured tiles on the floor, faint glowing indicator lights hidden among the relic surfaces, cinematic depth, highly detailed textures, realistic materials, immersive atmosphere, dramatic contrast, visually plausible scene.',
  width: 2464,
  height: 1696,
  settings: {
    style: 'auto'
  },
  inputs: {
    seedImage: 'https://assets.runware.ai/assets/inputs/f6fa2240-f675-4a49-bbe2-b4af131f627a.jpg',
    referenceImages: [
      'https://assets.runware.ai/assets/inputs/65ac7da7-0b8f-40c7-b1a3-2ea1e5fd787b.jpg'
    ]
  }
})
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": "luma:uni@1",
            "positivePrompt": "Transform the seed image into a grand forgotten relic chamber inside a derelict arcade, keeping the same wide interior layout, aisle perspective, and machine-row spacing from the seed image. Reimagine the arcade cabinets as monumental shrine-like relic housings with carved stone, aged brass trim, mosaic panels, ceremonial motifs, and artifact compartments inspired by the reference image. Preserve believable architectural structure while blending decayed entertainment venue details with ancient treasury ornament. Dust in the air, shafts of warm light from broken ceiling panels, scattered tokens and fractured tiles on the floor, faint glowing indicator lights hidden among the relic surfaces, cinematic depth, highly detailed textures, realistic materials, immersive atmosphere, dramatic contrast, visually plausible scene.",
            "width": 2464,
            "height": 1696,
            "settings": {
                "style": "auto"
            },
            "inputs": {
                "seedImage": "https://assets.runware.ai/assets/inputs/f6fa2240-f675-4a49-bbe2-b4af131f627a.jpg",
                "referenceImages": [
                    "https://assets.runware.ai/assets/inputs/65ac7da7-0b8f-40c7-b1a3-2ea1e5fd787b.jpg"
                ]
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "imageInference",
      "taskUUID": "29988756-e5c5-4ff0-af62-ed6b5d197365",
      "model": "luma:uni@1",
      "positivePrompt": "Transform the seed image into a grand forgotten relic chamber inside a derelict arcade, keeping the same wide interior layout, aisle perspective, and machine-row spacing from the seed image. Reimagine the arcade cabinets as monumental shrine-like relic housings with carved stone, aged brass trim, mosaic panels, ceremonial motifs, and artifact compartments inspired by the reference image. Preserve believable architectural structure while blending decayed entertainment venue details with ancient treasury ornament. Dust in the air, shafts of warm light from broken ceiling panels, scattered tokens and fractured tiles on the floor, faint glowing indicator lights hidden among the relic surfaces, cinematic depth, highly detailed textures, realistic materials, immersive atmosphere, dramatic contrast, visually plausible scene.",
      "width": 2464,
      "height": 1696,
      "settings": {
        "style": "auto"
      },
      "inputs": {
        "seedImage": "https://assets.runware.ai/assets/inputs/f6fa2240-f675-4a49-bbe2-b4af131f627a.jpg",
        "referenceImages": [
          "https://assets.runware.ai/assets/inputs/65ac7da7-0b8f-40c7-b1a3-2ea1e5fd787b.jpg"
        ]
      }
    }
  ]'
runware run luma:uni@1 \
  positivePrompt="Transform the seed image into a grand forgotten relic chamber inside a derelict arcade, keeping the same wide interior layout, aisle perspective, and machine-row spacing from the seed image. Reimagine the arcade cabinets as monumental shrine-like relic housings with carved stone, aged brass trim, mosaic panels, ceremonial motifs, and artifact compartments inspired by the reference image. Preserve believable architectural structure while blending decayed entertainment venue details with ancient treasury ornament. Dust in the air, shafts of warm light from broken ceiling panels, scattered tokens and fractured tiles on the floor, faint glowing indicator lights hidden among the relic surfaces, cinematic depth, highly detailed textures, realistic materials, immersive atmosphere, dramatic contrast, visually plausible scene." \
  width=2464 \
  height=1696 \
  settings.style=auto \
  inputs.seedImage=https://assets.runware.ai/assets/inputs/f6fa2240-f675-4a49-bbe2-b4af131f627a.jpg \
  inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/65ac7da7-0b8f-40c7-b1a3-2ea1e5fd787b.jpg
{
  "taskType": "imageInference",
  "taskUUID": "29988756-e5c5-4ff0-af62-ed6b5d197365",
  "model": "luma:uni@1",
  "positivePrompt": "Transform the seed image into a grand forgotten relic chamber inside a derelict arcade, keeping the same wide interior layout, aisle perspective, and machine-row spacing from the seed image. Reimagine the arcade cabinets as monumental shrine-like relic housings with carved stone, aged brass trim, mosaic panels, ceremonial motifs, and artifact compartments inspired by the reference image. Preserve believable architectural structure while blending decayed entertainment venue details with ancient treasury ornament. Dust in the air, shafts of warm light from broken ceiling panels, scattered tokens and fractured tiles on the floor, faint glowing indicator lights hidden among the relic surfaces, cinematic depth, highly detailed textures, realistic materials, immersive atmosphere, dramatic contrast, visually plausible scene.",
  "width": 2464,
  "height": 1696,
  "settings": {
    "style": "auto"
  },
  "inputs": {
    "seedImage": "https://assets.runware.ai/assets/inputs/f6fa2240-f675-4a49-bbe2-b4af131f627a.jpg",
    "referenceImages": [
      "https://assets.runware.ai/assets/inputs/65ac7da7-0b8f-40c7-b1a3-2ea1e5fd787b.jpg"
    ]
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "29988756-e5c5-4ff0-af62-ed6b5d197365",
  "imageUUID": "4c33c723-f8a7-45a8-8168-aaba85f86959",
  "imageURL": "https://im.runware.ai/image/os/a08dlim3/ws/4/ii/4c33c723-f8a7-45a8-8168-aaba85f86959.jpg",
  "seed": 2093462,
  "cost": 0.0464
}
Text to Image

Glasshouse Clockwork Tea Library

Glasshouse Clockwork Tea Library

An expansive Victorian-inspired glasshouse transformed into a tea library filled with towering bookshelves, hanging brass gears, suspended teapots, narrow rolling ladders, and delicate steam-powered reading lamps. In the center, a circular tasting table displays porcelain cups, handwritten labels, dried herbs, and tiny mechanical birds sorting bookmarks. Sunlight pours through patterned glass panels overhead, casting prismatic reflections across polished wood floors and copper piping. Dense indoor citrus trees and climbing vines weave around the architecture, blending botanical elegance with precise clockwork engineering. Rich environmental storytelling, highly detailed textures, cinematic depth, balanced composition, natural color harmony, crisp focus, imaginative yet plausible design.

import { createClient } from '@runware/sdk'

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

const [result] = await client.run({
  model: 'luma:uni@1',
  positivePrompt: 'An expansive Victorian-inspired glasshouse transformed into a tea library filled with towering bookshelves, hanging brass gears, suspended teapots, narrow rolling ladders, and delicate steam-powered reading lamps. In the center, a circular tasting table displays porcelain cups, handwritten labels, dried herbs, and tiny mechanical birds sorting bookmarks. Sunlight pours through patterned glass panels overhead, casting prismatic reflections across polished wood floors and copper piping. Dense indoor citrus trees and climbing vines weave around the architecture, blending botanical elegance with precise clockwork engineering. Rich environmental storytelling, highly detailed textures, cinematic depth, balanced composition, natural color harmony, crisp focus, imaginative yet plausible design.',
  width: 2464,
  height: 1696,
  settings: {
    style: 'auto'
  }
})
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": "luma:uni@1",
            "positivePrompt": "An expansive Victorian-inspired glasshouse transformed into a tea library filled with towering bookshelves, hanging brass gears, suspended teapots, narrow rolling ladders, and delicate steam-powered reading lamps. In the center, a circular tasting table displays porcelain cups, handwritten labels, dried herbs, and tiny mechanical birds sorting bookmarks. Sunlight pours through patterned glass panels overhead, casting prismatic reflections across polished wood floors and copper piping. Dense indoor citrus trees and climbing vines weave around the architecture, blending botanical elegance with precise clockwork engineering. Rich environmental storytelling, highly detailed textures, cinematic depth, balanced composition, natural color harmony, crisp focus, imaginative yet plausible design.",
            "width": 2464,
            "height": 1696,
            "settings": {
                "style": "auto"
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "imageInference",
      "taskUUID": "8f67abb9-b185-41fa-9f00-e2c06f0bd4fc",
      "model": "luma:uni@1",
      "positivePrompt": "An expansive Victorian-inspired glasshouse transformed into a tea library filled with towering bookshelves, hanging brass gears, suspended teapots, narrow rolling ladders, and delicate steam-powered reading lamps. In the center, a circular tasting table displays porcelain cups, handwritten labels, dried herbs, and tiny mechanical birds sorting bookmarks. Sunlight pours through patterned glass panels overhead, casting prismatic reflections across polished wood floors and copper piping. Dense indoor citrus trees and climbing vines weave around the architecture, blending botanical elegance with precise clockwork engineering. Rich environmental storytelling, highly detailed textures, cinematic depth, balanced composition, natural color harmony, crisp focus, imaginative yet plausible design.",
      "width": 2464,
      "height": 1696,
      "settings": {
        "style": "auto"
      }
    }
  ]'
runware run luma:uni@1 \
  positivePrompt="An expansive Victorian-inspired glasshouse transformed into a tea library filled with towering bookshelves, hanging brass gears, suspended teapots, narrow rolling ladders, and delicate steam-powered reading lamps. In the center, a circular tasting table displays porcelain cups, handwritten labels, dried herbs, and tiny mechanical birds sorting bookmarks. Sunlight pours through patterned glass panels overhead, casting prismatic reflections across polished wood floors and copper piping. Dense indoor citrus trees and climbing vines weave around the architecture, blending botanical elegance with precise clockwork engineering. Rich environmental storytelling, highly detailed textures, cinematic depth, balanced composition, natural color harmony, crisp focus, imaginative yet plausible design." \
  width=2464 \
  height=1696 \
  settings.style=auto
{
  "taskType": "imageInference",
  "taskUUID": "8f67abb9-b185-41fa-9f00-e2c06f0bd4fc",
  "model": "luma:uni@1",
  "positivePrompt": "An expansive Victorian-inspired glasshouse transformed into a tea library filled with towering bookshelves, hanging brass gears, suspended teapots, narrow rolling ladders, and delicate steam-powered reading lamps. In the center, a circular tasting table displays porcelain cups, handwritten labels, dried herbs, and tiny mechanical birds sorting bookmarks. Sunlight pours through patterned glass panels overhead, casting prismatic reflections across polished wood floors and copper piping. Dense indoor citrus trees and climbing vines weave around the architecture, blending botanical elegance with precise clockwork engineering. Rich environmental storytelling, highly detailed textures, cinematic depth, balanced composition, natural color harmony, crisp focus, imaginative yet plausible design.",
  "width": 2464,
  "height": 1696,
  "settings": {
    "style": "auto"
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "8f67abb9-b185-41fa-9f00-e2c06f0bd4fc",
  "imageUUID": "16f0a674-cfb3-4d71-9095-9cefac3a204f",
  "imageURL": "https://im.runware.ai/image/os/a07dlim3/ws/4/ii/16f0a674-cfb3-4d71-9095-9cefac3a204f.jpg",
  "seed": 356708615,
  "cost": 0.0404
}
Image to Image

Moonlit Bazaar Rooftop Garden

Moonlit Bazaar Rooftop Garden

Create a cinematic night scene that fuses a lively old-world market district with an intimate rooftop garden retreat. View from a slightly elevated angle across tiled rooftops toward a hidden terrace above the bazaar. Include citrus trees in painted ceramic pots, layered woven rugs, low seating, brass lanterns, patterned masonry, suspended fabric canopies below, drifting cooking smoke, and clusters of tiny market lights stretching into the distance. A small group of musicians sits near the terrace edge while shoppers move through the lanes beneath. Emphasize believable architecture, rich textures, moonlit atmosphere, warm-and-cool light contrast, deep spatial layering, and highly detailed environmental storytelling. Realistic, elegant, immersive, visually plausible.

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/cd8c0af8-7f97-405d-830e-5dfce217188b.jpg',
    'https://assets.runware.ai/assets/inputs/636838cb-a9e5-4286-b5e4-b105e74a6801.jpg'
  ],
  model: 'luma:uni@1',
  positivePrompt: 'Create a cinematic night scene that fuses a lively old-world market district with an intimate rooftop garden retreat. View from a slightly elevated angle across tiled rooftops toward a hidden terrace above the bazaar. Include citrus trees in painted ceramic pots, layered woven rugs, low seating, brass lanterns, patterned masonry, suspended fabric canopies below, drifting cooking smoke, and clusters of tiny market lights stretching into the distance. A small group of musicians sits near the terrace edge while shoppers move through the lanes beneath. Emphasize believable architecture, rich textures, moonlit atmosphere, warm-and-cool light contrast, deep spatial layering, and highly detailed environmental storytelling. Realistic, elegant, immersive, visually plausible.',
  width: 2912,
  height: 1440,
  settings: {
    style: 'auto',
    search: false
  }
})
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/cd8c0af8-7f97-405d-830e-5dfce217188b.jpg",
                "https://assets.runware.ai/assets/inputs/636838cb-a9e5-4286-b5e4-b105e74a6801.jpg"
            ],
            "model": "luma:uni@1",
            "positivePrompt": "Create a cinematic night scene that fuses a lively old-world market district with an intimate rooftop garden retreat. View from a slightly elevated angle across tiled rooftops toward a hidden terrace above the bazaar. Include citrus trees in painted ceramic pots, layered woven rugs, low seating, brass lanterns, patterned masonry, suspended fabric canopies below, drifting cooking smoke, and clusters of tiny market lights stretching into the distance. A small group of musicians sits near the terrace edge while shoppers move through the lanes beneath. Emphasize believable architecture, rich textures, moonlit atmosphere, warm-and-cool light contrast, deep spatial layering, and highly detailed environmental storytelling. Realistic, elegant, immersive, visually plausible.",
            "width": 2912,
            "height": 1440,
            "settings": {
                "style": "auto",
                "search": False
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "imageInference",
      "taskUUID": "e2bff59d-9255-4f60-ae9c-68c74d8daa29",
      "referenceImages": [
        "https://assets.runware.ai/assets/inputs/cd8c0af8-7f97-405d-830e-5dfce217188b.jpg",
        "https://assets.runware.ai/assets/inputs/636838cb-a9e5-4286-b5e4-b105e74a6801.jpg"
      ],
      "model": "luma:uni@1",
      "positivePrompt": "Create a cinematic night scene that fuses a lively old-world market district with an intimate rooftop garden retreat. View from a slightly elevated angle across tiled rooftops toward a hidden terrace above the bazaar. Include citrus trees in painted ceramic pots, layered woven rugs, low seating, brass lanterns, patterned masonry, suspended fabric canopies below, drifting cooking smoke, and clusters of tiny market lights stretching into the distance. A small group of musicians sits near the terrace edge while shoppers move through the lanes beneath. Emphasize believable architecture, rich textures, moonlit atmosphere, warm-and-cool light contrast, deep spatial layering, and highly detailed environmental storytelling. Realistic, elegant, immersive, visually plausible.",
      "width": 2912,
      "height": 1440,
      "settings": {
        "style": "auto",
        "search": false
      }
    }
  ]'
runware run luma:uni@1 \
  referenceImages.0=https://assets.runware.ai/assets/inputs/cd8c0af8-7f97-405d-830e-5dfce217188b.jpg \
  referenceImages.1=https://assets.runware.ai/assets/inputs/636838cb-a9e5-4286-b5e4-b105e74a6801.jpg \
  positivePrompt="Create a cinematic night scene that fuses a lively old-world market district with an intimate rooftop garden retreat. View from a slightly elevated angle across tiled rooftops toward a hidden terrace above the bazaar. Include citrus trees in painted ceramic pots, layered woven rugs, low seating, brass lanterns, patterned masonry, suspended fabric canopies below, drifting cooking smoke, and clusters of tiny market lights stretching into the distance. A small group of musicians sits near the terrace edge while shoppers move through the lanes beneath. Emphasize believable architecture, rich textures, moonlit atmosphere, warm-and-cool light contrast, deep spatial layering, and highly detailed environmental storytelling. Realistic, elegant, immersive, visually plausible." \
  width=2912 \
  height=1440 \
  settings.style=auto \
  settings.search=false
{
  "taskType": "imageInference",
  "taskUUID": "e2bff59d-9255-4f60-ae9c-68c74d8daa29",
  "referenceImages": [
    "https://assets.runware.ai/assets/inputs/cd8c0af8-7f97-405d-830e-5dfce217188b.jpg",
    "https://assets.runware.ai/assets/inputs/636838cb-a9e5-4286-b5e4-b105e74a6801.jpg"
  ],
  "model": "luma:uni@1",
  "positivePrompt": "Create a cinematic night scene that fuses a lively old-world market district with an intimate rooftop garden retreat. View from a slightly elevated angle across tiled rooftops toward a hidden terrace above the bazaar. Include citrus trees in painted ceramic pots, layered woven rugs, low seating, brass lanterns, patterned masonry, suspended fabric canopies below, drifting cooking smoke, and clusters of tiny market lights stretching into the distance. A small group of musicians sits near the terrace edge while shoppers move through the lanes beneath. Emphasize believable architecture, rich textures, moonlit atmosphere, warm-and-cool light contrast, deep spatial layering, and highly detailed environmental storytelling. Realistic, elegant, immersive, visually plausible.",
  "width": 2912,
  "height": 1440,
  "settings": {
    "style": "auto",
    "search": false
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "e2bff59d-9255-4f60-ae9c-68c74d8daa29",
  "imageUUID": "3584a22c-3f7a-4bdf-ae9f-0128e2860e9f",
  "imageURL": "https://im.runware.ai/image/os/a01d21/ws/4/ii/3584a22c-3f7a-4bdf-ae9f-0128e2860e9f.jpg",
  "seed": 1213119862,
  "cost": 0.0464
}