Nano Banana 2 Lite

Nano Banana 2 Lite is a lighter variant in Google's Nano Banana 2 image model family. It is positioned as a more efficient option for teams that want the same broad text-to-image and image-editing workflow shape as Nano Banana 2 but with faster turnaround and a smaller model footprint. It is best understood as a lower-latency, higher-throughput entry point into the Nano Banana 2 family rather than a separate creative direction.

Complete technical specification for integration
Ready-to-use code snippets for common workflows
Sci Fi Series Key Poster

Create a premium vertical streaming poster for an original science-fiction limited series titled "ORBITAL SILENCE". Use the first reference image as the lead character: preserve her face, hairstyle, and grounded serious expression, and place her in a sleek navy astronaut pressure suit. Use the second reference image as the main spacecraft design, visible behind her in orbit around a shadowed blue planet. Composition: cinematic one-sheet key art, lead character centered from chest up, spacecraft arcing diagonally behind her, planet horizon and faint stars in the background, cool blue and silver palette with a thin amber rim light. Mood: tense, elegant, high-budget mystery thriller. Add clean poster typography: large title text "ORBITAL SILENCE" near the lower third, small tagline above it reading "THE SIGNAL CAME FROM HOME", and subtle streaming release text at the bottom reading "A SIX-PART ORIGINAL SERIES". Realistic lighting, crisp details, polished entertainment marketing finish, no extra logos, no cast billing blocks.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'google:nano-banana@2-lite',
positivePrompt: 'Create a premium vertical streaming poster for an original science-fiction limited series titled "ORBITAL SILENCE". Use the first reference image as the lead character: preserve her face, hairstyle, and grounded serious expression, and place her in a sleek navy astronaut pressure suit. Use the second reference image as the main spacecraft design, visible behind her in orbit around a shadowed blue planet. Composition: cinematic one-sheet key art, lead character centered from chest up, spacecraft arcing diagonally behind her, planet horizon and faint stars in the background, cool blue and silver palette with a thin amber rim light. Mood: tense, elegant, high-budget mystery thriller. Add clean poster typography: large title text "ORBITAL SILENCE" near the lower third, small tagline above it reading "THE SIGNAL CAME FROM HOME", and subtle streaming release text at the bottom reading "A SIX-PART ORIGINAL SERIES". Realistic lighting, crisp details, polished entertainment marketing finish, no extra logos, no cast billing blocks.',
width: 848,
height: 1264,
settings: {
temperature: 0.8,
topP: 0.9
},
providerSettings: {
google: {
safetyTolerance: 'off'
}
},
inputs: {
referenceImages: [
'https://assets.runware.ai/assets/inputs/8e180347-2cd9-4259-9ba8-173ac47beb8b.jpg',
'https://assets.runware.ai/assets/inputs/6d767d12-7bc2-4413-a102-79aa57161b59.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": "google:nano-banana@2-lite",
"positivePrompt": "Create a premium vertical streaming poster for an original science-fiction limited series titled \"ORBITAL SILENCE\". Use the first reference image as the lead character: preserve her face, hairstyle, and grounded serious expression, and place her in a sleek navy astronaut pressure suit. Use the second reference image as the main spacecraft design, visible behind her in orbit around a shadowed blue planet. Composition: cinematic one-sheet key art, lead character centered from chest up, spacecraft arcing diagonally behind her, planet horizon and faint stars in the background, cool blue and silver palette with a thin amber rim light. Mood: tense, elegant, high-budget mystery thriller. Add clean poster typography: large title text \"ORBITAL SILENCE\" near the lower third, small tagline above it reading \"THE SIGNAL CAME FROM HOME\", and subtle streaming release text at the bottom reading \"A SIX-PART ORIGINAL SERIES\". Realistic lighting, crisp details, polished entertainment marketing finish, no extra logos, no cast billing blocks.",
"width": 848,
"height": 1264,
"settings": {
"temperature": 0.8,
"topP": 0.9
},
"providerSettings": {
"google": {
"safetyTolerance": "off"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/8e180347-2cd9-4259-9ba8-173ac47beb8b.jpg",
"https://assets.runware.ai/assets/inputs/6d767d12-7bc2-4413-a102-79aa57161b59.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": "0bbc5d06-c0fa-4602-b252-762d82cdad60",
"model": "google:nano-banana@2-lite",
"positivePrompt": "Create a premium vertical streaming poster for an original science-fiction limited series titled \"ORBITAL SILENCE\". Use the first reference image as the lead character: preserve her face, hairstyle, and grounded serious expression, and place her in a sleek navy astronaut pressure suit. Use the second reference image as the main spacecraft design, visible behind her in orbit around a shadowed blue planet. Composition: cinematic one-sheet key art, lead character centered from chest up, spacecraft arcing diagonally behind her, planet horizon and faint stars in the background, cool blue and silver palette with a thin amber rim light. Mood: tense, elegant, high-budget mystery thriller. Add clean poster typography: large title text \"ORBITAL SILENCE\" near the lower third, small tagline above it reading \"THE SIGNAL CAME FROM HOME\", and subtle streaming release text at the bottom reading \"A SIX-PART ORIGINAL SERIES\". Realistic lighting, crisp details, polished entertainment marketing finish, no extra logos, no cast billing blocks.",
"width": 848,
"height": 1264,
"settings": {
"temperature": 0.8,
"topP": 0.9
},
"providerSettings": {
"google": {
"safetyTolerance": "off"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/8e180347-2cd9-4259-9ba8-173ac47beb8b.jpg",
"https://assets.runware.ai/assets/inputs/6d767d12-7bc2-4413-a102-79aa57161b59.jpg"
]
}
}
]'runware run google:nano-banana@2-lite \
positivePrompt="Create a premium vertical streaming poster for an original science-fiction limited series titled \"ORBITAL SILENCE\". Use the first reference image as the lead character: preserve her face, hairstyle, and grounded serious expression, and place her in a sleek navy astronaut pressure suit. Use the second reference image as the main spacecraft design, visible behind her in orbit around a shadowed blue planet. Composition: cinematic one-sheet key art, lead character centered from chest up, spacecraft arcing diagonally behind her, planet horizon and faint stars in the background, cool blue and silver palette with a thin amber rim light. Mood: tense, elegant, high-budget mystery thriller. Add clean poster typography: large title text \"ORBITAL SILENCE\" near the lower third, small tagline above it reading \"THE SIGNAL CAME FROM HOME\", and subtle streaming release text at the bottom reading \"A SIX-PART ORIGINAL SERIES\". Realistic lighting, crisp details, polished entertainment marketing finish, no extra logos, no cast billing blocks." \
width=848 \
height=1264 \
settings.temperature=0.8 \
settings.topP=0.9 \
providerSettings.google.safetyTolerance=off \
inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/8e180347-2cd9-4259-9ba8-173ac47beb8b.jpg \
inputs.referenceImages.1=https://assets.runware.ai/assets/inputs/6d767d12-7bc2-4413-a102-79aa57161b59.jpg{
"taskType": "imageInference",
"taskUUID": "0bbc5d06-c0fa-4602-b252-762d82cdad60",
"model": "google:nano-banana@2-lite",
"positivePrompt": "Create a premium vertical streaming poster for an original science-fiction limited series titled \"ORBITAL SILENCE\". Use the first reference image as the lead character: preserve her face, hairstyle, and grounded serious expression, and place her in a sleek navy astronaut pressure suit. Use the second reference image as the main spacecraft design, visible behind her in orbit around a shadowed blue planet. Composition: cinematic one-sheet key art, lead character centered from chest up, spacecraft arcing diagonally behind her, planet horizon and faint stars in the background, cool blue and silver palette with a thin amber rim light. Mood: tense, elegant, high-budget mystery thriller. Add clean poster typography: large title text \"ORBITAL SILENCE\" near the lower third, small tagline above it reading \"THE SIGNAL CAME FROM HOME\", and subtle streaming release text at the bottom reading \"A SIX-PART ORIGINAL SERIES\". Realistic lighting, crisp details, polished entertainment marketing finish, no extra logos, no cast billing blocks.",
"width": 848,
"height": 1264,
"settings": {
"temperature": 0.8,
"topP": 0.9
},
"providerSettings": {
"google": {
"safetyTolerance": "off"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/8e180347-2cd9-4259-9ba8-173ac47beb8b.jpg",
"https://assets.runware.ai/assets/inputs/6d767d12-7bc2-4413-a102-79aa57161b59.jpg"
]
}
}{
"taskType": "imageInference",
"taskUUID": "0bbc5d06-c0fa-4602-b252-762d82cdad60",
"imageUUID": "19b875e0-ad86-4567-8fff-35bf34c7f5fb",
"imageURL": "https://im.runware.ai/image/os/a10dlim3/ws/3/ii/19b875e0-ad86-4567-8fff-35bf34c7f5fb.jpg",
"seed": 19114180,
"cost": 0.0343353
}Battery Recycler Editorial Portrait

Create a polished editorial magazine photograph for a clean-tech business feature. Use reference image 1 to preserve the subject’s facial identity, age, hairstyle, and general wardrobe direction. Use reference image 2 as the basis for the environment: a modern battery recycling facility with organized equipment, conveyors, sorted cells, and subtle industrial depth. Compose a vertical full-page feature opener: subject standing three-quarter to camera in the foreground, confident but approachable, facility softly active behind them. Lighting should feel like high-end magazine portraiture, soft key light from camera left, subtle rim light, natural skin texture, realistic fabric detail, shallow depth of field, premium documentary style, muted graphite, steel blue, and warm amber color palette. No visible brand logos, no readable signage, no text overlays.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'google:nano-banana@2-lite',
positivePrompt: 'Create a polished editorial magazine photograph for a clean-tech business feature. Use reference image 1 to preserve the subject’s facial identity, age, hairstyle, and general wardrobe direction. Use reference image 2 as the basis for the environment: a modern battery recycling facility with organized equipment, conveyors, sorted cells, and subtle industrial depth. Compose a vertical full-page feature opener: subject standing three-quarter to camera in the foreground, confident but approachable, facility softly active behind them. Lighting should feel like high-end magazine portraiture, soft key light from camera left, subtle rim light, natural skin texture, realistic fabric detail, shallow depth of field, premium documentary style, muted graphite, steel blue, and warm amber color palette. No visible brand logos, no readable signage, no text overlays.',
width: 896,
height: 1200,
settings: {
temperature: 0.7,
topP: 0.9
},
providerSettings: {
google: {
safetyTolerance: 'off'
}
},
inputs: {
referenceImages: [
'https://assets.runware.ai/assets/inputs/1bd242b2-0fd8-48f2-a837-fbd96ea14575.jpg',
'https://assets.runware.ai/assets/inputs/aad04803-33c0-405e-b824-38564e233f5f.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": "google:nano-banana@2-lite",
"positivePrompt": "Create a polished editorial magazine photograph for a clean-tech business feature. Use reference image 1 to preserve the subject’s facial identity, age, hairstyle, and general wardrobe direction. Use reference image 2 as the basis for the environment: a modern battery recycling facility with organized equipment, conveyors, sorted cells, and subtle industrial depth. Compose a vertical full-page feature opener: subject standing three-quarter to camera in the foreground, confident but approachable, facility softly active behind them. Lighting should feel like high-end magazine portraiture, soft key light from camera left, subtle rim light, natural skin texture, realistic fabric detail, shallow depth of field, premium documentary style, muted graphite, steel blue, and warm amber color palette. No visible brand logos, no readable signage, no text overlays.",
"width": 896,
"height": 1200,
"settings": {
"temperature": 0.7,
"topP": 0.9
},
"providerSettings": {
"google": {
"safetyTolerance": "off"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/1bd242b2-0fd8-48f2-a837-fbd96ea14575.jpg",
"https://assets.runware.ai/assets/inputs/aad04803-33c0-405e-b824-38564e233f5f.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": "4d41f940-bc69-4695-981e-15d577300f48",
"model": "google:nano-banana@2-lite",
"positivePrompt": "Create a polished editorial magazine photograph for a clean-tech business feature. Use reference image 1 to preserve the subject’s facial identity, age, hairstyle, and general wardrobe direction. Use reference image 2 as the basis for the environment: a modern battery recycling facility with organized equipment, conveyors, sorted cells, and subtle industrial depth. Compose a vertical full-page feature opener: subject standing three-quarter to camera in the foreground, confident but approachable, facility softly active behind them. Lighting should feel like high-end magazine portraiture, soft key light from camera left, subtle rim light, natural skin texture, realistic fabric detail, shallow depth of field, premium documentary style, muted graphite, steel blue, and warm amber color palette. No visible brand logos, no readable signage, no text overlays.",
"width": 896,
"height": 1200,
"settings": {
"temperature": 0.7,
"topP": 0.9
},
"providerSettings": {
"google": {
"safetyTolerance": "off"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/1bd242b2-0fd8-48f2-a837-fbd96ea14575.jpg",
"https://assets.runware.ai/assets/inputs/aad04803-33c0-405e-b824-38564e233f5f.jpg"
]
}
}
]'runware run google:nano-banana@2-lite \
positivePrompt="Create a polished editorial magazine photograph for a clean-tech business feature. Use reference image 1 to preserve the subject’s facial identity, age, hairstyle, and general wardrobe direction. Use reference image 2 as the basis for the environment: a modern battery recycling facility with organized equipment, conveyors, sorted cells, and subtle industrial depth. Compose a vertical full-page feature opener: subject standing three-quarter to camera in the foreground, confident but approachable, facility softly active behind them. Lighting should feel like high-end magazine portraiture, soft key light from camera left, subtle rim light, natural skin texture, realistic fabric detail, shallow depth of field, premium documentary style, muted graphite, steel blue, and warm amber color palette. No visible brand logos, no readable signage, no text overlays." \
width=896 \
height=1200 \
settings.temperature=0.7 \
settings.topP=0.9 \
providerSettings.google.safetyTolerance=off \
inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/1bd242b2-0fd8-48f2-a837-fbd96ea14575.jpg \
inputs.referenceImages.1=https://assets.runware.ai/assets/inputs/aad04803-33c0-405e-b824-38564e233f5f.jpg{
"taskType": "imageInference",
"taskUUID": "4d41f940-bc69-4695-981e-15d577300f48",
"model": "google:nano-banana@2-lite",
"positivePrompt": "Create a polished editorial magazine photograph for a clean-tech business feature. Use reference image 1 to preserve the subject’s facial identity, age, hairstyle, and general wardrobe direction. Use reference image 2 as the basis for the environment: a modern battery recycling facility with organized equipment, conveyors, sorted cells, and subtle industrial depth. Compose a vertical full-page feature opener: subject standing three-quarter to camera in the foreground, confident but approachable, facility softly active behind them. Lighting should feel like high-end magazine portraiture, soft key light from camera left, subtle rim light, natural skin texture, realistic fabric detail, shallow depth of field, premium documentary style, muted graphite, steel blue, and warm amber color palette. No visible brand logos, no readable signage, no text overlays.",
"width": 896,
"height": 1200,
"settings": {
"temperature": 0.7,
"topP": 0.9
},
"providerSettings": {
"google": {
"safetyTolerance": "off"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/1bd242b2-0fd8-48f2-a837-fbd96ea14575.jpg",
"https://assets.runware.ai/assets/inputs/aad04803-33c0-405e-b824-38564e233f5f.jpg"
]
}
}{
"taskType": "imageInference",
"taskUUID": "4d41f940-bc69-4695-981e-15d577300f48",
"imageUUID": "20f8e5f6-b78c-4858-8e52-07b65570f27e",
"imageURL": "https://im.runware.ai/image/os/a06dlim3/ws/3/ii/20f8e5f6-b78c-4858-8e52-07b65570f27e.jpg",
"seed": 1603442794,
"cost": 0.0343233
}Cold Brew Website Hero

Create a polished 16:9 ecommerce website hero banner for the fictional direct-to-consumer brand Northstar Coffee Co. Use the four reference images: preserve the bottle, cans, subscription box, logo, and color palette from the product and brand references, then place them naturally into the bright kitchen counter lifestyle scene. Composition: product bundle hero on the right third, iced coffee glass and coffee beans in the foreground, warm morning sunlight, soft shadows, premium minimal styling. Leave clean negative space on the left for marketing copy. Include crisp on-image headline text on the left: “SMOOTH COLD BREW” with smaller subheadline “Ready all week.” Add a simple rounded CTA button reading “SHOP STARTER PACK”. Modern DTC coffee website aesthetic, realistic product photography, warm cream and charcoal palette with copper accents, high-end commercial lighting, sharp labels, web-ready banner layout.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'google:nano-banana@2-lite',
positivePrompt: 'Create a polished 16:9 ecommerce website hero banner for the fictional direct-to-consumer brand Northstar Coffee Co. Use the four reference images: preserve the bottle, cans, subscription box, logo, and color palette from the product and brand references, then place them naturally into the bright kitchen counter lifestyle scene. Composition: product bundle hero on the right third, iced coffee glass and coffee beans in the foreground, warm morning sunlight, soft shadows, premium minimal styling. Leave clean negative space on the left for marketing copy. Include crisp on-image headline text on the left: “SMOOTH COLD BREW” with smaller subheadline “Ready all week.” Add a simple rounded CTA button reading “SHOP STARTER PACK”. Modern DTC coffee website aesthetic, realistic product photography, warm cream and charcoal palette with copper accents, high-end commercial lighting, sharp labels, web-ready banner layout.',
width: 1376,
height: 768,
settings: {
temperature: 0.7,
topP: 0.9
},
providerSettings: {
google: {
safetyTolerance: 'off'
}
},
inputs: {
referenceImages: [
'https://assets.runware.ai/assets/inputs/c7478d50-49d0-42d3-a1d3-3c239da7b853.jpg',
'https://assets.runware.ai/assets/inputs/be4f678c-dc73-44d7-a92d-71e8577df4cc.jpg',
'https://assets.runware.ai/assets/inputs/c445b09b-4e7b-4431-a7f1-8b6bfb2bdec1.jpg',
'https://assets.runware.ai/assets/inputs/f491550f-ba43-43ae-8f68-bd75b1728362.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": "google:nano-banana@2-lite",
"positivePrompt": "Create a polished 16:9 ecommerce website hero banner for the fictional direct-to-consumer brand Northstar Coffee Co. Use the four reference images: preserve the bottle, cans, subscription box, logo, and color palette from the product and brand references, then place them naturally into the bright kitchen counter lifestyle scene. Composition: product bundle hero on the right third, iced coffee glass and coffee beans in the foreground, warm morning sunlight, soft shadows, premium minimal styling. Leave clean negative space on the left for marketing copy. Include crisp on-image headline text on the left: “SMOOTH COLD BREW” with smaller subheadline “Ready all week.” Add a simple rounded CTA button reading “SHOP STARTER PACK”. Modern DTC coffee website aesthetic, realistic product photography, warm cream and charcoal palette with copper accents, high-end commercial lighting, sharp labels, web-ready banner layout.",
"width": 1376,
"height": 768,
"settings": {
"temperature": 0.7,
"topP": 0.9
},
"providerSettings": {
"google": {
"safetyTolerance": "off"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/c7478d50-49d0-42d3-a1d3-3c239da7b853.jpg",
"https://assets.runware.ai/assets/inputs/be4f678c-dc73-44d7-a92d-71e8577df4cc.jpg",
"https://assets.runware.ai/assets/inputs/c445b09b-4e7b-4431-a7f1-8b6bfb2bdec1.jpg",
"https://assets.runware.ai/assets/inputs/f491550f-ba43-43ae-8f68-bd75b1728362.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": "ab50b9cd-0ec6-424e-83b2-213a9092e801",
"model": "google:nano-banana@2-lite",
"positivePrompt": "Create a polished 16:9 ecommerce website hero banner for the fictional direct-to-consumer brand Northstar Coffee Co. Use the four reference images: preserve the bottle, cans, subscription box, logo, and color palette from the product and brand references, then place them naturally into the bright kitchen counter lifestyle scene. Composition: product bundle hero on the right third, iced coffee glass and coffee beans in the foreground, warm morning sunlight, soft shadows, premium minimal styling. Leave clean negative space on the left for marketing copy. Include crisp on-image headline text on the left: “SMOOTH COLD BREW” with smaller subheadline “Ready all week.” Add a simple rounded CTA button reading “SHOP STARTER PACK”. Modern DTC coffee website aesthetic, realistic product photography, warm cream and charcoal palette with copper accents, high-end commercial lighting, sharp labels, web-ready banner layout.",
"width": 1376,
"height": 768,
"settings": {
"temperature": 0.7,
"topP": 0.9
},
"providerSettings": {
"google": {
"safetyTolerance": "off"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/c7478d50-49d0-42d3-a1d3-3c239da7b853.jpg",
"https://assets.runware.ai/assets/inputs/be4f678c-dc73-44d7-a92d-71e8577df4cc.jpg",
"https://assets.runware.ai/assets/inputs/c445b09b-4e7b-4431-a7f1-8b6bfb2bdec1.jpg",
"https://assets.runware.ai/assets/inputs/f491550f-ba43-43ae-8f68-bd75b1728362.jpg"
]
}
}
]'runware run google:nano-banana@2-lite \
positivePrompt="Create a polished 16:9 ecommerce website hero banner for the fictional direct-to-consumer brand Northstar Coffee Co. Use the four reference images: preserve the bottle, cans, subscription box, logo, and color palette from the product and brand references, then place them naturally into the bright kitchen counter lifestyle scene. Composition: product bundle hero on the right third, iced coffee glass and coffee beans in the foreground, warm morning sunlight, soft shadows, premium minimal styling. Leave clean negative space on the left for marketing copy. Include crisp on-image headline text on the left: “SMOOTH COLD BREW” with smaller subheadline “Ready all week.” Add a simple rounded CTA button reading “SHOP STARTER PACK”. Modern DTC coffee website aesthetic, realistic product photography, warm cream and charcoal palette with copper accents, high-end commercial lighting, sharp labels, web-ready banner layout." \
width=1376 \
height=768 \
settings.temperature=0.7 \
settings.topP=0.9 \
providerSettings.google.safetyTolerance=off \
inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/c7478d50-49d0-42d3-a1d3-3c239da7b853.jpg \
inputs.referenceImages.1=https://assets.runware.ai/assets/inputs/be4f678c-dc73-44d7-a92d-71e8577df4cc.jpg \
inputs.referenceImages.2=https://assets.runware.ai/assets/inputs/c445b09b-4e7b-4431-a7f1-8b6bfb2bdec1.jpg \
inputs.referenceImages.3=https://assets.runware.ai/assets/inputs/f491550f-ba43-43ae-8f68-bd75b1728362.jpg{
"taskType": "imageInference",
"taskUUID": "ab50b9cd-0ec6-424e-83b2-213a9092e801",
"model": "google:nano-banana@2-lite",
"positivePrompt": "Create a polished 16:9 ecommerce website hero banner for the fictional direct-to-consumer brand Northstar Coffee Co. Use the four reference images: preserve the bottle, cans, subscription box, logo, and color palette from the product and brand references, then place them naturally into the bright kitchen counter lifestyle scene. Composition: product bundle hero on the right third, iced coffee glass and coffee beans in the foreground, warm morning sunlight, soft shadows, premium minimal styling. Leave clean negative space on the left for marketing copy. Include crisp on-image headline text on the left: “SMOOTH COLD BREW” with smaller subheadline “Ready all week.” Add a simple rounded CTA button reading “SHOP STARTER PACK”. Modern DTC coffee website aesthetic, realistic product photography, warm cream and charcoal palette with copper accents, high-end commercial lighting, sharp labels, web-ready banner layout.",
"width": 1376,
"height": 768,
"settings": {
"temperature": 0.7,
"topP": 0.9
},
"providerSettings": {
"google": {
"safetyTolerance": "off"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/c7478d50-49d0-42d3-a1d3-3c239da7b853.jpg",
"https://assets.runware.ai/assets/inputs/be4f678c-dc73-44d7-a92d-71e8577df4cc.jpg",
"https://assets.runware.ai/assets/inputs/c445b09b-4e7b-4431-a7f1-8b6bfb2bdec1.jpg",
"https://assets.runware.ai/assets/inputs/f491550f-ba43-43ae-8f68-bd75b1728362.jpg"
]
}
}{
"taskType": "imageInference",
"taskUUID": "ab50b9cd-0ec6-424e-83b2-213a9092e801",
"imageUUID": "6ec7af54-7101-4708-b84b-8e11e68271a7",
"imageURL": "https://im.runware.ai/image/os/a01d21/ws/3/ii/6ec7af54-7101-4708-b84b-8e11e68271a7.jpg",
"seed": 1819835718,
"cost": 0.0350016
}Monarch Butterfly Classroom Poster

Create a vertical educational poster for an elementary classroom, ages 6-9, titled "MONARCH LIFE CYCLE" at the top in large friendly rounded lettering. Show a clean circular life-cycle diagram with four accurate stages: a tiny monarch EGG on a milkweed leaf, a striped CATERPILLAR eating milkweed, a green CHRYSALIS hanging from a stem, and an adult orange-and-black BUTTERFLY. Include simple curved arrows between each stage and clear labels in uppercase: "EGG", "CATERPILLAR", "CHRYSALIS", "BUTTERFLY". Style: warm modern children's book illustration, soft gouache texture, crisp edges, cheerful natural colors, white background with pale sky-blue and leaf-green accents, spacious layout, readable classroom-poster composition, print-ready, no logos, no extra text.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'google:nano-banana@2-lite',
positivePrompt: 'Create a vertical educational poster for an elementary classroom, ages 6-9, titled "MONARCH LIFE CYCLE" at the top in large friendly rounded lettering. Show a clean circular life-cycle diagram with four accurate stages: a tiny monarch EGG on a milkweed leaf, a striped CATERPILLAR eating milkweed, a green CHRYSALIS hanging from a stem, and an adult orange-and-black BUTTERFLY. Include simple curved arrows between each stage and clear labels in uppercase: "EGG", "CATERPILLAR", "CHRYSALIS", "BUTTERFLY". Style: warm modern children\'s book illustration, soft gouache texture, crisp edges, cheerful natural colors, white background with pale sky-blue and leaf-green accents, spacious layout, readable classroom-poster composition, print-ready, no logos, no extra text.',
width: 848,
height: 1264,
settings: {
temperature: 0.8,
topP: 0.9
},
providerSettings: {
google: {
safetyTolerance: 'none'
}
}
})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": "google:nano-banana@2-lite",
"positivePrompt": "Create a vertical educational poster for an elementary classroom, ages 6-9, titled \"MONARCH LIFE CYCLE\" at the top in large friendly rounded lettering. Show a clean circular life-cycle diagram with four accurate stages: a tiny monarch EGG on a milkweed leaf, a striped CATERPILLAR eating milkweed, a green CHRYSALIS hanging from a stem, and an adult orange-and-black BUTTERFLY. Include simple curved arrows between each stage and clear labels in uppercase: \"EGG\", \"CATERPILLAR\", \"CHRYSALIS\", \"BUTTERFLY\". Style: warm modern children's book illustration, soft gouache texture, crisp edges, cheerful natural colors, white background with pale sky-blue and leaf-green accents, spacious layout, readable classroom-poster composition, print-ready, no logos, no extra text.",
"width": 848,
"height": 1264,
"settings": {
"temperature": 0.8,
"topP": 0.9
},
"providerSettings": {
"google": {
"safetyTolerance": "none"
}
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "f4a3c752-e9ea-4d20-b845-4d4be5e7eb74",
"model": "google:nano-banana@2-lite",
"positivePrompt": "Create a vertical educational poster for an elementary classroom, ages 6-9, titled \"MONARCH LIFE CYCLE\" at the top in large friendly rounded lettering. Show a clean circular life-cycle diagram with four accurate stages: a tiny monarch EGG on a milkweed leaf, a striped CATERPILLAR eating milkweed, a green CHRYSALIS hanging from a stem, and an adult orange-and-black BUTTERFLY. Include simple curved arrows between each stage and clear labels in uppercase: \"EGG\", \"CATERPILLAR\", \"CHRYSALIS\", \"BUTTERFLY\". Style: warm modern children's book illustration, soft gouache texture, crisp edges, cheerful natural colors, white background with pale sky-blue and leaf-green accents, spacious layout, readable classroom-poster composition, print-ready, no logos, no extra text.",
"width": 848,
"height": 1264,
"settings": {
"temperature": 0.8,
"topP": 0.9
},
"providerSettings": {
"google": {
"safetyTolerance": "none"
}
}
}
]'runware run google:nano-banana@2-lite \
positivePrompt="Create a vertical educational poster for an elementary classroom, ages 6-9, titled \"MONARCH LIFE CYCLE\" at the top in large friendly rounded lettering. Show a clean circular life-cycle diagram with four accurate stages: a tiny monarch EGG on a milkweed leaf, a striped CATERPILLAR eating milkweed, a green CHRYSALIS hanging from a stem, and an adult orange-and-black BUTTERFLY. Include simple curved arrows between each stage and clear labels in uppercase: \"EGG\", \"CATERPILLAR\", \"CHRYSALIS\", \"BUTTERFLY\". Style: warm modern children's book illustration, soft gouache texture, crisp edges, cheerful natural colors, white background with pale sky-blue and leaf-green accents, spacious layout, readable classroom-poster composition, print-ready, no logos, no extra text." \
width=848 \
height=1264 \
settings.temperature=0.8 \
settings.topP=0.9 \
providerSettings.google.safetyTolerance=none{
"taskType": "imageInference",
"taskUUID": "f4a3c752-e9ea-4d20-b845-4d4be5e7eb74",
"model": "google:nano-banana@2-lite",
"positivePrompt": "Create a vertical educational poster for an elementary classroom, ages 6-9, titled \"MONARCH LIFE CYCLE\" at the top in large friendly rounded lettering. Show a clean circular life-cycle diagram with four accurate stages: a tiny monarch EGG on a milkweed leaf, a striped CATERPILLAR eating milkweed, a green CHRYSALIS hanging from a stem, and an adult orange-and-black BUTTERFLY. Include simple curved arrows between each stage and clear labels in uppercase: \"EGG\", \"CATERPILLAR\", \"CHRYSALIS\", \"BUTTERFLY\". Style: warm modern children's book illustration, soft gouache texture, crisp edges, cheerful natural colors, white background with pale sky-blue and leaf-green accents, spacious layout, readable classroom-poster composition, print-ready, no logos, no extra text.",
"width": 848,
"height": 1264,
"settings": {
"temperature": 0.8,
"topP": 0.9
},
"providerSettings": {
"google": {
"safetyTolerance": "none"
}
}
}{
"taskType": "imageInference",
"taskUUID": "f4a3c752-e9ea-4d20-b845-4d4be5e7eb74",
"imageUUID": "f6221d74-aaa5-483b-b902-f8ee6719de3a",
"imageURL": "https://im.runware.ai/image/os/a06dlim3/ws/3/ii/f6221d74-aaa5-483b-b902-f8ee6719de3a.jpg",
"seed": 523731079,
"cost": 0.0336564
}True Crime Documentary Poster

