FLUX.1 Kontext [pro]

FLUX.1 Kontext [pro] combines fast text to image generation with precise image editing. It supports reference images, local region edits, and full scene changes while preserving style and character identity. Ideal for iterative workflows in design, product visuals, and storytelling pipelines.
![FLUX.1 Kontext [pro]](https://assets.runware.ai/covers/bfl-flux-1-kontext-pro.jpg)
Complete technical specification for integration
Ready-to-use code snippets for common workflows
Aquaculture Sensor Campaign Hero

Create a premium commercial campaign photograph for marine aquaculture equipment. The clear hero subject is a rugged multiparameter water-quality sonde suspended vertically beneath the surface at an offshore oyster farm: a precisely engineered brushed titanium cylinder with dark graphite collars, perforated sensor guard, several visible probe tips, a reinforced yellow data cable, and small signs of authentic wet use. Use a dramatic split-level composition with the camera half above and half below the water. Underwater, the sonde fills the right third in crisp detail while mesh oyster baskets and longlines recede diagonally through cold emerald water; suspended particles, bubbles, soft caustic light, and realistic marine growth create depth without obscuring the product. Above water, show low steel-gray waves, orderly rows of orange farm buoys, a small utilitarian workboat in the middle distance, and a pale overcast North Atlantic horizon. Wide cinematic landscape framing, low waterline perspective, restrained slate-gray, kelp-green, titanium, and safety-orange palette. Natural documentary realism elevated to meticulous industrial advertising, tactile materials, physically accurate reflections and refraction, subtle cold dawn light, sharp product silhouette, no people in the foreground, no logo, no lettering, no interface, no packaging.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'bfl:3@1',
positivePrompt: 'Create a premium commercial campaign photograph for marine aquaculture equipment. The clear hero subject is a rugged multiparameter water-quality sonde suspended vertically beneath the surface at an offshore oyster farm: a precisely engineered brushed titanium cylinder with dark graphite collars, perforated sensor guard, several visible probe tips, a reinforced yellow data cable, and small signs of authentic wet use. Use a dramatic split-level composition with the camera half above and half below the water. Underwater, the sonde fills the right third in crisp detail while mesh oyster baskets and longlines recede diagonally through cold emerald water; suspended particles, bubbles, soft caustic light, and realistic marine growth create depth without obscuring the product. Above water, show low steel-gray waves, orderly rows of orange farm buoys, a small utilitarian workboat in the middle distance, and a pale overcast North Atlantic horizon. Wide cinematic landscape framing, low waterline perspective, restrained slate-gray, kelp-green, titanium, and safety-orange palette. Natural documentary realism elevated to meticulous industrial advertising, tactile materials, physically accurate reflections and refraction, subtle cold dawn light, sharp product silhouette, no people in the foreground, no logo, no lettering, no interface, no packaging.',
width: 1392,
height: 752,
providerSettings: {
bfl: {
promptUpsampling: true
}
}
})import asyncio
import os
from runware import Runware
async def main():
async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
results = await client.run({
"model": "bfl:3@1",
"positivePrompt": "Create a premium commercial campaign photograph for marine aquaculture equipment. The clear hero subject is a rugged multiparameter water-quality sonde suspended vertically beneath the surface at an offshore oyster farm: a precisely engineered brushed titanium cylinder with dark graphite collars, perforated sensor guard, several visible probe tips, a reinforced yellow data cable, and small signs of authentic wet use. Use a dramatic split-level composition with the camera half above and half below the water. Underwater, the sonde fills the right third in crisp detail while mesh oyster baskets and longlines recede diagonally through cold emerald water; suspended particles, bubbles, soft caustic light, and realistic marine growth create depth without obscuring the product. Above water, show low steel-gray waves, orderly rows of orange farm buoys, a small utilitarian workboat in the middle distance, and a pale overcast North Atlantic horizon. Wide cinematic landscape framing, low waterline perspective, restrained slate-gray, kelp-green, titanium, and safety-orange palette. Natural documentary realism elevated to meticulous industrial advertising, tactile materials, physically accurate reflections and refraction, subtle cold dawn light, sharp product silhouette, no people in the foreground, no logo, no lettering, no interface, no packaging.",
"width": 1392,
"height": 752,
"providerSettings": {
"bfl": {
"promptUpsampling": True
}
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "f156ca96-74d0-4943-8942-17eed40066c9",
"model": "bfl:3@1",
"positivePrompt": "Create a premium commercial campaign photograph for marine aquaculture equipment. The clear hero subject is a rugged multiparameter water-quality sonde suspended vertically beneath the surface at an offshore oyster farm: a precisely engineered brushed titanium cylinder with dark graphite collars, perforated sensor guard, several visible probe tips, a reinforced yellow data cable, and small signs of authentic wet use. Use a dramatic split-level composition with the camera half above and half below the water. Underwater, the sonde fills the right third in crisp detail while mesh oyster baskets and longlines recede diagonally through cold emerald water; suspended particles, bubbles, soft caustic light, and realistic marine growth create depth without obscuring the product. Above water, show low steel-gray waves, orderly rows of orange farm buoys, a small utilitarian workboat in the middle distance, and a pale overcast North Atlantic horizon. Wide cinematic landscape framing, low waterline perspective, restrained slate-gray, kelp-green, titanium, and safety-orange palette. Natural documentary realism elevated to meticulous industrial advertising, tactile materials, physically accurate reflections and refraction, subtle cold dawn light, sharp product silhouette, no people in the foreground, no logo, no lettering, no interface, no packaging.",
"width": 1392,
"height": 752,
"providerSettings": {
"bfl": {
"promptUpsampling": true
}
}
}
]'runware run bfl:3@1 \
positivePrompt="Create a premium commercial campaign photograph for marine aquaculture equipment. The clear hero subject is a rugged multiparameter water-quality sonde suspended vertically beneath the surface at an offshore oyster farm: a precisely engineered brushed titanium cylinder with dark graphite collars, perforated sensor guard, several visible probe tips, a reinforced yellow data cable, and small signs of authentic wet use. Use a dramatic split-level composition with the camera half above and half below the water. Underwater, the sonde fills the right third in crisp detail while mesh oyster baskets and longlines recede diagonally through cold emerald water; suspended particles, bubbles, soft caustic light, and realistic marine growth create depth without obscuring the product. Above water, show low steel-gray waves, orderly rows of orange farm buoys, a small utilitarian workboat in the middle distance, and a pale overcast North Atlantic horizon. Wide cinematic landscape framing, low waterline perspective, restrained slate-gray, kelp-green, titanium, and safety-orange palette. Natural documentary realism elevated to meticulous industrial advertising, tactile materials, physically accurate reflections and refraction, subtle cold dawn light, sharp product silhouette, no people in the foreground, no logo, no lettering, no interface, no packaging." \
width=1392 \
height=752 \
providerSettings.bfl.promptUpsampling=true{
"taskType": "imageInference",
"taskUUID": "f156ca96-74d0-4943-8942-17eed40066c9",
"model": "bfl:3@1",
"positivePrompt": "Create a premium commercial campaign photograph for marine aquaculture equipment. The clear hero subject is a rugged multiparameter water-quality sonde suspended vertically beneath the surface at an offshore oyster farm: a precisely engineered brushed titanium cylinder with dark graphite collars, perforated sensor guard, several visible probe tips, a reinforced yellow data cable, and small signs of authentic wet use. Use a dramatic split-level composition with the camera half above and half below the water. Underwater, the sonde fills the right third in crisp detail while mesh oyster baskets and longlines recede diagonally through cold emerald water; suspended particles, bubbles, soft caustic light, and realistic marine growth create depth without obscuring the product. Above water, show low steel-gray waves, orderly rows of orange farm buoys, a small utilitarian workboat in the middle distance, and a pale overcast North Atlantic horizon. Wide cinematic landscape framing, low waterline perspective, restrained slate-gray, kelp-green, titanium, and safety-orange palette. Natural documentary realism elevated to meticulous industrial advertising, tactile materials, physically accurate reflections and refraction, subtle cold dawn light, sharp product silhouette, no people in the foreground, no logo, no lettering, no interface, no packaging.",
"width": 1392,
"height": 752,
"providerSettings": {
"bfl": {
"promptUpsampling": true
}
}
}{
"taskType": "imageInference",
"taskUUID": "f156ca96-74d0-4943-8942-17eed40066c9",
"imageUUID": "d7b69fbd-5fa6-4617-b4e3-223a65f5ff50",
"imageURL": "https://im.runware.ai/image/os/a05d22/ws/3/ii/d7b69fbd-5fa6-4617-b4e3-223a65f5ff50.jpg",
"seed": 624397802,
"cost": 0.04
}Avalanche Patrol Team Composite

