UNI-1

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.

Complete technical specification for integration
Ready-to-use code snippets for common workflows
text-to-image
Big Bud Tractor Landscape Composite$0.0404~1m 59s
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$0.0404~2m 6s
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$0.0464~1m 24s
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$0.0464~1m 35s
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
}