Create a premium vertical streaming documentary poster using the two reference images: keep the investigative journalist recognizable as the main subject in the upper center, and integrate the rainy coastal motel as the ominous background environment below and behind her. Genre: prestige true-crime limited series. Mood: tense, grounded, cinematic, not horror or fantasy. Composition: dramatic one-sheet poster with the journalist's face emerging from deep shadow, the motel sign and wet road leading the eye toward the title area, subtle rain streaks, cold blue-gray palette with one muted red neon accent. Add realistic poster typography: title text “ROOM 17” large and bold in the lower third, smaller subtitle “A TRUE CRIME LIMITED SERIES” above it, and a small release line “STREAMING THIS FALL” near the bottom. Photorealistic editorial finish, high contrast, tasteful grain, professional Netflix-style key art, clean negative space for copy, no extra logos, no duplicated faces, no warped text.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'google:nano-banana@2-lite',
positivePrompt: 'Create a premium vertical streaming documentary poster using the two reference images: keep the investigative journalist recognizable as the main subject in the upper center, and integrate the rainy coastal motel as the ominous background environment below and behind her. Genre: prestige true-crime limited series. Mood: tense, grounded, cinematic, not horror or fantasy. Composition: dramatic one-sheet poster with the journalist\'s face emerging from deep shadow, the motel sign and wet road leading the eye toward the title area, subtle rain streaks, cold blue-gray palette with one muted red neon accent. Add realistic poster typography: title text “ROOM 17” large and bold in the lower third, smaller subtitle “A TRUE CRIME LIMITED SERIES” above it, and a small release line “STREAMING THIS FALL” near the bottom. Photorealistic editorial finish, high contrast, tasteful grain, professional Netflix-style key art, clean negative space for copy, no extra logos, no duplicated faces, no warped text.',
width: 848,
height: 1264,
settings: {
temperature: 0.72,
topP: 0.9
},
providerSettings: {
google: {
safetyTolerance: 'medium'
}
},
inputs: {
referenceImages: [
'https://assets.runware.ai/assets/inputs/2ead0d12-c305-468f-aa0d-ebc41f383e3f.jpg',
'https://assets.runware.ai/assets/inputs/6b794fa4-b6c5-4aec-b9b5-41aafb5a3990.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": "google:nano-banana@2-lite",
"positivePrompt": "Create a premium vertical streaming documentary poster using the two reference images: keep the investigative journalist recognizable as the main subject in the upper center, and integrate the rainy coastal motel as the ominous background environment below and behind her. Genre: prestige true-crime limited series. Mood: tense, grounded, cinematic, not horror or fantasy. Composition: dramatic one-sheet poster with the journalist's face emerging from deep shadow, the motel sign and wet road leading the eye toward the title area, subtle rain streaks, cold blue-gray palette with one muted red neon accent. Add realistic poster typography: title text “ROOM 17” large and bold in the lower third, smaller subtitle “A TRUE CRIME LIMITED SERIES” above it, and a small release line “STREAMING THIS FALL” near the bottom. Photorealistic editorial finish, high contrast, tasteful grain, professional Netflix-style key art, clean negative space for copy, no extra logos, no duplicated faces, no warped text.",
"width": 848,
"height": 1264,
"settings": {
"temperature": 0.72,
"topP": 0.9
},
"providerSettings": {
"google": {
"safetyTolerance": "medium"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/2ead0d12-c305-468f-aa0d-ebc41f383e3f.jpg",
"https://assets.runware.ai/assets/inputs/6b794fa4-b6c5-4aec-b9b5-41aafb5a3990.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": "68b593eb-8e56-417b-97e0-2c523b3aab80",
"model": "google:nano-banana@2-lite",
"positivePrompt": "Create a premium vertical streaming documentary poster using the two reference images: keep the investigative journalist recognizable as the main subject in the upper center, and integrate the rainy coastal motel as the ominous background environment below and behind her. Genre: prestige true-crime limited series. Mood: tense, grounded, cinematic, not horror or fantasy. Composition: dramatic one-sheet poster with the journalist's face emerging from deep shadow, the motel sign and wet road leading the eye toward the title area, subtle rain streaks, cold blue-gray palette with one muted red neon accent. Add realistic poster typography: title text “ROOM 17” large and bold in the lower third, smaller subtitle “A TRUE CRIME LIMITED SERIES” above it, and a small release line “STREAMING THIS FALL” near the bottom. Photorealistic editorial finish, high contrast, tasteful grain, professional Netflix-style key art, clean negative space for copy, no extra logos, no duplicated faces, no warped text.",
"width": 848,
"height": 1264,
"settings": {
"temperature": 0.72,
"topP": 0.9
},
"providerSettings": {
"google": {
"safetyTolerance": "medium"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/2ead0d12-c305-468f-aa0d-ebc41f383e3f.jpg",
"https://assets.runware.ai/assets/inputs/6b794fa4-b6c5-4aec-b9b5-41aafb5a3990.jpg"
]
}
}
]'runware run google:nano-banana@2-lite \
positivePrompt="Create a premium vertical streaming documentary poster using the two reference images: keep the investigative journalist recognizable as the main subject in the upper center, and integrate the rainy coastal motel as the ominous background environment below and behind her. Genre: prestige true-crime limited series. Mood: tense, grounded, cinematic, not horror or fantasy. Composition: dramatic one-sheet poster with the journalist's face emerging from deep shadow, the motel sign and wet road leading the eye toward the title area, subtle rain streaks, cold blue-gray palette with one muted red neon accent. Add realistic poster typography: title text “ROOM 17” large and bold in the lower third, smaller subtitle “A TRUE CRIME LIMITED SERIES” above it, and a small release line “STREAMING THIS FALL” near the bottom. Photorealistic editorial finish, high contrast, tasteful grain, professional Netflix-style key art, clean negative space for copy, no extra logos, no duplicated faces, no warped text." \
width=848 \
height=1264 \
settings.temperature=0.72 \
settings.topP=0.9 \
providerSettings.google.safetyTolerance=medium \
inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/2ead0d12-c305-468f-aa0d-ebc41f383e3f.jpg \
inputs.referenceImages.1=https://assets.runware.ai/assets/inputs/6b794fa4-b6c5-4aec-b9b5-41aafb5a3990.jpg{
"taskType": "imageInference",
"taskUUID": "68b593eb-8e56-417b-97e0-2c523b3aab80",
"model": "google:nano-banana@2-lite",
"positivePrompt": "Create a premium vertical streaming documentary poster using the two reference images: keep the investigative journalist recognizable as the main subject in the upper center, and integrate the rainy coastal motel as the ominous background environment below and behind her. Genre: prestige true-crime limited series. Mood: tense, grounded, cinematic, not horror or fantasy. Composition: dramatic one-sheet poster with the journalist's face emerging from deep shadow, the motel sign and wet road leading the eye toward the title area, subtle rain streaks, cold blue-gray palette with one muted red neon accent. Add realistic poster typography: title text “ROOM 17” large and bold in the lower third, smaller subtitle “A TRUE CRIME LIMITED SERIES” above it, and a small release line “STREAMING THIS FALL” near the bottom. Photorealistic editorial finish, high contrast, tasteful grain, professional Netflix-style key art, clean negative space for copy, no extra logos, no duplicated faces, no warped text.",
"width": 848,
"height": 1264,
"settings": {
"temperature": 0.72,
"topP": 0.9
},
"providerSettings": {
"google": {
"safetyTolerance": "medium"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/2ead0d12-c305-468f-aa0d-ebc41f383e3f.jpg",
"https://assets.runware.ai/assets/inputs/6b794fa4-b6c5-4aec-b9b5-41aafb5a3990.jpg"
]
}
}{
"taskType": "imageInference",
"taskUUID": "68b593eb-8e56-417b-97e0-2c523b3aab80",
"imageUUID": "9f2c35ec-02ea-4742-9cdd-babffa15cc74",
"imageURL": "https://im.runware.ai/image/os/a03d21/ws/3/ii/9f2c35ec-02ea-4742-9cdd-babffa15cc74.jpg",
"seed": 1303783511,
"cost": 0.0343341
}Origami Whale Sky Archive

A vast open-air archive floating above turquoise salt flats: enormous origami whales made from folded maps glide between suspended brass bookcases, tiny robed scribes on kite platforms cataloging luminous ink ribbons, morning sun through thin clouds, crisp shadows, cinematic wide angle, hyper-detailed paper fibers, polished brass, pale cyan and saffron palette, whimsical but serene, ultra clean composition, high depth of field
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'google:nano-banana@2-lite',
positivePrompt: 'A vast open-air archive floating above turquoise salt flats: enormous origami whales made from folded maps glide between suspended brass bookcases, tiny robed scribes on kite platforms cataloging luminous ink ribbons, morning sun through thin clouds, crisp shadows, cinematic wide angle, hyper-detailed paper fibers, polished brass, pale cyan and saffron palette, whimsical but serene, ultra clean composition, high depth of field',
width: 1376,
height: 768,
seed: 4382,
settings: {
temperature: 0.9,
topP: 0.95
},
providerSettings: {
google: {
safetyTolerance: 'medium'
}
}
})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": "google:nano-banana@2-lite",
"positivePrompt": "A vast open-air archive floating above turquoise salt flats: enormous origami whales made from folded maps glide between suspended brass bookcases, tiny robed scribes on kite platforms cataloging luminous ink ribbons, morning sun through thin clouds, crisp shadows, cinematic wide angle, hyper-detailed paper fibers, polished brass, pale cyan and saffron palette, whimsical but serene, ultra clean composition, high depth of field",
"width": 1376,
"height": 768,
"seed": 4382,
"settings": {
"temperature": 0.9,
"topP": 0.95
},
"providerSettings": {
"google": {
"safetyTolerance": "medium"
}
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "4afac3c1-eabd-43db-9698-de9f9df08922",
"model": "google:nano-banana@2-lite",
"positivePrompt": "A vast open-air archive floating above turquoise salt flats: enormous origami whales made from folded maps glide between suspended brass bookcases, tiny robed scribes on kite platforms cataloging luminous ink ribbons, morning sun through thin clouds, crisp shadows, cinematic wide angle, hyper-detailed paper fibers, polished brass, pale cyan and saffron palette, whimsical but serene, ultra clean composition, high depth of field",
"width": 1376,
"height": 768,
"seed": 4382,
"settings": {
"temperature": 0.9,
"topP": 0.95
},
"providerSettings": {
"google": {
"safetyTolerance": "medium"
}
}
}
]'runware run google:nano-banana@2-lite \
positivePrompt="A vast open-air archive floating above turquoise salt flats: enormous origami whales made from folded maps glide between suspended brass bookcases, tiny robed scribes on kite platforms cataloging luminous ink ribbons, morning sun through thin clouds, crisp shadows, cinematic wide angle, hyper-detailed paper fibers, polished brass, pale cyan and saffron palette, whimsical but serene, ultra clean composition, high depth of field" \
width=1376 \
height=768 \
seed=4382 \
settings.temperature=0.9 \
settings.topP=0.95 \
providerSettings.google.safetyTolerance=medium{
"taskType": "imageInference",
"taskUUID": "4afac3c1-eabd-43db-9698-de9f9df08922",
"model": "google:nano-banana@2-lite",
"positivePrompt": "A vast open-air archive floating above turquoise salt flats: enormous origami whales made from folded maps glide between suspended brass bookcases, tiny robed scribes on kite platforms cataloging luminous ink ribbons, morning sun through thin clouds, crisp shadows, cinematic wide angle, hyper-detailed paper fibers, polished brass, pale cyan and saffron palette, whimsical but serene, ultra clean composition, high depth of field",
"width": 1376,
"height": 768,
"seed": 4382,
"settings": {
"temperature": 0.9,
"topP": 0.95
},
"providerSettings": {
"google": {
"safetyTolerance": "medium"
}
}
}{
"taskType": "imageInference",
"taskUUID": "4afac3c1-eabd-43db-9698-de9f9df08922",
"imageUUID": "6f60a27c-d5c0-4e84-bffd-827c0d617cea",
"imageURL": "https://im.runware.ai/image/os/a05d22/ws/3/ii/6f60a27c-d5c0-4e84-bffd-827c0d617cea.jpg",
"seed": 4382,
"cost": 0.0336264
}Jewel Beetle Transit Canopy