Create a finished, photorealistic environmental group portrait for a regional mountain rescue service. Twelve avalanche patrollers stand in a relaxed horizontal formation outside a utilitarian alpine rescue garage at blue hour, wearing coordinated navy technical uniforms with restrained coral-red panels, ski boots, radios, helmets carried at their sides, and realistic signs of a working shift. Seamlessly add the team’s retiring golden retriever avalanche rescue dog as the clear central subject, seated proudly between two kneeling handlers and wearing a well-used yellow rescue harness. The dog must feel genuinely present in the original photograph: identical cool dusk lighting, accurate scale and perspective, soft contact shadow, paws pressing naturally into the snow, subtle reflected light from the open garage, and believable interaction as one handler rests a gloved hand on its shoulder. Behind them are organized rescue sleds, probe poles, ropes, skis, and a tracked snow vehicle, with no logos or readable text. Fresh snow, faint breath vapor, distant dark firs and a pale mountain ridge create a crisp winter setting. Symmetrical wide composition with generous landscape breathing room, eye-level 35mm documentary photography, direct but softened portable flash balanced with cobalt ambient light, sharp faces, natural skin texture, subdued navy, coral, yellow and icy blue palette. Warm, dignified, quietly celebratory mood; premium editorial annual-report photography, not an advertisement, no borders, no typography.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'bfl:3@1',
positivePrompt: 'Create a finished, photorealistic environmental group portrait for a regional mountain rescue service. Twelve avalanche patrollers stand in a relaxed horizontal formation outside a utilitarian alpine rescue garage at blue hour, wearing coordinated navy technical uniforms with restrained coral-red panels, ski boots, radios, helmets carried at their sides, and realistic signs of a working shift. Seamlessly add the team’s retiring golden retriever avalanche rescue dog as the clear central subject, seated proudly between two kneeling handlers and wearing a well-used yellow rescue harness. The dog must feel genuinely present in the original photograph: identical cool dusk lighting, accurate scale and perspective, soft contact shadow, paws pressing naturally into the snow, subtle reflected light from the open garage, and believable interaction as one handler rests a gloved hand on its shoulder. Behind them are organized rescue sleds, probe poles, ropes, skis, and a tracked snow vehicle, with no logos or readable text. Fresh snow, faint breath vapor, distant dark firs and a pale mountain ridge create a crisp winter setting. Symmetrical wide composition with generous landscape breathing room, eye-level 35mm documentary photography, direct but softened portable flash balanced with cobalt ambient light, sharp faces, natural skin texture, subdued navy, coral, yellow and icy blue palette. Warm, dignified, quietly celebratory mood; premium editorial annual-report photography, not an advertisement, no borders, no typography.',
width: 1392,
height: 752,
providerSettings: {
bfl: {
promptUpsampling: true
}
}
})import asyncio
import os
from runware import Runware
async def main():
async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
results = await client.run({
"model": "bfl:3@1",
"positivePrompt": "Create a finished, photorealistic environmental group portrait for a regional mountain rescue service. Twelve avalanche patrollers stand in a relaxed horizontal formation outside a utilitarian alpine rescue garage at blue hour, wearing coordinated navy technical uniforms with restrained coral-red panels, ski boots, radios, helmets carried at their sides, and realistic signs of a working shift. Seamlessly add the team’s retiring golden retriever avalanche rescue dog as the clear central subject, seated proudly between two kneeling handlers and wearing a well-used yellow rescue harness. The dog must feel genuinely present in the original photograph: identical cool dusk lighting, accurate scale and perspective, soft contact shadow, paws pressing naturally into the snow, subtle reflected light from the open garage, and believable interaction as one handler rests a gloved hand on its shoulder. Behind them are organized rescue sleds, probe poles, ropes, skis, and a tracked snow vehicle, with no logos or readable text. Fresh snow, faint breath vapor, distant dark firs and a pale mountain ridge create a crisp winter setting. Symmetrical wide composition with generous landscape breathing room, eye-level 35mm documentary photography, direct but softened portable flash balanced with cobalt ambient light, sharp faces, natural skin texture, subdued navy, coral, yellow and icy blue palette. Warm, dignified, quietly celebratory mood; premium editorial annual-report photography, not an advertisement, no borders, no typography.",
"width": 1392,
"height": 752,
"providerSettings": {
"bfl": {
"promptUpsampling": True
}
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "c508fcc9-0ec6-4c9c-bc33-a9c98d607edf",
"model": "bfl:3@1",
"positivePrompt": "Create a finished, photorealistic environmental group portrait for a regional mountain rescue service. Twelve avalanche patrollers stand in a relaxed horizontal formation outside a utilitarian alpine rescue garage at blue hour, wearing coordinated navy technical uniforms with restrained coral-red panels, ski boots, radios, helmets carried at their sides, and realistic signs of a working shift. Seamlessly add the team’s retiring golden retriever avalanche rescue dog as the clear central subject, seated proudly between two kneeling handlers and wearing a well-used yellow rescue harness. The dog must feel genuinely present in the original photograph: identical cool dusk lighting, accurate scale and perspective, soft contact shadow, paws pressing naturally into the snow, subtle reflected light from the open garage, and believable interaction as one handler rests a gloved hand on its shoulder. Behind them are organized rescue sleds, probe poles, ropes, skis, and a tracked snow vehicle, with no logos or readable text. Fresh snow, faint breath vapor, distant dark firs and a pale mountain ridge create a crisp winter setting. Symmetrical wide composition with generous landscape breathing room, eye-level 35mm documentary photography, direct but softened portable flash balanced with cobalt ambient light, sharp faces, natural skin texture, subdued navy, coral, yellow and icy blue palette. Warm, dignified, quietly celebratory mood; premium editorial annual-report photography, not an advertisement, no borders, no typography.",
"width": 1392,
"height": 752,
"providerSettings": {
"bfl": {
"promptUpsampling": true
}
}
}
]'runware run bfl:3@1 \
positivePrompt="Create a finished, photorealistic environmental group portrait for a regional mountain rescue service. Twelve avalanche patrollers stand in a relaxed horizontal formation outside a utilitarian alpine rescue garage at blue hour, wearing coordinated navy technical uniforms with restrained coral-red panels, ski boots, radios, helmets carried at their sides, and realistic signs of a working shift. Seamlessly add the team’s retiring golden retriever avalanche rescue dog as the clear central subject, seated proudly between two kneeling handlers and wearing a well-used yellow rescue harness. The dog must feel genuinely present in the original photograph: identical cool dusk lighting, accurate scale and perspective, soft contact shadow, paws pressing naturally into the snow, subtle reflected light from the open garage, and believable interaction as one handler rests a gloved hand on its shoulder. Behind them are organized rescue sleds, probe poles, ropes, skis, and a tracked snow vehicle, with no logos or readable text. Fresh snow, faint breath vapor, distant dark firs and a pale mountain ridge create a crisp winter setting. Symmetrical wide composition with generous landscape breathing room, eye-level 35mm documentary photography, direct but softened portable flash balanced with cobalt ambient light, sharp faces, natural skin texture, subdued navy, coral, yellow and icy blue palette. Warm, dignified, quietly celebratory mood; premium editorial annual-report photography, not an advertisement, no borders, no typography." \
width=1392 \
height=752 \
providerSettings.bfl.promptUpsampling=true{
"taskType": "imageInference",
"taskUUID": "c508fcc9-0ec6-4c9c-bc33-a9c98d607edf",
"model": "bfl:3@1",
"positivePrompt": "Create a finished, photorealistic environmental group portrait for a regional mountain rescue service. Twelve avalanche patrollers stand in a relaxed horizontal formation outside a utilitarian alpine rescue garage at blue hour, wearing coordinated navy technical uniforms with restrained coral-red panels, ski boots, radios, helmets carried at their sides, and realistic signs of a working shift. Seamlessly add the team’s retiring golden retriever avalanche rescue dog as the clear central subject, seated proudly between two kneeling handlers and wearing a well-used yellow rescue harness. The dog must feel genuinely present in the original photograph: identical cool dusk lighting, accurate scale and perspective, soft contact shadow, paws pressing naturally into the snow, subtle reflected light from the open garage, and believable interaction as one handler rests a gloved hand on its shoulder. Behind them are organized rescue sleds, probe poles, ropes, skis, and a tracked snow vehicle, with no logos or readable text. Fresh snow, faint breath vapor, distant dark firs and a pale mountain ridge create a crisp winter setting. Symmetrical wide composition with generous landscape breathing room, eye-level 35mm documentary photography, direct but softened portable flash balanced with cobalt ambient light, sharp faces, natural skin texture, subdued navy, coral, yellow and icy blue palette. Warm, dignified, quietly celebratory mood; premium editorial annual-report photography, not an advertisement, no borders, no typography.",
"width": 1392,
"height": 752,
"providerSettings": {
"bfl": {
"promptUpsampling": true
}
}
}{
"taskType": "imageInference",
"taskUUID": "c508fcc9-0ec6-4c9c-bc33-a9c98d607edf",
"imageUUID": "5d2115ab-0251-428c-b79e-2fe9d31179e5",
"imageURL": "https://im.runware.ai/image/os/a10dlim3/ws/3/ii/5d2115ab-0251-428c-b79e-2fe9d31179e5.jpg",
"seed": 1197103962,
"cost": 0.04
}Air Ambulance Incubator Deployment Visual