Create a high-detail cinematic image that merges the two references: use the first image's segmented emerald-copper carapace and ridged microtexture as the surface language for a graceful elevated monorail station, while preserving the second image's sweeping rail geometry and terraced valley setting. A beetle-inspired transit canopy arcs over a single sleek train, polished enamel panels, tiny scale figures, humid greenhouse plants around stone terraces, warm late-afternoon light, crisp depth, realistic materials, inventive product-design concept, no text.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'google:nano-banana@2-lite',
positivePrompt: 'Create a high-detail cinematic image that merges the two references: use the first image\'s segmented emerald-copper carapace and ridged microtexture as the surface language for a graceful elevated monorail station, while preserving the second image\'s sweeping rail geometry and terraced valley setting. A beetle-inspired transit canopy arcs over a single sleek train, polished enamel panels, tiny scale figures, humid greenhouse plants around stone terraces, warm late-afternoon light, crisp depth, realistic materials, inventive product-design concept, no text.',
width: 1264,
height: 848,
seed: 913,
settings: {
temperature: 0.9,
topP: 0.95,
thinking: 'MINIMAL'
},
providerSettings: {
google: {
safetyTolerance: 'off'
}
},
inputs: {
referenceImages: [
'https://assets.runware.ai/assets/inputs/62c2e914-18ba-4aaf-82a4-596c6db0b09b.jpg',
'https://assets.runware.ai/assets/inputs/b8807d61-8658-4736-8cfb-bfe03b8e8204.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": "google:nano-banana@2-lite",
"positivePrompt": "Create a high-detail cinematic image that merges the two references: use the first image's segmented emerald-copper carapace and ridged microtexture as the surface language for a graceful elevated monorail station, while preserving the second image's sweeping rail geometry and terraced valley setting. A beetle-inspired transit canopy arcs over a single sleek train, polished enamel panels, tiny scale figures, humid greenhouse plants around stone terraces, warm late-afternoon light, crisp depth, realistic materials, inventive product-design concept, no text.",
"width": 1264,
"height": 848,
"seed": 913,
"settings": {
"temperature": 0.9,
"topP": 0.95,
"thinking": "MINIMAL"
},
"providerSettings": {
"google": {
"safetyTolerance": "off"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/62c2e914-18ba-4aaf-82a4-596c6db0b09b.jpg",
"https://assets.runware.ai/assets/inputs/b8807d61-8658-4736-8cfb-bfe03b8e8204.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": "57777c8c-a080-40a2-b07c-07f14412d6c7",
"model": "google:nano-banana@2-lite",
"positivePrompt": "Create a high-detail cinematic image that merges the two references: use the first image's segmented emerald-copper carapace and ridged microtexture as the surface language for a graceful elevated monorail station, while preserving the second image's sweeping rail geometry and terraced valley setting. A beetle-inspired transit canopy arcs over a single sleek train, polished enamel panels, tiny scale figures, humid greenhouse plants around stone terraces, warm late-afternoon light, crisp depth, realistic materials, inventive product-design concept, no text.",
"width": 1264,
"height": 848,
"seed": 913,
"settings": {
"temperature": 0.9,
"topP": 0.95,
"thinking": "MINIMAL"
},
"providerSettings": {
"google": {
"safetyTolerance": "off"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/62c2e914-18ba-4aaf-82a4-596c6db0b09b.jpg",
"https://assets.runware.ai/assets/inputs/b8807d61-8658-4736-8cfb-bfe03b8e8204.jpg"
]
}
}
]'runware run google:nano-banana@2-lite \
positivePrompt="Create a high-detail cinematic image that merges the two references: use the first image's segmented emerald-copper carapace and ridged microtexture as the surface language for a graceful elevated monorail station, while preserving the second image's sweeping rail geometry and terraced valley setting. A beetle-inspired transit canopy arcs over a single sleek train, polished enamel panels, tiny scale figures, humid greenhouse plants around stone terraces, warm late-afternoon light, crisp depth, realistic materials, inventive product-design concept, no text." \
width=1264 \
height=848 \
seed=913 \
settings.temperature=0.9 \
settings.topP=0.95 \
settings.thinking=MINIMAL \
providerSettings.google.safetyTolerance=off \
inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/62c2e914-18ba-4aaf-82a4-596c6db0b09b.jpg \
inputs.referenceImages.1=https://assets.runware.ai/assets/inputs/b8807d61-8658-4736-8cfb-bfe03b8e8204.jpg{
"taskType": "imageInference",
"taskUUID": "57777c8c-a080-40a2-b07c-07f14412d6c7",
"model": "google:nano-banana@2-lite",
"positivePrompt": "Create a high-detail cinematic image that merges the two references: use the first image's segmented emerald-copper carapace and ridged microtexture as the surface language for a graceful elevated monorail station, while preserving the second image's sweeping rail geometry and terraced valley setting. A beetle-inspired transit canopy arcs over a single sleek train, polished enamel panels, tiny scale figures, humid greenhouse plants around stone terraces, warm late-afternoon light, crisp depth, realistic materials, inventive product-design concept, no text.",
"width": 1264,
"height": 848,
"seed": 913,
"settings": {
"temperature": 0.9,
"topP": 0.95,
"thinking": "MINIMAL"
},
"providerSettings": {
"google": {
"safetyTolerance": "off"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/62c2e914-18ba-4aaf-82a4-596c6db0b09b.jpg",
"https://assets.runware.ai/assets/inputs/b8807d61-8658-4736-8cfb-bfe03b8e8204.jpg"
]
}
}{
"taskType": "imageInference",
"taskUUID": "57777c8c-a080-40a2-b07c-07f14412d6c7",
"imageUUID": "d95a6645-fce3-443c-9211-e129dfedfa0a",
"imageURL": "https://im.runware.ai/image/os/a03d21/ws/3/ii/d95a6645-fce3-443c-9211-e129dfedfa0a.jpg",
"seed": 913,
"cost": 0.0343071
}Neo Soul Single Cover

Create a finished 1:1 album single cover for streaming platforms. Use the referenced singer as the main artist, preserving her recognizable facial features and styling, placed slightly left of center in a moody after-hours flower shop scene inspired by the storefront reference. Integrate burgundy orchids and blush roses around the foreground and window reflections, with glossy black satin texture subtly used in the shadows and background gradients. Premium neo-soul visual identity: cinematic low-key lighting, magenta and amber neon accents, wet pavement reflections, shallow depth of field, elegant editorial photography, refined composition with negative space. Add clean, readable on-cover typography: artist name 'MAYA VALE' small at top center, single title 'After Hours Florist' larger near bottom center in elegant modern serif lettering. Realistic professional music cover artwork, polished label-ready design, no extra logos, no barcode.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'google:nano-banana@2-lite',
positivePrompt: 'Create a finished 1:1 album single cover for streaming platforms. Use the referenced singer as the main artist, preserving her recognizable facial features and styling, placed slightly left of center in a moody after-hours flower shop scene inspired by the storefront reference. Integrate burgundy orchids and blush roses around the foreground and window reflections, with glossy black satin texture subtly used in the shadows and background gradients. Premium neo-soul visual identity: cinematic low-key lighting, magenta and amber neon accents, wet pavement reflections, shallow depth of field, elegant editorial photography, refined composition with negative space. Add clean, readable on-cover typography: artist name \'MAYA VALE\' small at top center, single title \'After Hours Florist\' larger near bottom center in elegant modern serif lettering. Realistic professional music cover artwork, polished label-ready design, no extra logos, no barcode.',
width: 1024,
height: 1024,
settings: {
temperature: 0.7,
thinking: 'MINIMAL'
},
providerSettings: {
google: {
safetyTolerance: 'off'
}
},
inputs: {
referenceImages: [
'https://assets.runware.ai/assets/inputs/7b2d7eae-9fd4-4244-a121-48ad58b7044b.jpg',
'https://assets.runware.ai/assets/inputs/158ef8de-390d-49e4-9361-e7038cf83372.jpg',
'https://assets.runware.ai/assets/inputs/8d09e2c6-55cf-46c7-8a27-a7a035cc4605.jpg',
'https://assets.runware.ai/assets/inputs/7435722d-3b08-4fb5-a7c1-4acd84cb6d80.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": "google:nano-banana@2-lite",
"positivePrompt": "Create a finished 1:1 album single cover for streaming platforms. Use the referenced singer as the main artist, preserving her recognizable facial features and styling, placed slightly left of center in a moody after-hours flower shop scene inspired by the storefront reference. Integrate burgundy orchids and blush roses around the foreground and window reflections, with glossy black satin texture subtly used in the shadows and background gradients. Premium neo-soul visual identity: cinematic low-key lighting, magenta and amber neon accents, wet pavement reflections, shallow depth of field, elegant editorial photography, refined composition with negative space. Add clean, readable on-cover typography: artist name 'MAYA VALE' small at top center, single title 'After Hours Florist' larger near bottom center in elegant modern serif lettering. Realistic professional music cover artwork, polished label-ready design, no extra logos, no barcode.",
"width": 1024,
"height": 1024,
"settings": {
"temperature": 0.7,
"thinking": "MINIMAL"
},
"providerSettings": {
"google": {
"safetyTolerance": "off"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/7b2d7eae-9fd4-4244-a121-48ad58b7044b.jpg",
"https://assets.runware.ai/assets/inputs/158ef8de-390d-49e4-9361-e7038cf83372.jpg",
"https://assets.runware.ai/assets/inputs/8d09e2c6-55cf-46c7-8a27-a7a035cc4605.jpg",
"https://assets.runware.ai/assets/inputs/7435722d-3b08-4fb5-a7c1-4acd84cb6d80.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": "815f513b-7a11-4aa1-8dde-a17edb03fa95",
"model": "google:nano-banana@2-lite",
"positivePrompt": "Create a finished 1:1 album single cover for streaming platforms. Use the referenced singer as the main artist, preserving her recognizable facial features and styling, placed slightly left of center in a moody after-hours flower shop scene inspired by the storefront reference. Integrate burgundy orchids and blush roses around the foreground and window reflections, with glossy black satin texture subtly used in the shadows and background gradients. Premium neo-soul visual identity: cinematic low-key lighting, magenta and amber neon accents, wet pavement reflections, shallow depth of field, elegant editorial photography, refined composition with negative space. Add clean, readable on-cover typography: artist name 'MAYA VALE' small at top center, single title 'After Hours Florist' larger near bottom center in elegant modern serif lettering. Realistic professional music cover artwork, polished label-ready design, no extra logos, no barcode.",
"width": 1024,
"height": 1024,
"settings": {
"temperature": 0.7,
"thinking": "MINIMAL"
},
"providerSettings": {
"google": {
"safetyTolerance": "off"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/7b2d7eae-9fd4-4244-a121-48ad58b7044b.jpg",
"https://assets.runware.ai/assets/inputs/158ef8de-390d-49e4-9361-e7038cf83372.jpg",
"https://assets.runware.ai/assets/inputs/8d09e2c6-55cf-46c7-8a27-a7a035cc4605.jpg",
"https://assets.runware.ai/assets/inputs/7435722d-3b08-4fb5-a7c1-4acd84cb6d80.jpg"
]
}
}
]'runware run google:nano-banana@2-lite \
positivePrompt="Create a finished 1:1 album single cover for streaming platforms. Use the referenced singer as the main artist, preserving her recognizable facial features and styling, placed slightly left of center in a moody after-hours flower shop scene inspired by the storefront reference. Integrate burgundy orchids and blush roses around the foreground and window reflections, with glossy black satin texture subtly used in the shadows and background gradients. Premium neo-soul visual identity: cinematic low-key lighting, magenta and amber neon accents, wet pavement reflections, shallow depth of field, elegant editorial photography, refined composition with negative space. Add clean, readable on-cover typography: artist name 'MAYA VALE' small at top center, single title 'After Hours Florist' larger near bottom center in elegant modern serif lettering. Realistic professional music cover artwork, polished label-ready design, no extra logos, no barcode." \
width=1024 \
height=1024 \
settings.temperature=0.7 \
settings.thinking=MINIMAL \
providerSettings.google.safetyTolerance=off \
inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/7b2d7eae-9fd4-4244-a121-48ad58b7044b.jpg \
inputs.referenceImages.1=https://assets.runware.ai/assets/inputs/158ef8de-390d-49e4-9361-e7038cf83372.jpg \
inputs.referenceImages.2=https://assets.runware.ai/assets/inputs/8d09e2c6-55cf-46c7-8a27-a7a035cc4605.jpg \
inputs.referenceImages.3=https://assets.runware.ai/assets/inputs/7435722d-3b08-4fb5-a7c1-4acd84cb6d80.jpg{
"taskType": "imageInference",
"taskUUID": "815f513b-7a11-4aa1-8dde-a17edb03fa95",
"model": "google:nano-banana@2-lite",
"positivePrompt": "Create a finished 1:1 album single cover for streaming platforms. Use the referenced singer as the main artist, preserving her recognizable facial features and styling, placed slightly left of center in a moody after-hours flower shop scene inspired by the storefront reference. Integrate burgundy orchids and blush roses around the foreground and window reflections, with glossy black satin texture subtly used in the shadows and background gradients. Premium neo-soul visual identity: cinematic low-key lighting, magenta and amber neon accents, wet pavement reflections, shallow depth of field, elegant editorial photography, refined composition with negative space. Add clean, readable on-cover typography: artist name 'MAYA VALE' small at top center, single title 'After Hours Florist' larger near bottom center in elegant modern serif lettering. Realistic professional music cover artwork, polished label-ready design, no extra logos, no barcode.",
"width": 1024,
"height": 1024,
"settings": {
"temperature": 0.7,
"thinking": "MINIMAL"
},
"providerSettings": {
"google": {
"safetyTolerance": "off"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/7b2d7eae-9fd4-4244-a121-48ad58b7044b.jpg",
"https://assets.runware.ai/assets/inputs/158ef8de-390d-49e4-9361-e7038cf83372.jpg",
"https://assets.runware.ai/assets/inputs/8d09e2c6-55cf-46c7-8a27-a7a035cc4605.jpg",
"https://assets.runware.ai/assets/inputs/7435722d-3b08-4fb5-a7c1-4acd84cb6d80.jpg"
]
}
}{
"taskType": "imageInference",
"taskUUID": "815f513b-7a11-4aa1-8dde-a17edb03fa95",
"imageUUID": "0d1b7af3-cf14-454f-9e2a-eefdebc0b1bb",
"imageURL": "https://im.runware.ai/image/os/a01d21/ws/3/ii/0d1b7af3-cf14-454f-9e2a-eefdebc0b1bb.jpg",
"seed": 1397132635,
"cost": 0.0349992
}Trattoria Pasta Menu Photo

Vertical restaurant menu photography for a modern neighborhood Italian trattoria. Hero shot of a shallow ceramic bowl of fresh handmade pappardelle with slow-braised beef ragu, glossy sauce, shaved parmesan, basil leaves, cracked black pepper, and a light drizzle of olive oil. Include a half-full glass of Chianti, folded linen napkin, vintage fork, small dish of grated parmesan, and rustic sourdough on a warm walnut table. Natural window light from the left, soft shadows, shallow depth of field, appetizing steam, editorial food styling, premium but approachable. Composition leaves clean negative space near the top for menu copy, no visible people, no logos, no on-image text, realistic commercial food photography.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'google:nano-banana@2-lite',
positivePrompt: 'Vertical restaurant menu photography for a modern neighborhood Italian trattoria. Hero shot of a shallow ceramic bowl of fresh handmade pappardelle with slow-braised beef ragu, glossy sauce, shaved parmesan, basil leaves, cracked black pepper, and a light drizzle of olive oil. Include a half-full glass of Chianti, folded linen napkin, vintage fork, small dish of grated parmesan, and rustic sourdough on a warm walnut table. Natural window light from the left, soft shadows, shallow depth of field, appetizing steam, editorial food styling, premium but approachable. Composition leaves clean negative space near the top for menu copy, no visible people, no logos, no on-image text, realistic commercial food photography.',
width: 896,
height: 1200,
settings: {
temperature: 0.85,
topP: 0.95
},
providerSettings: {
google: {
safetyTolerance: 'off'
}
}
})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": "google:nano-banana@2-lite",
"positivePrompt": "Vertical restaurant menu photography for a modern neighborhood Italian trattoria. Hero shot of a shallow ceramic bowl of fresh handmade pappardelle with slow-braised beef ragu, glossy sauce, shaved parmesan, basil leaves, cracked black pepper, and a light drizzle of olive oil. Include a half-full glass of Chianti, folded linen napkin, vintage fork, small dish of grated parmesan, and rustic sourdough on a warm walnut table. Natural window light from the left, soft shadows, shallow depth of field, appetizing steam, editorial food styling, premium but approachable. Composition leaves clean negative space near the top for menu copy, no visible people, no logos, no on-image text, realistic commercial food photography.",
"width": 896,
"height": 1200,
"settings": {
"temperature": 0.85,
"topP": 0.95
},
"providerSettings": {
"google": {
"safetyTolerance": "off"
}
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "adf14c13-9e86-4a10-904e-55985889c087",
"model": "google:nano-banana@2-lite",
"positivePrompt": "Vertical restaurant menu photography for a modern neighborhood Italian trattoria. Hero shot of a shallow ceramic bowl of fresh handmade pappardelle with slow-braised beef ragu, glossy sauce, shaved parmesan, basil leaves, cracked black pepper, and a light drizzle of olive oil. Include a half-full glass of Chianti, folded linen napkin, vintage fork, small dish of grated parmesan, and rustic sourdough on a warm walnut table. Natural window light from the left, soft shadows, shallow depth of field, appetizing steam, editorial food styling, premium but approachable. Composition leaves clean negative space near the top for menu copy, no visible people, no logos, no on-image text, realistic commercial food photography.",
"width": 896,
"height": 1200,
"settings": {
"temperature": 0.85,
"topP": 0.95
},
"providerSettings": {
"google": {
"safetyTolerance": "off"
}
}
}
]'runware run google:nano-banana@2-lite \
positivePrompt="Vertical restaurant menu photography for a modern neighborhood Italian trattoria. Hero shot of a shallow ceramic bowl of fresh handmade pappardelle with slow-braised beef ragu, glossy sauce, shaved parmesan, basil leaves, cracked black pepper, and a light drizzle of olive oil. Include a half-full glass of Chianti, folded linen napkin, vintage fork, small dish of grated parmesan, and rustic sourdough on a warm walnut table. Natural window light from the left, soft shadows, shallow depth of field, appetizing steam, editorial food styling, premium but approachable. Composition leaves clean negative space near the top for menu copy, no visible people, no logos, no on-image text, realistic commercial food photography." \
width=896 \
height=1200 \
settings.temperature=0.85 \
settings.topP=0.95 \
providerSettings.google.safetyTolerance=off{
"taskType": "imageInference",
"taskUUID": "adf14c13-9e86-4a10-904e-55985889c087",
"model": "google:nano-banana@2-lite",
"positivePrompt": "Vertical restaurant menu photography for a modern neighborhood Italian trattoria. Hero shot of a shallow ceramic bowl of fresh handmade pappardelle with slow-braised beef ragu, glossy sauce, shaved parmesan, basil leaves, cracked black pepper, and a light drizzle of olive oil. Include a half-full glass of Chianti, folded linen napkin, vintage fork, small dish of grated parmesan, and rustic sourdough on a warm walnut table. Natural window light from the left, soft shadows, shallow depth of field, appetizing steam, editorial food styling, premium but approachable. Composition leaves clean negative space near the top for menu copy, no visible people, no logos, no on-image text, realistic commercial food photography.",
"width": 896,
"height": 1200,
"settings": {
"temperature": 0.85,
"topP": 0.95
},
"providerSettings": {
"google": {
"safetyTolerance": "off"
}
}
}{
"taskType": "imageInference",
"taskUUID": "adf14c13-9e86-4a10-904e-55985889c087",
"imageUUID": "6013067d-f9c4-40cd-bbe7-fc6315345259",
"imageURL": "https://im.runware.ai/image/os/a01d21/ws/3/ii/6013067d-f9c4-40cd-bbe7-fc6315345259.jpg",
"seed": 269572089,
"cost": 0.0336456
}Glass Tundra Seed Vault

Wide cinematic view of a futuristic polar seed vault beneath a transparent blue-white ice plain, visible through fractured glass-like layers. Rows of glowing amber seed capsules form geometric terraces below the surface while above, a lone botanist in a saffron insulated suit kneels beside tiny green sprouts protected by a clear dome. Snow crystals, frosted cables, soft aurora bands, brushed titanium, translucent ice caustics, ultra-detailed natural light, clean science-fiction realism, sharp foreground texture, vast sense of scale, 35mm lens, high dynamic range.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'google:nano-banana@2-lite',
positivePrompt: 'Wide cinematic view of a futuristic polar seed vault beneath a transparent blue-white ice plain, visible through fractured glass-like layers. Rows of glowing amber seed capsules form geometric terraces below the surface while above, a lone botanist in a saffron insulated suit kneels beside tiny green sprouts protected by a clear dome. Snow crystals, frosted cables, soft aurora bands, brushed titanium, translucent ice caustics, ultra-detailed natural light, clean science-fiction realism, sharp foreground texture, vast sense of scale, 35mm lens, high dynamic range.',
width: 1376,
height: 768,
seed: 84531,
settings: {
temperature: 1,
topP: 0.95,
thinking: 'MINIMAL'
},
providerSettings: {
google: {
safetyTolerance: 'off'
}
}
})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": "google:nano-banana@2-lite",
"positivePrompt": "Wide cinematic view of a futuristic polar seed vault beneath a transparent blue-white ice plain, visible through fractured glass-like layers. Rows of glowing amber seed capsules form geometric terraces below the surface while above, a lone botanist in a saffron insulated suit kneels beside tiny green sprouts protected by a clear dome. Snow crystals, frosted cables, soft aurora bands, brushed titanium, translucent ice caustics, ultra-detailed natural light, clean science-fiction realism, sharp foreground texture, vast sense of scale, 35mm lens, high dynamic range.",
"width": 1376,
"height": 768,
"seed": 84531,
"settings": {
"temperature": 1,
"topP": 0.95,
"thinking": "MINIMAL"
},
"providerSettings": {
"google": {
"safetyTolerance": "off"
}
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "f7a0514a-5eee-40f3-a54e-1c21663912f4",
"model": "google:nano-banana@2-lite",
"positivePrompt": "Wide cinematic view of a futuristic polar seed vault beneath a transparent blue-white ice plain, visible through fractured glass-like layers. Rows of glowing amber seed capsules form geometric terraces below the surface while above, a lone botanist in a saffron insulated suit kneels beside tiny green sprouts protected by a clear dome. Snow crystals, frosted cables, soft aurora bands, brushed titanium, translucent ice caustics, ultra-detailed natural light, clean science-fiction realism, sharp foreground texture, vast sense of scale, 35mm lens, high dynamic range.",
"width": 1376,
"height": 768,
"seed": 84531,
"settings": {
"temperature": 1,
"topP": 0.95,
"thinking": "MINIMAL"
},
"providerSettings": {
"google": {
"safetyTolerance": "off"
}
}
}
]'runware run google:nano-banana@2-lite \
positivePrompt="Wide cinematic view of a futuristic polar seed vault beneath a transparent blue-white ice plain, visible through fractured glass-like layers. Rows of glowing amber seed capsules form geometric terraces below the surface while above, a lone botanist in a saffron insulated suit kneels beside tiny green sprouts protected by a clear dome. Snow crystals, frosted cables, soft aurora bands, brushed titanium, translucent ice caustics, ultra-detailed natural light, clean science-fiction realism, sharp foreground texture, vast sense of scale, 35mm lens, high dynamic range." \
width=1376 \
height=768 \
seed=84531 \
settings.temperature=1 \
settings.topP=0.95 \
settings.thinking=MINIMAL \
providerSettings.google.safetyTolerance=off{
"taskType": "imageInference",
"taskUUID": "f7a0514a-5eee-40f3-a54e-1c21663912f4",
"model": "google:nano-banana@2-lite",
"positivePrompt": "Wide cinematic view of a futuristic polar seed vault beneath a transparent blue-white ice plain, visible through fractured glass-like layers. Rows of glowing amber seed capsules form geometric terraces below the surface while above, a lone botanist in a saffron insulated suit kneels beside tiny green sprouts protected by a clear dome. Snow crystals, frosted cables, soft aurora bands, brushed titanium, translucent ice caustics, ultra-detailed natural light, clean science-fiction realism, sharp foreground texture, vast sense of scale, 35mm lens, high dynamic range.",
"width": 1376,
"height": 768,
"seed": 84531,
"settings": {
"temperature": 1,
"topP": 0.95,
"thinking": "MINIMAL"
},
"providerSettings": {
"google": {
"safetyTolerance": "off"
}
}
}{
"taskType": "imageInference",
"taskUUID": "f7a0514a-5eee-40f3-a54e-1c21663912f4",
"imageUUID": "699ef359-90fe-4182-940c-eff16c19fa99",
"imageURL": "https://im.runware.ai/image/os/a06dlim3/ws/3/ii/699ef359-90fe-4182-940c-eff16c19fa99.jpg",
"seed": 84531,
"cost": 0.0336363
}Porcelain Kelp Music Pavilion