Create a photorealistic medtech deployment image by placing the exact neonatal transport incubator from the reference photograph inside a compact fixed-wing air-ambulance cabin. Preserve the incubator's recognizable design precisely: identical transparent chamber, access ports, padded interior, monitor, oxygen cylinders, control module, tubular frame, wheels, handles, cables, proportions, materials, and viewing angle. Do not redesign, simplify, duplicate, or replace any component. Secure the incubator naturally to a certified floor-track mounting system along the center aisle. Show a flight nurse in a navy medical jumpsuit at the right edge, partially visible and checking one restraint buckle without obscuring the product. The cabin should feel operational and credible: pale gray molded wall panels, overhead medical equipment rails, compact storage, oxygen fittings, quilted insulation details, and an oval aircraft window revealing a quiet blue pre-dawn airport apron. No patient is visible inside the chamber. Compose as a polished portrait-format sales-brochure photograph, with the incubator occupying the central lower two-thirds and remaining completely readable as the hero product. Use cool blue ambient dawn light through the window balanced by clean warm-white cabin task lights, restrained slate, ivory, and navy palette, crisp material detail, realistic contact shadows, accurate perspective, and subtle reflections on the clear canopy. Calm, prepared, clinically trustworthy mood. No logos, captions, interface graphics, watermarks, or legible 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: 'bfl:3@1',
positivePrompt: 'Create a photorealistic medtech deployment image by placing the exact neonatal transport incubator from the reference photograph inside a compact fixed-wing air-ambulance cabin. Preserve the incubator\'s recognizable design precisely: identical transparent chamber, access ports, padded interior, monitor, oxygen cylinders, control module, tubular frame, wheels, handles, cables, proportions, materials, and viewing angle. Do not redesign, simplify, duplicate, or replace any component.\n\nSecure the incubator naturally to a certified floor-track mounting system along the center aisle. Show a flight nurse in a navy medical jumpsuit at the right edge, partially visible and checking one restraint buckle without obscuring the product. The cabin should feel operational and credible: pale gray molded wall panels, overhead medical equipment rails, compact storage, oxygen fittings, quilted insulation details, and an oval aircraft window revealing a quiet blue pre-dawn airport apron. No patient is visible inside the chamber.\n\nCompose as a polished portrait-format sales-brochure photograph, with the incubator occupying the central lower two-thirds and remaining completely readable as the hero product. Use cool blue ambient dawn light through the window balanced by clean warm-white cabin task lights, restrained slate, ivory, and navy palette, crisp material detail, realistic contact shadows, accurate perspective, and subtle reflections on the clear canopy. Calm, prepared, clinically trustworthy mood. No logos, captions, interface graphics, watermarks, or legible text.',
width: 880,
height: 1184,
inputs: {
referenceImages: [
'https://assets.runware.ai/assets/inputs/b4017bf0-0c98-4720-b18b-e9aee8369551.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": "bfl:3@1",
"positivePrompt": "Create a photorealistic medtech deployment image by placing the exact neonatal transport incubator from the reference photograph inside a compact fixed-wing air-ambulance cabin. Preserve the incubator's recognizable design precisely: identical transparent chamber, access ports, padded interior, monitor, oxygen cylinders, control module, tubular frame, wheels, handles, cables, proportions, materials, and viewing angle. Do not redesign, simplify, duplicate, or replace any component.\n\nSecure the incubator naturally to a certified floor-track mounting system along the center aisle. Show a flight nurse in a navy medical jumpsuit at the right edge, partially visible and checking one restraint buckle without obscuring the product. The cabin should feel operational and credible: pale gray molded wall panels, overhead medical equipment rails, compact storage, oxygen fittings, quilted insulation details, and an oval aircraft window revealing a quiet blue pre-dawn airport apron. No patient is visible inside the chamber.\n\nCompose as a polished portrait-format sales-brochure photograph, with the incubator occupying the central lower two-thirds and remaining completely readable as the hero product. Use cool blue ambient dawn light through the window balanced by clean warm-white cabin task lights, restrained slate, ivory, and navy palette, crisp material detail, realistic contact shadows, accurate perspective, and subtle reflections on the clear canopy. Calm, prepared, clinically trustworthy mood. No logos, captions, interface graphics, watermarks, or legible text.",
"width": 880,
"height": 1184,
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/b4017bf0-0c98-4720-b18b-e9aee8369551.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": "54505751-41db-4add-8574-fb163e4182d4",
"model": "bfl:3@1",
"positivePrompt": "Create a photorealistic medtech deployment image by placing the exact neonatal transport incubator from the reference photograph inside a compact fixed-wing air-ambulance cabin. Preserve the incubator's recognizable design precisely: identical transparent chamber, access ports, padded interior, monitor, oxygen cylinders, control module, tubular frame, wheels, handles, cables, proportions, materials, and viewing angle. Do not redesign, simplify, duplicate, or replace any component.\n\nSecure the incubator naturally to a certified floor-track mounting system along the center aisle. Show a flight nurse in a navy medical jumpsuit at the right edge, partially visible and checking one restraint buckle without obscuring the product. The cabin should feel operational and credible: pale gray molded wall panels, overhead medical equipment rails, compact storage, oxygen fittings, quilted insulation details, and an oval aircraft window revealing a quiet blue pre-dawn airport apron. No patient is visible inside the chamber.\n\nCompose as a polished portrait-format sales-brochure photograph, with the incubator occupying the central lower two-thirds and remaining completely readable as the hero product. Use cool blue ambient dawn light through the window balanced by clean warm-white cabin task lights, restrained slate, ivory, and navy palette, crisp material detail, realistic contact shadows, accurate perspective, and subtle reflections on the clear canopy. Calm, prepared, clinically trustworthy mood. No logos, captions, interface graphics, watermarks, or legible text.",
"width": 880,
"height": 1184,
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/b4017bf0-0c98-4720-b18b-e9aee8369551.jpg"
]
}
}
]'runware run bfl:3@1 \
positivePrompt="Create a photorealistic medtech deployment image by placing the exact neonatal transport incubator from the reference photograph inside a compact fixed-wing air-ambulance cabin. Preserve the incubator's recognizable design precisely: identical transparent chamber, access ports, padded interior, monitor, oxygen cylinders, control module, tubular frame, wheels, handles, cables, proportions, materials, and viewing angle. Do not redesign, simplify, duplicate, or replace any component.
Secure the incubator naturally to a certified floor-track mounting system along the center aisle. Show a flight nurse in a navy medical jumpsuit at the right edge, partially visible and checking one restraint buckle without obscuring the product. The cabin should feel operational and credible: pale gray molded wall panels, overhead medical equipment rails, compact storage, oxygen fittings, quilted insulation details, and an oval aircraft window revealing a quiet blue pre-dawn airport apron. No patient is visible inside the chamber.
Compose as a polished portrait-format sales-brochure photograph, with the incubator occupying the central lower two-thirds and remaining completely readable as the hero product. Use cool blue ambient dawn light through the window balanced by clean warm-white cabin task lights, restrained slate, ivory, and navy palette, crisp material detail, realistic contact shadows, accurate perspective, and subtle reflections on the clear canopy. Calm, prepared, clinically trustworthy mood. No logos, captions, interface graphics, watermarks, or legible text." \
width=880 \
height=1184 \
inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/b4017bf0-0c98-4720-b18b-e9aee8369551.jpg{
"taskType": "imageInference",
"taskUUID": "54505751-41db-4add-8574-fb163e4182d4",
"model": "bfl:3@1",
"positivePrompt": "Create a photorealistic medtech deployment image by placing the exact neonatal transport incubator from the reference photograph inside a compact fixed-wing air-ambulance cabin. Preserve the incubator's recognizable design precisely: identical transparent chamber, access ports, padded interior, monitor, oxygen cylinders, control module, tubular frame, wheels, handles, cables, proportions, materials, and viewing angle. Do not redesign, simplify, duplicate, or replace any component.\n\nSecure the incubator naturally to a certified floor-track mounting system along the center aisle. Show a flight nurse in a navy medical jumpsuit at the right edge, partially visible and checking one restraint buckle without obscuring the product. The cabin should feel operational and credible: pale gray molded wall panels, overhead medical equipment rails, compact storage, oxygen fittings, quilted insulation details, and an oval aircraft window revealing a quiet blue pre-dawn airport apron. No patient is visible inside the chamber.\n\nCompose as a polished portrait-format sales-brochure photograph, with the incubator occupying the central lower two-thirds and remaining completely readable as the hero product. Use cool blue ambient dawn light through the window balanced by clean warm-white cabin task lights, restrained slate, ivory, and navy palette, crisp material detail, realistic contact shadows, accurate perspective, and subtle reflections on the clear canopy. Calm, prepared, clinically trustworthy mood. No logos, captions, interface graphics, watermarks, or legible text.",
"width": 880,
"height": 1184,
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/b4017bf0-0c98-4720-b18b-e9aee8369551.jpg"
]
}
}{
"taskType": "imageInference",
"taskUUID": "54505751-41db-4add-8574-fb163e4182d4",
"imageUUID": "77d42206-5200-45ab-b811-75375f81f0c4",
"imageURL": "https://im.runware.ai/image/os/a08dlim3/ws/3/ii/77d42206-5200-45ab-b811-75375f81f0c4.jpg",
"seed": 1070974741,
"cost": 0.04
}Tattoo Machine Cobalt Colorway

Create a finished portrait-format ecommerce colorway image by editing the supplied tattoo machine photograph. Preserve the exact machine identity, silhouette, proportions, viewing angle, grip texture, needle cartridge, adjustment ring, screws, charging port, engraved calibration marks, machining details, and realistic material construction. Recolor only the matte-black machined aluminum body panels to a rich electric cobalt-blue anodized finish with subtle metallic depth and natural tonal variation. Keep the ribbed rubber grip and needle cartridge black, and keep all stainless-steel components silver. The new finish must follow every contour, edge, seam, highlight, and shadow convincingly, with no color bleeding onto adjacent parts. Present the machine as a premium product hero on a warm pale-gray seamless studio surface, upright in the same three-quarter orientation, with a restrained soft-edged shadow beneath it. Use crisp directional lighting from the upper left, controlled highlights on the blue anodized aluminum, clean commercial retouching, accurate neutral color, and generous negative space. Single product only, fully visible, centered slightly below the vertical midpoint. No hands, ink, cables, extra equipment, packaging, decorative props, added logos, captions, borders, or graphic 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: 'bfl:3@1',
positivePrompt: 'Create a finished portrait-format ecommerce colorway image by editing the supplied tattoo machine photograph. Preserve the exact machine identity, silhouette, proportions, viewing angle, grip texture, needle cartridge, adjustment ring, screws, charging port, engraved calibration marks, machining details, and realistic material construction. Recolor only the matte-black machined aluminum body panels to a rich electric cobalt-blue anodized finish with subtle metallic depth and natural tonal variation. Keep the ribbed rubber grip and needle cartridge black, and keep all stainless-steel components silver. The new finish must follow every contour, edge, seam, highlight, and shadow convincingly, with no color bleeding onto adjacent parts. Present the machine as a premium product hero on a warm pale-gray seamless studio surface, upright in the same three-quarter orientation, with a restrained soft-edged shadow beneath it. Use crisp directional lighting from the upper left, controlled highlights on the blue anodized aluminum, clean commercial retouching, accurate neutral color, and generous negative space. Single product only, fully visible, centered slightly below the vertical midpoint. No hands, ink, cables, extra equipment, packaging, decorative props, added logos, captions, borders, or graphic overlays.',
width: 880,
height: 1184,
inputs: {
referenceImages: [
'https://assets.runware.ai/assets/inputs/3e0cdd12-4927-43b8-a183-023297e216e5.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": "bfl:3@1",
"positivePrompt": "Create a finished portrait-format ecommerce colorway image by editing the supplied tattoo machine photograph. Preserve the exact machine identity, silhouette, proportions, viewing angle, grip texture, needle cartridge, adjustment ring, screws, charging port, engraved calibration marks, machining details, and realistic material construction. Recolor only the matte-black machined aluminum body panels to a rich electric cobalt-blue anodized finish with subtle metallic depth and natural tonal variation. Keep the ribbed rubber grip and needle cartridge black, and keep all stainless-steel components silver. The new finish must follow every contour, edge, seam, highlight, and shadow convincingly, with no color bleeding onto adjacent parts. Present the machine as a premium product hero on a warm pale-gray seamless studio surface, upright in the same three-quarter orientation, with a restrained soft-edged shadow beneath it. Use crisp directional lighting from the upper left, controlled highlights on the blue anodized aluminum, clean commercial retouching, accurate neutral color, and generous negative space. Single product only, fully visible, centered slightly below the vertical midpoint. No hands, ink, cables, extra equipment, packaging, decorative props, added logos, captions, borders, or graphic overlays.",
"width": 880,
"height": 1184,
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/3e0cdd12-4927-43b8-a183-023297e216e5.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": "62144e79-32a2-47ac-a79c-c82fbafd7b1a",
"model": "bfl:3@1",
"positivePrompt": "Create a finished portrait-format ecommerce colorway image by editing the supplied tattoo machine photograph. Preserve the exact machine identity, silhouette, proportions, viewing angle, grip texture, needle cartridge, adjustment ring, screws, charging port, engraved calibration marks, machining details, and realistic material construction. Recolor only the matte-black machined aluminum body panels to a rich electric cobalt-blue anodized finish with subtle metallic depth and natural tonal variation. Keep the ribbed rubber grip and needle cartridge black, and keep all stainless-steel components silver. The new finish must follow every contour, edge, seam, highlight, and shadow convincingly, with no color bleeding onto adjacent parts. Present the machine as a premium product hero on a warm pale-gray seamless studio surface, upright in the same three-quarter orientation, with a restrained soft-edged shadow beneath it. Use crisp directional lighting from the upper left, controlled highlights on the blue anodized aluminum, clean commercial retouching, accurate neutral color, and generous negative space. Single product only, fully visible, centered slightly below the vertical midpoint. No hands, ink, cables, extra equipment, packaging, decorative props, added logos, captions, borders, or graphic overlays.",
"width": 880,
"height": 1184,
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/3e0cdd12-4927-43b8-a183-023297e216e5.jpg"
]
}
}
]'runware run bfl:3@1 \
positivePrompt="Create a finished portrait-format ecommerce colorway image by editing the supplied tattoo machine photograph. Preserve the exact machine identity, silhouette, proportions, viewing angle, grip texture, needle cartridge, adjustment ring, screws, charging port, engraved calibration marks, machining details, and realistic material construction. Recolor only the matte-black machined aluminum body panels to a rich electric cobalt-blue anodized finish with subtle metallic depth and natural tonal variation. Keep the ribbed rubber grip and needle cartridge black, and keep all stainless-steel components silver. The new finish must follow every contour, edge, seam, highlight, and shadow convincingly, with no color bleeding onto adjacent parts. Present the machine as a premium product hero on a warm pale-gray seamless studio surface, upright in the same three-quarter orientation, with a restrained soft-edged shadow beneath it. Use crisp directional lighting from the upper left, controlled highlights on the blue anodized aluminum, clean commercial retouching, accurate neutral color, and generous negative space. Single product only, fully visible, centered slightly below the vertical midpoint. No hands, ink, cables, extra equipment, packaging, decorative props, added logos, captions, borders, or graphic overlays." \
width=880 \
height=1184 \
inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/3e0cdd12-4927-43b8-a183-023297e216e5.jpg{
"taskType": "imageInference",
"taskUUID": "62144e79-32a2-47ac-a79c-c82fbafd7b1a",
"model": "bfl:3@1",
"positivePrompt": "Create a finished portrait-format ecommerce colorway image by editing the supplied tattoo machine photograph. Preserve the exact machine identity, silhouette, proportions, viewing angle, grip texture, needle cartridge, adjustment ring, screws, charging port, engraved calibration marks, machining details, and realistic material construction. Recolor only the matte-black machined aluminum body panels to a rich electric cobalt-blue anodized finish with subtle metallic depth and natural tonal variation. Keep the ribbed rubber grip and needle cartridge black, and keep all stainless-steel components silver. The new finish must follow every contour, edge, seam, highlight, and shadow convincingly, with no color bleeding onto adjacent parts. Present the machine as a premium product hero on a warm pale-gray seamless studio surface, upright in the same three-quarter orientation, with a restrained soft-edged shadow beneath it. Use crisp directional lighting from the upper left, controlled highlights on the blue anodized aluminum, clean commercial retouching, accurate neutral color, and generous negative space. Single product only, fully visible, centered slightly below the vertical midpoint. No hands, ink, cables, extra equipment, packaging, decorative props, added logos, captions, borders, or graphic overlays.",
"width": 880,
"height": 1184,
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/3e0cdd12-4927-43b8-a183-023297e216e5.jpg"
]
}
}{
"taskType": "imageInference",
"taskUUID": "62144e79-32a2-47ac-a79c-c82fbafd7b1a",
"imageUUID": "16cee51b-346b-434c-ab4e-48e9ec2b1b93",
"imageURL": "https://im.runware.ai/image/os/a05d22/ws/3/ii/16cee51b-346b-434c-ab4e-48e9ec2b1b93.jpg",
"seed": 1892653732,
"cost": 0.04
}Kite Archive Harbor Basilica