Create a seamless cinematic scene blending all four references: a submerged porcelain music pavilion surrounded by tall kelp fronds, cobalt tile mosaics forming the floor and curved arches, a brass deep-sea diver standing calmly as the conductor, and a small ensemble of string instruments arranged on a raised stage. Sunbeams filter through clear water, tiny air bubbles drift upward, polished ceramic surfaces catch pale aqua highlights, and the composition feels elegant, strange, and highly detailed. Wide angle, refined fantasy realism, sharp textures, balanced lighting, no text.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'google:nano-banana@2-lite',
positivePrompt: 'Create a seamless cinematic scene blending all four references: a submerged porcelain music pavilion surrounded by tall kelp fronds, cobalt tile mosaics forming the floor and curved arches, a brass deep-sea diver standing calmly as the conductor, and a small ensemble of string instruments arranged on a raised stage. Sunbeams filter through clear water, tiny air bubbles drift upward, polished ceramic surfaces catch pale aqua highlights, and the composition feels elegant, strange, and highly detailed. Wide angle, refined fantasy realism, sharp textures, balanced lighting, no text.',
width: 1264,
height: 848,
seed: 13598,
settings: {
temperature: 0.9,
topP: 0.95,
thinking: 'MINIMAL'
},
providerSettings: {
google: {
safetyTolerance: 'off'
}
},
inputs: {
referenceImages: [
'https://assets.runware.ai/assets/inputs/2e2844cb-369b-4791-afb3-6566d215c400.jpg',
'https://assets.runware.ai/assets/inputs/6122720a-0b96-482c-84bf-b022c2aab54a.jpg',
'https://assets.runware.ai/assets/inputs/0ef9cbf6-fca8-46f7-8b91-9e28aecfd383.jpg',
'https://assets.runware.ai/assets/inputs/ed46b26e-5b34-485c-8447-adad414ce38d.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": "google:nano-banana@2-lite",
"positivePrompt": "Create a seamless cinematic scene blending all four references: a submerged porcelain music pavilion surrounded by tall kelp fronds, cobalt tile mosaics forming the floor and curved arches, a brass deep-sea diver standing calmly as the conductor, and a small ensemble of string instruments arranged on a raised stage. Sunbeams filter through clear water, tiny air bubbles drift upward, polished ceramic surfaces catch pale aqua highlights, and the composition feels elegant, strange, and highly detailed. Wide angle, refined fantasy realism, sharp textures, balanced lighting, no text.",
"width": 1264,
"height": 848,
"seed": 13598,
"settings": {
"temperature": 0.9,
"topP": 0.95,
"thinking": "MINIMAL"
},
"providerSettings": {
"google": {
"safetyTolerance": "off"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/2e2844cb-369b-4791-afb3-6566d215c400.jpg",
"https://assets.runware.ai/assets/inputs/6122720a-0b96-482c-84bf-b022c2aab54a.jpg",
"https://assets.runware.ai/assets/inputs/0ef9cbf6-fca8-46f7-8b91-9e28aecfd383.jpg",
"https://assets.runware.ai/assets/inputs/ed46b26e-5b34-485c-8447-adad414ce38d.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": "0f47d5cd-855a-4552-acc0-d9c0d3515c35",
"model": "google:nano-banana@2-lite",
"positivePrompt": "Create a seamless cinematic scene blending all four references: a submerged porcelain music pavilion surrounded by tall kelp fronds, cobalt tile mosaics forming the floor and curved arches, a brass deep-sea diver standing calmly as the conductor, and a small ensemble of string instruments arranged on a raised stage. Sunbeams filter through clear water, tiny air bubbles drift upward, polished ceramic surfaces catch pale aqua highlights, and the composition feels elegant, strange, and highly detailed. Wide angle, refined fantasy realism, sharp textures, balanced lighting, no text.",
"width": 1264,
"height": 848,
"seed": 13598,
"settings": {
"temperature": 0.9,
"topP": 0.95,
"thinking": "MINIMAL"
},
"providerSettings": {
"google": {
"safetyTolerance": "off"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/2e2844cb-369b-4791-afb3-6566d215c400.jpg",
"https://assets.runware.ai/assets/inputs/6122720a-0b96-482c-84bf-b022c2aab54a.jpg",
"https://assets.runware.ai/assets/inputs/0ef9cbf6-fca8-46f7-8b91-9e28aecfd383.jpg",
"https://assets.runware.ai/assets/inputs/ed46b26e-5b34-485c-8447-adad414ce38d.jpg"
]
}
}
]'runware run google:nano-banana@2-lite \
positivePrompt="Create a seamless cinematic scene blending all four references: a submerged porcelain music pavilion surrounded by tall kelp fronds, cobalt tile mosaics forming the floor and curved arches, a brass deep-sea diver standing calmly as the conductor, and a small ensemble of string instruments arranged on a raised stage. Sunbeams filter through clear water, tiny air bubbles drift upward, polished ceramic surfaces catch pale aqua highlights, and the composition feels elegant, strange, and highly detailed. Wide angle, refined fantasy realism, sharp textures, balanced lighting, no text." \
width=1264 \
height=848 \
seed=13598 \
settings.temperature=0.9 \
settings.topP=0.95 \
settings.thinking=MINIMAL \
providerSettings.google.safetyTolerance=off \
inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/2e2844cb-369b-4791-afb3-6566d215c400.jpg \
inputs.referenceImages.1=https://assets.runware.ai/assets/inputs/6122720a-0b96-482c-84bf-b022c2aab54a.jpg \
inputs.referenceImages.2=https://assets.runware.ai/assets/inputs/0ef9cbf6-fca8-46f7-8b91-9e28aecfd383.jpg \
inputs.referenceImages.3=https://assets.runware.ai/assets/inputs/ed46b26e-5b34-485c-8447-adad414ce38d.jpg{
"taskType": "imageInference",
"taskUUID": "0f47d5cd-855a-4552-acc0-d9c0d3515c35",
"model": "google:nano-banana@2-lite",
"positivePrompt": "Create a seamless cinematic scene blending all four references: a submerged porcelain music pavilion surrounded by tall kelp fronds, cobalt tile mosaics forming the floor and curved arches, a brass deep-sea diver standing calmly as the conductor, and a small ensemble of string instruments arranged on a raised stage. Sunbeams filter through clear water, tiny air bubbles drift upward, polished ceramic surfaces catch pale aqua highlights, and the composition feels elegant, strange, and highly detailed. Wide angle, refined fantasy realism, sharp textures, balanced lighting, no text.",
"width": 1264,
"height": 848,
"seed": 13598,
"settings": {
"temperature": 0.9,
"topP": 0.95,
"thinking": "MINIMAL"
},
"providerSettings": {
"google": {
"safetyTolerance": "off"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/2e2844cb-369b-4791-afb3-6566d215c400.jpg",
"https://assets.runware.ai/assets/inputs/6122720a-0b96-482c-84bf-b022c2aab54a.jpg",
"https://assets.runware.ai/assets/inputs/0ef9cbf6-fca8-46f7-8b91-9e28aecfd383.jpg",
"https://assets.runware.ai/assets/inputs/ed46b26e-5b34-485c-8447-adad414ce38d.jpg"
]
}
}{
"taskType": "imageInference",
"taskUUID": "0f47d5cd-855a-4552-acc0-d9c0d3515c35",
"imageUUID": "b621d6c3-53dc-4f43-aaab-96f9436e1ee9",
"imageURL": "https://im.runware.ai/image/os/a05d22/ws/3/ii/b621d6c3-53dc-4f43-aaab-96f9436e1ee9.jpg",
"seed": 13598,
"cost": 0.0349788
}Executive LinkedIn Headshot Portrait

Create a premium corporate headshot using the reference image for the subject's identity, facial structure, skin tone, hairstyle, and natural expression. Subject: a senior fintech executive for LinkedIn, investor materials, and a company leadership page. Wardrobe: tailored navy blazer over a crisp white open-collar shirt, minimal accessories, professional grooming. Composition: vertical 4:5 portrait, head and upper torso, shoulders angled slightly, eyes looking directly into camera, confident approachable half-smile. Setting: modern office environment rendered as a soft, out-of-focus warm gray and glass background, no distracting details. Lighting: high-end studio portrait lighting, large soft key light from front-left, gentle fill, subtle rim light, natural catchlights, flattering skin texture, realistic pores, no beauty over-smoothing. Style: photorealistic editorial business portrait, clean premium finish, sharp focus on eyes, accurate anatomy, natural skin, professional color grading, suitable for LinkedIn and executive bio use. No text, no logo, no watermark.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'google:nano-banana@2-lite',
positivePrompt: 'Create a premium corporate headshot using the reference image for the subject\'s identity, facial structure, skin tone, hairstyle, and natural expression. Subject: a senior fintech executive for LinkedIn, investor materials, and a company leadership page. Wardrobe: tailored navy blazer over a crisp white open-collar shirt, minimal accessories, professional grooming. Composition: vertical 4:5 portrait, head and upper torso, shoulders angled slightly, eyes looking directly into camera, confident approachable half-smile. Setting: modern office environment rendered as a soft, out-of-focus warm gray and glass background, no distracting details. Lighting: high-end studio portrait lighting, large soft key light from front-left, gentle fill, subtle rim light, natural catchlights, flattering skin texture, realistic pores, no beauty over-smoothing. Style: photorealistic editorial business portrait, clean premium finish, sharp focus on eyes, accurate anatomy, natural skin, professional color grading, suitable for LinkedIn and executive bio use. No text, no logo, no watermark.',
width: 928,
height: 1152,
settings: {
temperature: 0.55,
topP: 0.9
},
providerSettings: {
google: {
safetyTolerance: 'off'
}
},
inputs: {
referenceImages: [
'https://assets.runware.ai/assets/inputs/84173eb0-a6f4-4d08-8bdc-94867afc88e7.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": "google:nano-banana@2-lite",
"positivePrompt": "Create a premium corporate headshot using the reference image for the subject's identity, facial structure, skin tone, hairstyle, and natural expression. Subject: a senior fintech executive for LinkedIn, investor materials, and a company leadership page. Wardrobe: tailored navy blazer over a crisp white open-collar shirt, minimal accessories, professional grooming. Composition: vertical 4:5 portrait, head and upper torso, shoulders angled slightly, eyes looking directly into camera, confident approachable half-smile. Setting: modern office environment rendered as a soft, out-of-focus warm gray and glass background, no distracting details. Lighting: high-end studio portrait lighting, large soft key light from front-left, gentle fill, subtle rim light, natural catchlights, flattering skin texture, realistic pores, no beauty over-smoothing. Style: photorealistic editorial business portrait, clean premium finish, sharp focus on eyes, accurate anatomy, natural skin, professional color grading, suitable for LinkedIn and executive bio use. No text, no logo, no watermark.",
"width": 928,
"height": 1152,
"settings": {
"temperature": 0.55,
"topP": 0.9
},
"providerSettings": {
"google": {
"safetyTolerance": "off"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/84173eb0-a6f4-4d08-8bdc-94867afc88e7.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": "7eb71fcf-e727-44f7-9a78-59fd8bd16752",
"model": "google:nano-banana@2-lite",
"positivePrompt": "Create a premium corporate headshot using the reference image for the subject's identity, facial structure, skin tone, hairstyle, and natural expression. Subject: a senior fintech executive for LinkedIn, investor materials, and a company leadership page. Wardrobe: tailored navy blazer over a crisp white open-collar shirt, minimal accessories, professional grooming. Composition: vertical 4:5 portrait, head and upper torso, shoulders angled slightly, eyes looking directly into camera, confident approachable half-smile. Setting: modern office environment rendered as a soft, out-of-focus warm gray and glass background, no distracting details. Lighting: high-end studio portrait lighting, large soft key light from front-left, gentle fill, subtle rim light, natural catchlights, flattering skin texture, realistic pores, no beauty over-smoothing. Style: photorealistic editorial business portrait, clean premium finish, sharp focus on eyes, accurate anatomy, natural skin, professional color grading, suitable for LinkedIn and executive bio use. No text, no logo, no watermark.",
"width": 928,
"height": 1152,
"settings": {
"temperature": 0.55,
"topP": 0.9
},
"providerSettings": {
"google": {
"safetyTolerance": "off"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/84173eb0-a6f4-4d08-8bdc-94867afc88e7.jpg"
]
}
}
]'runware run google:nano-banana@2-lite \
positivePrompt="Create a premium corporate headshot using the reference image for the subject's identity, facial structure, skin tone, hairstyle, and natural expression. Subject: a senior fintech executive for LinkedIn, investor materials, and a company leadership page. Wardrobe: tailored navy blazer over a crisp white open-collar shirt, minimal accessories, professional grooming. Composition: vertical 4:5 portrait, head and upper torso, shoulders angled slightly, eyes looking directly into camera, confident approachable half-smile. Setting: modern office environment rendered as a soft, out-of-focus warm gray and glass background, no distracting details. Lighting: high-end studio portrait lighting, large soft key light from front-left, gentle fill, subtle rim light, natural catchlights, flattering skin texture, realistic pores, no beauty over-smoothing. Style: photorealistic editorial business portrait, clean premium finish, sharp focus on eyes, accurate anatomy, natural skin, professional color grading, suitable for LinkedIn and executive bio use. No text, no logo, no watermark." \
width=928 \
height=1152 \
settings.temperature=0.55 \
settings.topP=0.9 \
providerSettings.google.safetyTolerance=off \
inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/84173eb0-a6f4-4d08-8bdc-94867afc88e7.jpg{
"taskType": "imageInference",
"taskUUID": "7eb71fcf-e727-44f7-9a78-59fd8bd16752",
"model": "google:nano-banana@2-lite",
"positivePrompt": "Create a premium corporate headshot using the reference image for the subject's identity, facial structure, skin tone, hairstyle, and natural expression. Subject: a senior fintech executive for LinkedIn, investor materials, and a company leadership page. Wardrobe: tailored navy blazer over a crisp white open-collar shirt, minimal accessories, professional grooming. Composition: vertical 4:5 portrait, head and upper torso, shoulders angled slightly, eyes looking directly into camera, confident approachable half-smile. Setting: modern office environment rendered as a soft, out-of-focus warm gray and glass background, no distracting details. Lighting: high-end studio portrait lighting, large soft key light from front-left, gentle fill, subtle rim light, natural catchlights, flattering skin texture, realistic pores, no beauty over-smoothing. Style: photorealistic editorial business portrait, clean premium finish, sharp focus on eyes, accurate anatomy, natural skin, professional color grading, suitable for LinkedIn and executive bio use. No text, no logo, no watermark.",
"width": 928,
"height": 1152,
"settings": {
"temperature": 0.55,
"topP": 0.9
},
"providerSettings": {
"google": {
"safetyTolerance": "off"
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/84173eb0-a6f4-4d08-8bdc-94867afc88e7.jpg"
]
}
}{
"taskType": "imageInference",
"taskUUID": "7eb71fcf-e727-44f7-9a78-59fd8bd16752",
"imageUUID": "5a9e8cc8-2ee9-4f39-afec-8d0835f4a016",
"imageURL": "https://im.runware.ai/image/os/a02d21/ws/3/ii/5a9e8cc8-2ee9-4f39-afec-8d0835f4a016.jpg",
"seed": 646771668,
"cost": 0.0340014
}Rooftop Solar Savings Infographic

Create a polished vertical infographic for a residential solar company named BrightGrid Solar. Clean modern vector design, white background with warm yellow, deep navy, and fresh green accents. Headline at top: "How Rooftop Solar Pays You Back". Subheading: "A simple 5-step savings breakdown for homeowners". Layout should be a professional one-page explainer with five numbered sections connected by a subtle flowing line: 1 "Sunlight hits your panels" with rooftop solar icon, 2 "Your home uses clean power" with house and battery icon, 3 "Excess energy goes to the grid" with utility pole icon, 4 "Credits lower your bill" with invoice icon, 5 "Savings grow over time" with upward chart icon. Include a clear mini chart titled "Typical 20-Year Savings" showing an upward savings curve and a callout bubble: "$38K estimated lifetime savings". Bottom footer with small disclaimer text: "Illustrative estimate based on local rates and incentives" and a rounded CTA button: "Book a free solar audit". High readability, crisp typography, balanced spacing, contemporary SaaS-style illustration, no photorealism, no clutter.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'google:nano-banana@2-lite',
positivePrompt: 'Create a polished vertical infographic for a residential solar company named BrightGrid Solar. Clean modern vector design, white background with warm yellow, deep navy, and fresh green accents. Headline at top: "How Rooftop Solar Pays You Back". Subheading: "A simple 5-step savings breakdown for homeowners". Layout should be a professional one-page explainer with five numbered sections connected by a subtle flowing line: 1 "Sunlight hits your panels" with rooftop solar icon, 2 "Your home uses clean power" with house and battery icon, 3 "Excess energy goes to the grid" with utility pole icon, 4 "Credits lower your bill" with invoice icon, 5 "Savings grow over time" with upward chart icon. Include a clear mini chart titled "Typical 20-Year Savings" showing an upward savings curve and a callout bubble: "$38K estimated lifetime savings". Bottom footer with small disclaimer text: "Illustrative estimate based on local rates and incentives" and a rounded CTA button: "Book a free solar audit". High readability, crisp typography, balanced spacing, contemporary SaaS-style illustration, no photorealism, no clutter.',
width: 848,
height: 1264,
settings: {
temperature: 0.7,
topP: 0.9
},
providerSettings: {
google: {
safetyTolerance: 'off'
}
}
})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": "google:nano-banana@2-lite",
"positivePrompt": "Create a polished vertical infographic for a residential solar company named BrightGrid Solar. Clean modern vector design, white background with warm yellow, deep navy, and fresh green accents. Headline at top: \"How Rooftop Solar Pays You Back\". Subheading: \"A simple 5-step savings breakdown for homeowners\". Layout should be a professional one-page explainer with five numbered sections connected by a subtle flowing line: 1 \"Sunlight hits your panels\" with rooftop solar icon, 2 \"Your home uses clean power\" with house and battery icon, 3 \"Excess energy goes to the grid\" with utility pole icon, 4 \"Credits lower your bill\" with invoice icon, 5 \"Savings grow over time\" with upward chart icon. Include a clear mini chart titled \"Typical 20-Year Savings\" showing an upward savings curve and a callout bubble: \"$38K estimated lifetime savings\". Bottom footer with small disclaimer text: \"Illustrative estimate based on local rates and incentives\" and a rounded CTA button: \"Book a free solar audit\". High readability, crisp typography, balanced spacing, contemporary SaaS-style illustration, no photorealism, no clutter.",
"width": 848,
"height": 1264,
"settings": {
"temperature": 0.7,
"topP": 0.9
},
"providerSettings": {
"google": {
"safetyTolerance": "off"
}
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "496a114b-eb2b-4f7c-b2c3-0d41e884a825",
"model": "google:nano-banana@2-lite",
"positivePrompt": "Create a polished vertical infographic for a residential solar company named BrightGrid Solar. Clean modern vector design, white background with warm yellow, deep navy, and fresh green accents. Headline at top: \"How Rooftop Solar Pays You Back\". Subheading: \"A simple 5-step savings breakdown for homeowners\". Layout should be a professional one-page explainer with five numbered sections connected by a subtle flowing line: 1 \"Sunlight hits your panels\" with rooftop solar icon, 2 \"Your home uses clean power\" with house and battery icon, 3 \"Excess energy goes to the grid\" with utility pole icon, 4 \"Credits lower your bill\" with invoice icon, 5 \"Savings grow over time\" with upward chart icon. Include a clear mini chart titled \"Typical 20-Year Savings\" showing an upward savings curve and a callout bubble: \"$38K estimated lifetime savings\". Bottom footer with small disclaimer text: \"Illustrative estimate based on local rates and incentives\" and a rounded CTA button: \"Book a free solar audit\". High readability, crisp typography, balanced spacing, contemporary SaaS-style illustration, no photorealism, no clutter.",
"width": 848,
"height": 1264,
"settings": {
"temperature": 0.7,
"topP": 0.9
},
"providerSettings": {
"google": {
"safetyTolerance": "off"
}
}
}
]'runware run google:nano-banana@2-lite \
positivePrompt="Create a polished vertical infographic for a residential solar company named BrightGrid Solar. Clean modern vector design, white background with warm yellow, deep navy, and fresh green accents. Headline at top: \"How Rooftop Solar Pays You Back\". Subheading: \"A simple 5-step savings breakdown for homeowners\". Layout should be a professional one-page explainer with five numbered sections connected by a subtle flowing line: 1 \"Sunlight hits your panels\" with rooftop solar icon, 2 \"Your home uses clean power\" with house and battery icon, 3 \"Excess energy goes to the grid\" with utility pole icon, 4 \"Credits lower your bill\" with invoice icon, 5 \"Savings grow over time\" with upward chart icon. Include a clear mini chart titled \"Typical 20-Year Savings\" showing an upward savings curve and a callout bubble: \"\$38K estimated lifetime savings\". Bottom footer with small disclaimer text: \"Illustrative estimate based on local rates and incentives\" and a rounded CTA button: \"Book a free solar audit\". High readability, crisp typography, balanced spacing, contemporary SaaS-style illustration, no photorealism, no clutter." \
width=848 \
height=1264 \
settings.temperature=0.7 \
settings.topP=0.9 \
providerSettings.google.safetyTolerance=off{
"taskType": "imageInference",
"taskUUID": "496a114b-eb2b-4f7c-b2c3-0d41e884a825",
"model": "google:nano-banana@2-lite",
"positivePrompt": "Create a polished vertical infographic for a residential solar company named BrightGrid Solar. Clean modern vector design, white background with warm yellow, deep navy, and fresh green accents. Headline at top: \"How Rooftop Solar Pays You Back\". Subheading: \"A simple 5-step savings breakdown for homeowners\". Layout should be a professional one-page explainer with five numbered sections connected by a subtle flowing line: 1 \"Sunlight hits your panels\" with rooftop solar icon, 2 \"Your home uses clean power\" with house and battery icon, 3 \"Excess energy goes to the grid\" with utility pole icon, 4 \"Credits lower your bill\" with invoice icon, 5 \"Savings grow over time\" with upward chart icon. Include a clear mini chart titled \"Typical 20-Year Savings\" showing an upward savings curve and a callout bubble: \"$38K estimated lifetime savings\". Bottom footer with small disclaimer text: \"Illustrative estimate based on local rates and incentives\" and a rounded CTA button: \"Book a free solar audit\". High readability, crisp typography, balanced spacing, contemporary SaaS-style illustration, no photorealism, no clutter.",
"width": 848,
"height": 1264,
"settings": {
"temperature": 0.7,
"topP": 0.9
},
"providerSettings": {
"google": {
"safetyTolerance": "off"
}
}
}{
"taskType": "imageInference",
"taskUUID": "496a114b-eb2b-4f7c-b2c3-0d41e884a825",
"imageUUID": "801460af-c300-42ee-940d-c2541cb134ac",
"imageURL": "https://im.runware.ai/image/os/a07dlim3/ws/3/ii/801460af-c300-42ee-940d-c2541cb134ac.jpg",
"seed": 294729135,
"cost": 0.0336747
}Dark Fantasy Game Key Art