Transform the reference scene into a grand harbor archive devoted to ceremonial kites, preserving the core building silhouette and waterfront perspective while reimagining the facade with painted sailcloth canopies, suspended geometric kites, braided ropes, lacquered wood kiosks, fluttering catalog tags, and colorful wind-worn banners. Add librarians' ladders visible through tall arches, stacked storage racks for folded kites, polished stone steps scattered with paper scraps and twine, seabirds circling through open vaults, and a breezy atmosphere with rich textural detail. Elegant editorial fantasy, cinematic natural light, intricate materials, dynamic depth, sophisticated color harmony, highly detailed.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'bfl:3@1',
positivePrompt: 'Transform the reference scene into a grand harbor archive devoted to ceremonial kites, preserving the core building silhouette and waterfront perspective while reimagining the facade with painted sailcloth canopies, suspended geometric kites, braided ropes, lacquered wood kiosks, fluttering catalog tags, and colorful wind-worn banners. Add librarians\' ladders visible through tall arches, stacked storage racks for folded kites, polished stone steps scattered with paper scraps and twine, seabirds circling through open vaults, and a breezy atmosphere with rich textural detail. Elegant editorial fantasy, cinematic natural light, intricate materials, dynamic depth, sophisticated color harmony, highly detailed.',
width: 1392,
height: 752,
seed: 52716,
providerSettings: {
bfl: {
promptUpsampling: true,
safetyTolerance: 2
}
},
inputs: {
referenceImages: [
'https://assets.runware.ai/assets/inputs/ae3de299-69eb-4c7d-ac95-982b1ef30dfa.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": "bfl:3@1",
"positivePrompt": "Transform the reference scene into a grand harbor archive devoted to ceremonial kites, preserving the core building silhouette and waterfront perspective while reimagining the facade with painted sailcloth canopies, suspended geometric kites, braided ropes, lacquered wood kiosks, fluttering catalog tags, and colorful wind-worn banners. Add librarians' ladders visible through tall arches, stacked storage racks for folded kites, polished stone steps scattered with paper scraps and twine, seabirds circling through open vaults, and a breezy atmosphere with rich textural detail. Elegant editorial fantasy, cinematic natural light, intricate materials, dynamic depth, sophisticated color harmony, highly detailed.",
"width": 1392,
"height": 752,
"seed": 52716,
"providerSettings": {
"bfl": {
"promptUpsampling": True,
"safetyTolerance": 2
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/ae3de299-69eb-4c7d-ac95-982b1ef30dfa.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": "2a605473-fd05-4b0a-88ca-ef26ab03aba5",
"model": "bfl:3@1",
"positivePrompt": "Transform the reference scene into a grand harbor archive devoted to ceremonial kites, preserving the core building silhouette and waterfront perspective while reimagining the facade with painted sailcloth canopies, suspended geometric kites, braided ropes, lacquered wood kiosks, fluttering catalog tags, and colorful wind-worn banners. Add librarians' ladders visible through tall arches, stacked storage racks for folded kites, polished stone steps scattered with paper scraps and twine, seabirds circling through open vaults, and a breezy atmosphere with rich textural detail. Elegant editorial fantasy, cinematic natural light, intricate materials, dynamic depth, sophisticated color harmony, highly detailed.",
"width": 1392,
"height": 752,
"seed": 52716,
"providerSettings": {
"bfl": {
"promptUpsampling": true,
"safetyTolerance": 2
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/ae3de299-69eb-4c7d-ac95-982b1ef30dfa.jpg"
]
}
}
]'runware run bfl:3@1 \
positivePrompt="Transform the reference scene into a grand harbor archive devoted to ceremonial kites, preserving the core building silhouette and waterfront perspective while reimagining the facade with painted sailcloth canopies, suspended geometric kites, braided ropes, lacquered wood kiosks, fluttering catalog tags, and colorful wind-worn banners. Add librarians' ladders visible through tall arches, stacked storage racks for folded kites, polished stone steps scattered with paper scraps and twine, seabirds circling through open vaults, and a breezy atmosphere with rich textural detail. Elegant editorial fantasy, cinematic natural light, intricate materials, dynamic depth, sophisticated color harmony, highly detailed." \
width=1392 \
height=752 \
seed=52716 \
providerSettings.bfl.promptUpsampling=true \
providerSettings.bfl.safetyTolerance=2 \
inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/ae3de299-69eb-4c7d-ac95-982b1ef30dfa.jpg{
"taskType": "imageInference",
"taskUUID": "2a605473-fd05-4b0a-88ca-ef26ab03aba5",
"model": "bfl:3@1",
"positivePrompt": "Transform the reference scene into a grand harbor archive devoted to ceremonial kites, preserving the core building silhouette and waterfront perspective while reimagining the facade with painted sailcloth canopies, suspended geometric kites, braided ropes, lacquered wood kiosks, fluttering catalog tags, and colorful wind-worn banners. Add librarians' ladders visible through tall arches, stacked storage racks for folded kites, polished stone steps scattered with paper scraps and twine, seabirds circling through open vaults, and a breezy atmosphere with rich textural detail. Elegant editorial fantasy, cinematic natural light, intricate materials, dynamic depth, sophisticated color harmony, highly detailed.",
"width": 1392,
"height": 752,
"seed": 52716,
"providerSettings": {
"bfl": {
"promptUpsampling": true,
"safetyTolerance": 2
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/ae3de299-69eb-4c7d-ac95-982b1ef30dfa.jpg"
]
}
}{
"taskType": "imageInference",
"taskUUID": "2a605473-fd05-4b0a-88ca-ef26ab03aba5",
"imageUUID": "6c196c7f-88ac-45c7-bae2-1cf569f09faf",
"imageURL": "https://im.runware.ai/image/os/a11d13/ws/2/ii/6c196c7f-88ac-45c7-bae2-1cf569f09faf.jpg",
"seed": 52716,
"cost": 0.04
}Copper Viaduct Tea Procession

Transform the reference scene into a lavish alternate-history riverside procession on a grand copper-riveted viaduct above a narrow canal, keeping the wide bridge composition and sense of depth from the reference image. Replace the ordinary pedestrians with elegantly dressed travelers carrying stacked porcelain tea chests, embroidered coats, lacquered parasols, and brass kettles releasing soft steam. The surrounding buildings become layered townhouses with curved glass awnings, hanging ivy, enamel signage, and intricate metal balconies. Add suspended banners in saffron, deep teal, and oxblood, polished wet cobblestones below, drifting vapor, distant boats loaded with crates, and fine atmospheric haze. Visual style: cinematic editorial fantasy, highly detailed textures, sophisticated color harmony, crisp focus, subtle glow, believable materials, dynamic yet refined worldbuilding.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'bfl:3@1',
positivePrompt: 'Transform the reference scene into a lavish alternate-history riverside procession on a grand copper-riveted viaduct above a narrow canal, keeping the wide bridge composition and sense of depth from the reference image. Replace the ordinary pedestrians with elegantly dressed travelers carrying stacked porcelain tea chests, embroidered coats, lacquered parasols, and brass kettles releasing soft steam. The surrounding buildings become layered townhouses with curved glass awnings, hanging ivy, enamel signage, and intricate metal balconies. Add suspended banners in saffron, deep teal, and oxblood, polished wet cobblestones below, drifting vapor, distant boats loaded with crates, and fine atmospheric haze. Visual style: cinematic editorial fantasy, highly detailed textures, sophisticated color harmony, crisp focus, subtle glow, believable materials, dynamic yet refined worldbuilding.',
width: 1568,
height: 672,
seed: 9525,
providerSettings: {
bfl: {
promptUpsampling: true,
safetyTolerance: 2
}
},
inputs: {
referenceImages: [
'https://assets.runware.ai/assets/inputs/0ef484bc-d181-442e-962a-24f134517e45.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": "bfl:3@1",
"positivePrompt": "Transform the reference scene into a lavish alternate-history riverside procession on a grand copper-riveted viaduct above a narrow canal, keeping the wide bridge composition and sense of depth from the reference image. Replace the ordinary pedestrians with elegantly dressed travelers carrying stacked porcelain tea chests, embroidered coats, lacquered parasols, and brass kettles releasing soft steam. The surrounding buildings become layered townhouses with curved glass awnings, hanging ivy, enamel signage, and intricate metal balconies. Add suspended banners in saffron, deep teal, and oxblood, polished wet cobblestones below, drifting vapor, distant boats loaded with crates, and fine atmospheric haze. Visual style: cinematic editorial fantasy, highly detailed textures, sophisticated color harmony, crisp focus, subtle glow, believable materials, dynamic yet refined worldbuilding.",
"width": 1568,
"height": 672,
"seed": 9525,
"providerSettings": {
"bfl": {
"promptUpsampling": True,
"safetyTolerance": 2
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/0ef484bc-d181-442e-962a-24f134517e45.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": "bc987cca-4dbb-4025-bc27-4a29ca54d91b",
"model": "bfl:3@1",
"positivePrompt": "Transform the reference scene into a lavish alternate-history riverside procession on a grand copper-riveted viaduct above a narrow canal, keeping the wide bridge composition and sense of depth from the reference image. Replace the ordinary pedestrians with elegantly dressed travelers carrying stacked porcelain tea chests, embroidered coats, lacquered parasols, and brass kettles releasing soft steam. The surrounding buildings become layered townhouses with curved glass awnings, hanging ivy, enamel signage, and intricate metal balconies. Add suspended banners in saffron, deep teal, and oxblood, polished wet cobblestones below, drifting vapor, distant boats loaded with crates, and fine atmospheric haze. Visual style: cinematic editorial fantasy, highly detailed textures, sophisticated color harmony, crisp focus, subtle glow, believable materials, dynamic yet refined worldbuilding.",
"width": 1568,
"height": 672,
"seed": 9525,
"providerSettings": {
"bfl": {
"promptUpsampling": true,
"safetyTolerance": 2
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/0ef484bc-d181-442e-962a-24f134517e45.jpg"
]
}
}
]'runware run bfl:3@1 \
positivePrompt="Transform the reference scene into a lavish alternate-history riverside procession on a grand copper-riveted viaduct above a narrow canal, keeping the wide bridge composition and sense of depth from the reference image. Replace the ordinary pedestrians with elegantly dressed travelers carrying stacked porcelain tea chests, embroidered coats, lacquered parasols, and brass kettles releasing soft steam. The surrounding buildings become layered townhouses with curved glass awnings, hanging ivy, enamel signage, and intricate metal balconies. Add suspended banners in saffron, deep teal, and oxblood, polished wet cobblestones below, drifting vapor, distant boats loaded with crates, and fine atmospheric haze. Visual style: cinematic editorial fantasy, highly detailed textures, sophisticated color harmony, crisp focus, subtle glow, believable materials, dynamic yet refined worldbuilding." \
width=1568 \
height=672 \
seed=9525 \
providerSettings.bfl.promptUpsampling=true \
providerSettings.bfl.safetyTolerance=2 \
inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/0ef484bc-d181-442e-962a-24f134517e45.jpg{
"taskType": "imageInference",
"taskUUID": "bc987cca-4dbb-4025-bc27-4a29ca54d91b",
"model": "bfl:3@1",
"positivePrompt": "Transform the reference scene into a lavish alternate-history riverside procession on a grand copper-riveted viaduct above a narrow canal, keeping the wide bridge composition and sense of depth from the reference image. Replace the ordinary pedestrians with elegantly dressed travelers carrying stacked porcelain tea chests, embroidered coats, lacquered parasols, and brass kettles releasing soft steam. The surrounding buildings become layered townhouses with curved glass awnings, hanging ivy, enamel signage, and intricate metal balconies. Add suspended banners in saffron, deep teal, and oxblood, polished wet cobblestones below, drifting vapor, distant boats loaded with crates, and fine atmospheric haze. Visual style: cinematic editorial fantasy, highly detailed textures, sophisticated color harmony, crisp focus, subtle glow, believable materials, dynamic yet refined worldbuilding.",
"width": 1568,
"height": 672,
"seed": 9525,
"providerSettings": {
"bfl": {
"promptUpsampling": true,
"safetyTolerance": 2
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/0ef484bc-d181-442e-962a-24f134517e45.jpg"
]
}
}{
"taskType": "imageInference",
"taskUUID": "bc987cca-4dbb-4025-bc27-4a29ca54d91b",
"imageUUID": "fdd6991e-a6f1-4488-93c4-34c538869331",
"imageURL": "https://im.runware.ai/image/os/a15d18/ws/2/ii/fdd6991e-a6f1-4488-93c4-34c538869331.jpg",
"seed": 9525,
"cost": 0.04
}Rainy Glasshouse Fashion Tableau

Transform the reference subject into a high-fashion editorial scene inside a vast Victorian glasshouse during a thunderstorm, preserving facial identity, silver hair, and elegant silhouette. Surround the subject with towering tropical leaves, wet stone flooring, scattered fallen petals, and misted glass panes streaked with rain. Outfit evolved into sculptural avant-garde couture in black lacquered fabric with subtle emerald accents, dramatic tailoring, refined textures, and striking accessories. Cinematic natural storm light, reflections in puddles, soft fog, deep contrast, sophisticated composition, premium magazine aesthetic, ultra-detailed materials, poised and enigmatic mood.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'bfl:3@1',
positivePrompt: 'Transform the reference subject into a high-fashion editorial scene inside a vast Victorian glasshouse during a thunderstorm, preserving facial identity, silver hair, and elegant silhouette. Surround the subject with towering tropical leaves, wet stone flooring, scattered fallen petals, and misted glass panes streaked with rain. Outfit evolved into sculptural avant-garde couture in black lacquered fabric with subtle emerald accents, dramatic tailoring, refined textures, and striking accessories. Cinematic natural storm light, reflections in puddles, soft fog, deep contrast, sophisticated composition, premium magazine aesthetic, ultra-detailed materials, poised and enigmatic mood.',
width: 1248,
height: 832,
seed: 36839,
providerSettings: {
bfl: {
promptUpsampling: true,
safetyTolerance: 2
}
},
inputs: {
referenceImages: [
'https://assets.runware.ai/assets/inputs/140ed1d5-6a41-46c7-ab9e-527a23e4524d.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": "bfl:3@1",
"positivePrompt": "Transform the reference subject into a high-fashion editorial scene inside a vast Victorian glasshouse during a thunderstorm, preserving facial identity, silver hair, and elegant silhouette. Surround the subject with towering tropical leaves, wet stone flooring, scattered fallen petals, and misted glass panes streaked with rain. Outfit evolved into sculptural avant-garde couture in black lacquered fabric with subtle emerald accents, dramatic tailoring, refined textures, and striking accessories. Cinematic natural storm light, reflections in puddles, soft fog, deep contrast, sophisticated composition, premium magazine aesthetic, ultra-detailed materials, poised and enigmatic mood.",
"width": 1248,
"height": 832,
"seed": 36839,
"providerSettings": {
"bfl": {
"promptUpsampling": True,
"safetyTolerance": 2
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/140ed1d5-6a41-46c7-ab9e-527a23e4524d.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": "af0712bf-ab5d-4266-9268-2ad1258a3ac1",
"model": "bfl:3@1",
"positivePrompt": "Transform the reference subject into a high-fashion editorial scene inside a vast Victorian glasshouse during a thunderstorm, preserving facial identity, silver hair, and elegant silhouette. Surround the subject with towering tropical leaves, wet stone flooring, scattered fallen petals, and misted glass panes streaked with rain. Outfit evolved into sculptural avant-garde couture in black lacquered fabric with subtle emerald accents, dramatic tailoring, refined textures, and striking accessories. Cinematic natural storm light, reflections in puddles, soft fog, deep contrast, sophisticated composition, premium magazine aesthetic, ultra-detailed materials, poised and enigmatic mood.",
"width": 1248,
"height": 832,
"seed": 36839,
"providerSettings": {
"bfl": {
"promptUpsampling": true,
"safetyTolerance": 2
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/140ed1d5-6a41-46c7-ab9e-527a23e4524d.jpg"
]
}
}
]'runware run bfl:3@1 \
positivePrompt="Transform the reference subject into a high-fashion editorial scene inside a vast Victorian glasshouse during a thunderstorm, preserving facial identity, silver hair, and elegant silhouette. Surround the subject with towering tropical leaves, wet stone flooring, scattered fallen petals, and misted glass panes streaked with rain. Outfit evolved into sculptural avant-garde couture in black lacquered fabric with subtle emerald accents, dramatic tailoring, refined textures, and striking accessories. Cinematic natural storm light, reflections in puddles, soft fog, deep contrast, sophisticated composition, premium magazine aesthetic, ultra-detailed materials, poised and enigmatic mood." \
width=1248 \
height=832 \
seed=36839 \
providerSettings.bfl.promptUpsampling=true \
providerSettings.bfl.safetyTolerance=2 \
inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/140ed1d5-6a41-46c7-ab9e-527a23e4524d.jpg{
"taskType": "imageInference",
"taskUUID": "af0712bf-ab5d-4266-9268-2ad1258a3ac1",
"model": "bfl:3@1",
"positivePrompt": "Transform the reference subject into a high-fashion editorial scene inside a vast Victorian glasshouse during a thunderstorm, preserving facial identity, silver hair, and elegant silhouette. Surround the subject with towering tropical leaves, wet stone flooring, scattered fallen petals, and misted glass panes streaked with rain. Outfit evolved into sculptural avant-garde couture in black lacquered fabric with subtle emerald accents, dramatic tailoring, refined textures, and striking accessories. Cinematic natural storm light, reflections in puddles, soft fog, deep contrast, sophisticated composition, premium magazine aesthetic, ultra-detailed materials, poised and enigmatic mood.",
"width": 1248,
"height": 832,
"seed": 36839,
"providerSettings": {
"bfl": {
"promptUpsampling": true,
"safetyTolerance": 2
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/140ed1d5-6a41-46c7-ab9e-527a23e4524d.jpg"
]
}
}{
"taskType": "imageInference",
"taskUUID": "af0712bf-ab5d-4266-9268-2ad1258a3ac1",
"imageUUID": "365ca059-49a9-4bc5-89b4-a72a27b8ad35",
"imageURL": "https://im.runware.ai/image/os/a23d05/ws/2/ii/365ca059-49a9-4bc5-89b4-a72a27b8ad35.jpg",
"seed": 36839,
"cost": 0.04
}Kite Workshop Canal Courtyard

Transform the reference scene into an imaginative artisan courtyard devoted to elaborate kite making beside a narrow canal. Preserve the overall architecture and grounded realism of the space while enriching it with suspended geometric kites, painted silk patterns, reels of vivid thread, folded paper forms, carved bamboo frames, scattered design sketches, and a few craftspeople in practical work clothes. Emphasize tactile materials, layered depth, gentle reflections in the water, subtle color harmony of saffron, indigo, vermilion, and jade, candid documentary photography style, highly detailed but natural, airy atmosphere, premium editorial realism.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'bfl:3@1',
positivePrompt: 'Transform the reference scene into an imaginative artisan courtyard devoted to elaborate kite making beside a narrow canal. Preserve the overall architecture and grounded realism of the space while enriching it with suspended geometric kites, painted silk patterns, reels of vivid thread, folded paper forms, carved bamboo frames, scattered design sketches, and a few craftspeople in practical work clothes. Emphasize tactile materials, layered depth, gentle reflections in the water, subtle color harmony of saffron, indigo, vermilion, and jade, candid documentary photography style, highly detailed but natural, airy atmosphere, premium editorial realism.',
width: 1248,
height: 832,
seed: 16555,
providerSettings: {
bfl: {
promptUpsampling: true,
safetyTolerance: 2
}
},
inputs: {
referenceImages: [
'https://assets.runware.ai/assets/inputs/375cbd1a-ca89-41f9-9d73-1bf814fce3c3.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": "bfl:3@1",
"positivePrompt": "Transform the reference scene into an imaginative artisan courtyard devoted to elaborate kite making beside a narrow canal. Preserve the overall architecture and grounded realism of the space while enriching it with suspended geometric kites, painted silk patterns, reels of vivid thread, folded paper forms, carved bamboo frames, scattered design sketches, and a few craftspeople in practical work clothes. Emphasize tactile materials, layered depth, gentle reflections in the water, subtle color harmony of saffron, indigo, vermilion, and jade, candid documentary photography style, highly detailed but natural, airy atmosphere, premium editorial realism.",
"width": 1248,
"height": 832,
"seed": 16555,
"providerSettings": {
"bfl": {
"promptUpsampling": True,
"safetyTolerance": 2
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/375cbd1a-ca89-41f9-9d73-1bf814fce3c3.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": "95d07b7b-d88e-4a46-91c4-a3a0e19b304c",
"model": "bfl:3@1",
"positivePrompt": "Transform the reference scene into an imaginative artisan courtyard devoted to elaborate kite making beside a narrow canal. Preserve the overall architecture and grounded realism of the space while enriching it with suspended geometric kites, painted silk patterns, reels of vivid thread, folded paper forms, carved bamboo frames, scattered design sketches, and a few craftspeople in practical work clothes. Emphasize tactile materials, layered depth, gentle reflections in the water, subtle color harmony of saffron, indigo, vermilion, and jade, candid documentary photography style, highly detailed but natural, airy atmosphere, premium editorial realism.",
"width": 1248,
"height": 832,
"seed": 16555,
"providerSettings": {
"bfl": {
"promptUpsampling": true,
"safetyTolerance": 2
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/375cbd1a-ca89-41f9-9d73-1bf814fce3c3.jpg"
]
}
}
]'runware run bfl:3@1 \
positivePrompt="Transform the reference scene into an imaginative artisan courtyard devoted to elaborate kite making beside a narrow canal. Preserve the overall architecture and grounded realism of the space while enriching it with suspended geometric kites, painted silk patterns, reels of vivid thread, folded paper forms, carved bamboo frames, scattered design sketches, and a few craftspeople in practical work clothes. Emphasize tactile materials, layered depth, gentle reflections in the water, subtle color harmony of saffron, indigo, vermilion, and jade, candid documentary photography style, highly detailed but natural, airy atmosphere, premium editorial realism." \
width=1248 \
height=832 \
seed=16555 \
providerSettings.bfl.promptUpsampling=true \
providerSettings.bfl.safetyTolerance=2 \
inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/375cbd1a-ca89-41f9-9d73-1bf814fce3c3.jpg{
"taskType": "imageInference",
"taskUUID": "95d07b7b-d88e-4a46-91c4-a3a0e19b304c",
"model": "bfl:3@1",
"positivePrompt": "Transform the reference scene into an imaginative artisan courtyard devoted to elaborate kite making beside a narrow canal. Preserve the overall architecture and grounded realism of the space while enriching it with suspended geometric kites, painted silk patterns, reels of vivid thread, folded paper forms, carved bamboo frames, scattered design sketches, and a few craftspeople in practical work clothes. Emphasize tactile materials, layered depth, gentle reflections in the water, subtle color harmony of saffron, indigo, vermilion, and jade, candid documentary photography style, highly detailed but natural, airy atmosphere, premium editorial realism.",
"width": 1248,
"height": 832,
"seed": 16555,
"providerSettings": {
"bfl": {
"promptUpsampling": true,
"safetyTolerance": 2
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/375cbd1a-ca89-41f9-9d73-1bf814fce3c3.jpg"
]
}
}{
"taskType": "imageInference",
"taskUUID": "95d07b7b-d88e-4a46-91c4-a3a0e19b304c",
"imageUUID": "6080c9fd-b5dd-421f-8633-36f6ade3922a",
"imageURL": "https://im.runware.ai/image/os/a11d13/ws/2/ii/6080c9fd-b5dd-421f-8633-36f6ade3922a.jpg",
"seed": 16555,
"cost": 0.04
}Origami Menagerie Reading Hall

Transform the reference image into a sweeping storybook scene inside a vast reading hall filled with towering bookshelves, suspended paper cranes, rolling ladders, and warm amber skylight. Preserve the folded-paper craftsmanship and sharp crease details of the reference subject, but expand it into an enchanting menagerie of origami creatures gathered among open books and parchment paths. Add depth, delicate texture, floating dust motes, elegant architectural symmetry, and a polished cinematic look with gentle wonder and handcrafted charm.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'bfl:3@1',
positivePrompt: 'Transform the reference image into a sweeping storybook scene inside a vast reading hall filled with towering bookshelves, suspended paper cranes, rolling ladders, and warm amber skylight. Preserve the folded-paper craftsmanship and sharp crease details of the reference subject, but expand it into an enchanting menagerie of origami creatures gathered among open books and parchment paths. Add depth, delicate texture, floating dust motes, elegant architectural symmetry, and a polished cinematic look with gentle wonder and handcrafted charm.',
width: 1248,
height: 832,
seed: 72286,
providerSettings: {
bfl: {
promptUpsampling: true,
safetyTolerance: 2
}
},
inputs: {
referenceImages: [
'https://assets.runware.ai/assets/inputs/30ddb480-f410-48a8-a98c-0ecef464c262.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": "bfl:3@1",
"positivePrompt": "Transform the reference image into a sweeping storybook scene inside a vast reading hall filled with towering bookshelves, suspended paper cranes, rolling ladders, and warm amber skylight. Preserve the folded-paper craftsmanship and sharp crease details of the reference subject, but expand it into an enchanting menagerie of origami creatures gathered among open books and parchment paths. Add depth, delicate texture, floating dust motes, elegant architectural symmetry, and a polished cinematic look with gentle wonder and handcrafted charm.",
"width": 1248,
"height": 832,
"seed": 72286,
"providerSettings": {
"bfl": {
"promptUpsampling": True,
"safetyTolerance": 2
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/30ddb480-f410-48a8-a98c-0ecef464c262.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": "b222c274-95fd-4a9b-924a-5ff05eaacfca",
"model": "bfl:3@1",
"positivePrompt": "Transform the reference image into a sweeping storybook scene inside a vast reading hall filled with towering bookshelves, suspended paper cranes, rolling ladders, and warm amber skylight. Preserve the folded-paper craftsmanship and sharp crease details of the reference subject, but expand it into an enchanting menagerie of origami creatures gathered among open books and parchment paths. Add depth, delicate texture, floating dust motes, elegant architectural symmetry, and a polished cinematic look with gentle wonder and handcrafted charm.",
"width": 1248,
"height": 832,
"seed": 72286,
"providerSettings": {
"bfl": {
"promptUpsampling": true,
"safetyTolerance": 2
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/30ddb480-f410-48a8-a98c-0ecef464c262.jpg"
]
}
}
]'runware run bfl:3@1 \
positivePrompt="Transform the reference image into a sweeping storybook scene inside a vast reading hall filled with towering bookshelves, suspended paper cranes, rolling ladders, and warm amber skylight. Preserve the folded-paper craftsmanship and sharp crease details of the reference subject, but expand it into an enchanting menagerie of origami creatures gathered among open books and parchment paths. Add depth, delicate texture, floating dust motes, elegant architectural symmetry, and a polished cinematic look with gentle wonder and handcrafted charm." \
width=1248 \
height=832 \
seed=72286 \
providerSettings.bfl.promptUpsampling=true \
providerSettings.bfl.safetyTolerance=2 \
inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/30ddb480-f410-48a8-a98c-0ecef464c262.jpg{
"taskType": "imageInference",
"taskUUID": "b222c274-95fd-4a9b-924a-5ff05eaacfca",
"model": "bfl:3@1",
"positivePrompt": "Transform the reference image into a sweeping storybook scene inside a vast reading hall filled with towering bookshelves, suspended paper cranes, rolling ladders, and warm amber skylight. Preserve the folded-paper craftsmanship and sharp crease details of the reference subject, but expand it into an enchanting menagerie of origami creatures gathered among open books and parchment paths. Add depth, delicate texture, floating dust motes, elegant architectural symmetry, and a polished cinematic look with gentle wonder and handcrafted charm.",
"width": 1248,
"height": 832,
"seed": 72286,
"providerSettings": {
"bfl": {
"promptUpsampling": true,
"safetyTolerance": 2
}
},
"inputs": {
"referenceImages": [
"https://assets.runware.ai/assets/inputs/30ddb480-f410-48a8-a98c-0ecef464c262.jpg"
]
}
}{
"taskType": "imageInference",
"taskUUID": "b222c274-95fd-4a9b-924a-5ff05eaacfca",
"imageUUID": "c1d6e5f3-f3b0-414b-81b7-d05e65ee4197",
"imageURL": "https://im.runware.ai/image/os/a15d18/ws/2/ii/c1d6e5f3-f3b0-414b-81b7-d05e65ee4197.jpg",
"seed": 72286,
"cost": 0.04
}