Create premium game key art for a dark fantasy co-op extraction game titled “BLACKWATER KEEP”. 16:9 landscape composition for a Steam hero capsule and press kit. Scene: three distinct adventurers stand on a rain-soaked wooden causeway in a cursed marsh, facing a half-submerged medieval fortress with green witchfire glowing from its windows. Characters: a battered shield-bearing knight in tarnished plate, a hooded archer with a lantern, and an alchemist carrying glass vials; all shown from behind in heroic three-quarter silhouettes. Mood: dangerous, cinematic, high-stakes, collectible RPG box art. Lighting: cold moonlight, mist, rim light on armor, eerie emerald glow from the keep reflected in black water. Style: polished AAA game concept art, realistic painterly rendering, dramatic atmosphere, crisp focal point, detailed environment, strong readable silhouettes. Include the title text “BLACKWATER KEEP” as a carved iron fantasy logo near the lower center with space below for platform badges; no extra taglines, no ratings box, no publisher logos.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'google:nano-banana@2-lite',
positivePrompt: 'Create premium game key art for a dark fantasy co-op extraction game titled “BLACKWATER KEEP”. 16:9 landscape composition for a Steam hero capsule and press kit. Scene: three distinct adventurers stand on a rain-soaked wooden causeway in a cursed marsh, facing a half-submerged medieval fortress with green witchfire glowing from its windows. Characters: a battered shield-bearing knight in tarnished plate, a hooded archer with a lantern, and an alchemist carrying glass vials; all shown from behind in heroic three-quarter silhouettes. Mood: dangerous, cinematic, high-stakes, collectible RPG box art. Lighting: cold moonlight, mist, rim light on armor, eerie emerald glow from the keep reflected in black water. Style: polished AAA game concept art, realistic painterly rendering, dramatic atmosphere, crisp focal point, detailed environment, strong readable silhouettes. Include the title text “BLACKWATER KEEP” as a carved iron fantasy logo near the lower center with space below for platform badges; no extra taglines, no ratings box, no publisher logos.',
width: 1376,
height: 768,
seed: 18472936,
settings: {
temperature: 0.8,
topP: 0.95
},
providerSettings: {
google: {
safetyTolerance: 'low'
}
}
})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": "google:nano-banana@2-lite",
"positivePrompt": "Create premium game key art for a dark fantasy co-op extraction game titled “BLACKWATER KEEP”. 16:9 landscape composition for a Steam hero capsule and press kit. Scene: three distinct adventurers stand on a rain-soaked wooden causeway in a cursed marsh, facing a half-submerged medieval fortress with green witchfire glowing from its windows. Characters: a battered shield-bearing knight in tarnished plate, a hooded archer with a lantern, and an alchemist carrying glass vials; all shown from behind in heroic three-quarter silhouettes. Mood: dangerous, cinematic, high-stakes, collectible RPG box art. Lighting: cold moonlight, mist, rim light on armor, eerie emerald glow from the keep reflected in black water. Style: polished AAA game concept art, realistic painterly rendering, dramatic atmosphere, crisp focal point, detailed environment, strong readable silhouettes. Include the title text “BLACKWATER KEEP” as a carved iron fantasy logo near the lower center with space below for platform badges; no extra taglines, no ratings box, no publisher logos.",
"width": 1376,
"height": 768,
"seed": 18472936,
"settings": {
"temperature": 0.8,
"topP": 0.95
},
"providerSettings": {
"google": {
"safetyTolerance": "low"
}
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "6610bdec-2ab6-4bee-b1ce-aa8af2010123",
"model": "google:nano-banana@2-lite",
"positivePrompt": "Create premium game key art for a dark fantasy co-op extraction game titled “BLACKWATER KEEP”. 16:9 landscape composition for a Steam hero capsule and press kit. Scene: three distinct adventurers stand on a rain-soaked wooden causeway in a cursed marsh, facing a half-submerged medieval fortress with green witchfire glowing from its windows. Characters: a battered shield-bearing knight in tarnished plate, a hooded archer with a lantern, and an alchemist carrying glass vials; all shown from behind in heroic three-quarter silhouettes. Mood: dangerous, cinematic, high-stakes, collectible RPG box art. Lighting: cold moonlight, mist, rim light on armor, eerie emerald glow from the keep reflected in black water. Style: polished AAA game concept art, realistic painterly rendering, dramatic atmosphere, crisp focal point, detailed environment, strong readable silhouettes. Include the title text “BLACKWATER KEEP” as a carved iron fantasy logo near the lower center with space below for platform badges; no extra taglines, no ratings box, no publisher logos.",
"width": 1376,
"height": 768,
"seed": 18472936,
"settings": {
"temperature": 0.8,
"topP": 0.95
},
"providerSettings": {
"google": {
"safetyTolerance": "low"
}
}
}
]'runware run google:nano-banana@2-lite \
positivePrompt="Create premium game key art for a dark fantasy co-op extraction game titled “BLACKWATER KEEP”. 16:9 landscape composition for a Steam hero capsule and press kit. Scene: three distinct adventurers stand on a rain-soaked wooden causeway in a cursed marsh, facing a half-submerged medieval fortress with green witchfire glowing from its windows. Characters: a battered shield-bearing knight in tarnished plate, a hooded archer with a lantern, and an alchemist carrying glass vials; all shown from behind in heroic three-quarter silhouettes. Mood: dangerous, cinematic, high-stakes, collectible RPG box art. Lighting: cold moonlight, mist, rim light on armor, eerie emerald glow from the keep reflected in black water. Style: polished AAA game concept art, realistic painterly rendering, dramatic atmosphere, crisp focal point, detailed environment, strong readable silhouettes. Include the title text “BLACKWATER KEEP” as a carved iron fantasy logo near the lower center with space below for platform badges; no extra taglines, no ratings box, no publisher logos." \
width=1376 \
height=768 \
seed=18472936 \
settings.temperature=0.8 \
settings.topP=0.95 \
providerSettings.google.safetyTolerance=low{
"taskType": "imageInference",
"taskUUID": "6610bdec-2ab6-4bee-b1ce-aa8af2010123",
"model": "google:nano-banana@2-lite",
"positivePrompt": "Create premium game key art for a dark fantasy co-op extraction game titled “BLACKWATER KEEP”. 16:9 landscape composition for a Steam hero capsule and press kit. Scene: three distinct adventurers stand on a rain-soaked wooden causeway in a cursed marsh, facing a half-submerged medieval fortress with green witchfire glowing from its windows. Characters: a battered shield-bearing knight in tarnished plate, a hooded archer with a lantern, and an alchemist carrying glass vials; all shown from behind in heroic three-quarter silhouettes. Mood: dangerous, cinematic, high-stakes, collectible RPG box art. Lighting: cold moonlight, mist, rim light on armor, eerie emerald glow from the keep reflected in black water. Style: polished AAA game concept art, realistic painterly rendering, dramatic atmosphere, crisp focal point, detailed environment, strong readable silhouettes. Include the title text “BLACKWATER KEEP” as a carved iron fantasy logo near the lower center with space below for platform badges; no extra taglines, no ratings box, no publisher logos.",
"width": 1376,
"height": 768,
"seed": 18472936,
"settings": {
"temperature": 0.8,
"topP": 0.95
},
"providerSettings": {
"google": {
"safetyTolerance": "low"
}
}
}{
"taskType": "imageInference",
"taskUUID": "6610bdec-2ab6-4bee-b1ce-aa8af2010123",
"imageUUID": "a0b4a613-e14f-49a9-90e3-c90e5e349687",
"imageURL": "https://im.runware.ai/image/os/a06dlim3/ws/3/ii/a0b4a613-e14f-49a9-90e3-c90e5e349687.jpg",
"seed": 18472936,
"cost": 0.0336675
}