MODEL IDbytedance:seedream@5.0-lite
live

Seedream 5.0 Lite

ByteDance
by ByteDance

Seedream 5.0 Lite is an advanced image generation model from ByteDance that produces high-quality still images from text prompts while providing flexibility for editing workflows. It is designed to combine expressive creativity with precise control over layout, composition, styles, and details, interpreting nuanced instructions faithfully. Users can incorporate a single reference image to guide generation or editing. Integrated search and reasoning features let the model visualize real-time trends and domain information in the output.

Seedream 5.0 Lite
text-to-image

Cryogenic Glove Laboratory Campaign Still

Cryogenic Glove Laboratory Campaign Still

Premium commercial product photograph for a cryogenic PPE manufacturer, square composition. Close three-quarter view of a seed-bank technician wearing one oversized cryogenic safety gauntlet, the glove as the unmistakable hero product: matte pearl-white insulated shell, articulated fingers, quilted thermal panels, reinforced cobalt-blue palm and fingertips, extra-long protective cuff with a clean adjustable strap. The gloved hand carefully holds a small frost-covered seed vial above an open stainless-steel cryogenic storage tank. Accurate hand anatomy and a physically plausible grip. The technician wears a minimal white cleanroom suit and clear face shield, softly out of focus behind the product. Working agricultural gene-vault laboratory with orderly racks of preserved seed samples receding into the background, cold vapor curling around the cuff, tiny ice crystals catching the light. Crisp cyan laboratory illumination contrasted with one restrained amber safety light, polished steel reflections, precise clinical atmosphere, sophisticated science-forward art direction. Sharp tactile material detail on the glove, shallow depth of field, controlled studio-quality lighting within a real environment, generous negative space, no logos, no brand names, no lettering, no interface, no additional hands or gloves.

import { createClient } from '@runware/sdk'

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

const [result] = await client.run({
  model: 'bytedance:seedream@5.0-lite',
  positivePrompt: 'Premium commercial product photograph for a cryogenic PPE manufacturer, square composition. Close three-quarter view of a seed-bank technician wearing one oversized cryogenic safety gauntlet, the glove as the unmistakable hero product: matte pearl-white insulated shell, articulated fingers, quilted thermal panels, reinforced cobalt-blue palm and fingertips, extra-long protective cuff with a clean adjustable strap. The gloved hand carefully holds a small frost-covered seed vial above an open stainless-steel cryogenic storage tank. Accurate hand anatomy and a physically plausible grip. The technician wears a minimal white cleanroom suit and clear face shield, softly out of focus behind the product. Working agricultural gene-vault laboratory with orderly racks of preserved seed samples receding into the background, cold vapor curling around the cuff, tiny ice crystals catching the light. Crisp cyan laboratory illumination contrasted with one restrained amber safety light, polished steel reflections, precise clinical atmosphere, sophisticated science-forward art direction. Sharp tactile material detail on the glove, shallow depth of field, controlled studio-quality lighting within a real environment, generous negative space, no logos, no brand names, no lettering, no interface, no additional hands or gloves.',
  width: 2048,
  height: 2048
})
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": "bytedance:seedream@5.0-lite",
            "positivePrompt": "Premium commercial product photograph for a cryogenic PPE manufacturer, square composition. Close three-quarter view of a seed-bank technician wearing one oversized cryogenic safety gauntlet, the glove as the unmistakable hero product: matte pearl-white insulated shell, articulated fingers, quilted thermal panels, reinforced cobalt-blue palm and fingertips, extra-long protective cuff with a clean adjustable strap. The gloved hand carefully holds a small frost-covered seed vial above an open stainless-steel cryogenic storage tank. Accurate hand anatomy and a physically plausible grip. The technician wears a minimal white cleanroom suit and clear face shield, softly out of focus behind the product. Working agricultural gene-vault laboratory with orderly racks of preserved seed samples receding into the background, cold vapor curling around the cuff, tiny ice crystals catching the light. Crisp cyan laboratory illumination contrasted with one restrained amber safety light, polished steel reflections, precise clinical atmosphere, sophisticated science-forward art direction. Sharp tactile material detail on the glove, shallow depth of field, controlled studio-quality lighting within a real environment, generous negative space, no logos, no brand names, no lettering, no interface, no additional hands or gloves.",
            "width": 2048,
            "height": 2048
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "imageInference",
      "taskUUID": "af49412e-6898-4f0a-8b4b-ee1a2a628c2c",
      "model": "bytedance:seedream@5.0-lite",
      "positivePrompt": "Premium commercial product photograph for a cryogenic PPE manufacturer, square composition. Close three-quarter view of a seed-bank technician wearing one oversized cryogenic safety gauntlet, the glove as the unmistakable hero product: matte pearl-white insulated shell, articulated fingers, quilted thermal panels, reinforced cobalt-blue palm and fingertips, extra-long protective cuff with a clean adjustable strap. The gloved hand carefully holds a small frost-covered seed vial above an open stainless-steel cryogenic storage tank. Accurate hand anatomy and a physically plausible grip. The technician wears a minimal white cleanroom suit and clear face shield, softly out of focus behind the product. Working agricultural gene-vault laboratory with orderly racks of preserved seed samples receding into the background, cold vapor curling around the cuff, tiny ice crystals catching the light. Crisp cyan laboratory illumination contrasted with one restrained amber safety light, polished steel reflections, precise clinical atmosphere, sophisticated science-forward art direction. Sharp tactile material detail on the glove, shallow depth of field, controlled studio-quality lighting within a real environment, generous negative space, no logos, no brand names, no lettering, no interface, no additional hands or gloves.",
      "width": 2048,
      "height": 2048
    }
  ]'
runware run bytedance:seedream@5.0-lite \
  positivePrompt="Premium commercial product photograph for a cryogenic PPE manufacturer, square composition. Close three-quarter view of a seed-bank technician wearing one oversized cryogenic safety gauntlet, the glove as the unmistakable hero product: matte pearl-white insulated shell, articulated fingers, quilted thermal panels, reinforced cobalt-blue palm and fingertips, extra-long protective cuff with a clean adjustable strap. The gloved hand carefully holds a small frost-covered seed vial above an open stainless-steel cryogenic storage tank. Accurate hand anatomy and a physically plausible grip. The technician wears a minimal white cleanroom suit and clear face shield, softly out of focus behind the product. Working agricultural gene-vault laboratory with orderly racks of preserved seed samples receding into the background, cold vapor curling around the cuff, tiny ice crystals catching the light. Crisp cyan laboratory illumination contrasted with one restrained amber safety light, polished steel reflections, precise clinical atmosphere, sophisticated science-forward art direction. Sharp tactile material detail on the glove, shallow depth of field, controlled studio-quality lighting within a real environment, generous negative space, no logos, no brand names, no lettering, no interface, no additional hands or gloves." \
  width=2048 \
  height=2048
{
  "taskType": "imageInference",
  "taskUUID": "af49412e-6898-4f0a-8b4b-ee1a2a628c2c",
  "model": "bytedance:seedream@5.0-lite",
  "positivePrompt": "Premium commercial product photograph for a cryogenic PPE manufacturer, square composition. Close three-quarter view of a seed-bank technician wearing one oversized cryogenic safety gauntlet, the glove as the unmistakable hero product: matte pearl-white insulated shell, articulated fingers, quilted thermal panels, reinforced cobalt-blue palm and fingertips, extra-long protective cuff with a clean adjustable strap. The gloved hand carefully holds a small frost-covered seed vial above an open stainless-steel cryogenic storage tank. Accurate hand anatomy and a physically plausible grip. The technician wears a minimal white cleanroom suit and clear face shield, softly out of focus behind the product. Working agricultural gene-vault laboratory with orderly racks of preserved seed samples receding into the background, cold vapor curling around the cuff, tiny ice crystals catching the light. Crisp cyan laboratory illumination contrasted with one restrained amber safety light, polished steel reflections, precise clinical atmosphere, sophisticated science-forward art direction. Sharp tactile material detail on the glove, shallow depth of field, controlled studio-quality lighting within a real environment, generous negative space, no logos, no brand names, no lettering, no interface, no additional hands or gloves.",
  "width": 2048,
  "height": 2048
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "af49412e-6898-4f0a-8b4b-ee1a2a628c2c",
  "imageUUID": "5aed1e6c-1713-441b-9232-97d2ecb2908c",
  "imageURL": "https://im.runware.ai/image/os/a02d21/ws/3/ii/5aed1e6c-1713-441b-9232-97d2ecb2908c.jpg",
  "seed": 1655816339,
  "cost": 0.035
}
text-to-image

Oyster Farm Radio Lifestyle Photograph

Oyster Farm Radio Lifestyle Photograph

Premium documentary-style product lifestyle photograph for a manufacturer of rugged marine communication equipment. Hero subject: a compact, unbranded black handheld VHF marine radio with a long antenna, tactile controls, waterproof casing, speaker grille, belt clip, and a few realistic beads of seawater. Place it upright in the foreground on the chipped turquoise gunwale of a working aluminum oyster-farm skiff. Behind it, slightly out of focus, an oyster farmer in orange waterproof bib overalls and heavy rubber gloves hauls a dripping wire oyster cage from cold estuary water. Include wet ropes, a galvanized sorting tray, rough oyster shells, and distant rows of aquaculture floats to establish the industry without cluttering the hero product. Blue-gray dawn fog, pale peach light breaking along the horizon, cool sea spray, authentic working-boat wear, quiet resilient mood. Low three-quarter camera angle close to the gunwale, square composition, radio large and sharply resolved near the lower-center intersection, worker providing context in the upper background, natural depth of field, crisp water droplets, restrained teal, slate, rust-orange, and silver palette. Photorealistic commercial location photography with believable materials, subtle 35mm grain, controlled highlights, no dramatic fantasy effects. No logos, brand names, captions, labels, borders, packaging, or interface elements.

import { createClient } from '@runware/sdk'

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

const [result] = await client.run({
  model: 'bytedance:seedream@5.0-lite',
  positivePrompt: 'Premium documentary-style product lifestyle photograph for a manufacturer of rugged marine communication equipment. Hero subject: a compact, unbranded black handheld VHF marine radio with a long antenna, tactile controls, waterproof casing, speaker grille, belt clip, and a few realistic beads of seawater. Place it upright in the foreground on the chipped turquoise gunwale of a working aluminum oyster-farm skiff. Behind it, slightly out of focus, an oyster farmer in orange waterproof bib overalls and heavy rubber gloves hauls a dripping wire oyster cage from cold estuary water. Include wet ropes, a galvanized sorting tray, rough oyster shells, and distant rows of aquaculture floats to establish the industry without cluttering the hero product. Blue-gray dawn fog, pale peach light breaking along the horizon, cool sea spray, authentic working-boat wear, quiet resilient mood. Low three-quarter camera angle close to the gunwale, square composition, radio large and sharply resolved near the lower-center intersection, worker providing context in the upper background, natural depth of field, crisp water droplets, restrained teal, slate, rust-orange, and silver palette. Photorealistic commercial location photography with believable materials, subtle 35mm grain, controlled highlights, no dramatic fantasy effects. No logos, brand names, captions, labels, borders, packaging, or interface elements.',
  width: 2048,
  height: 2048
})
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": "bytedance:seedream@5.0-lite",
            "positivePrompt": "Premium documentary-style product lifestyle photograph for a manufacturer of rugged marine communication equipment. Hero subject: a compact, unbranded black handheld VHF marine radio with a long antenna, tactile controls, waterproof casing, speaker grille, belt clip, and a few realistic beads of seawater. Place it upright in the foreground on the chipped turquoise gunwale of a working aluminum oyster-farm skiff. Behind it, slightly out of focus, an oyster farmer in orange waterproof bib overalls and heavy rubber gloves hauls a dripping wire oyster cage from cold estuary water. Include wet ropes, a galvanized sorting tray, rough oyster shells, and distant rows of aquaculture floats to establish the industry without cluttering the hero product. Blue-gray dawn fog, pale peach light breaking along the horizon, cool sea spray, authentic working-boat wear, quiet resilient mood. Low three-quarter camera angle close to the gunwale, square composition, radio large and sharply resolved near the lower-center intersection, worker providing context in the upper background, natural depth of field, crisp water droplets, restrained teal, slate, rust-orange, and silver palette. Photorealistic commercial location photography with believable materials, subtle 35mm grain, controlled highlights, no dramatic fantasy effects. No logos, brand names, captions, labels, borders, packaging, or interface elements.",
            "width": 2048,
            "height": 2048
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "imageInference",
      "taskUUID": "d83c0232-ba5c-4396-8706-3c56de77ca14",
      "model": "bytedance:seedream@5.0-lite",
      "positivePrompt": "Premium documentary-style product lifestyle photograph for a manufacturer of rugged marine communication equipment. Hero subject: a compact, unbranded black handheld VHF marine radio with a long antenna, tactile controls, waterproof casing, speaker grille, belt clip, and a few realistic beads of seawater. Place it upright in the foreground on the chipped turquoise gunwale of a working aluminum oyster-farm skiff. Behind it, slightly out of focus, an oyster farmer in orange waterproof bib overalls and heavy rubber gloves hauls a dripping wire oyster cage from cold estuary water. Include wet ropes, a galvanized sorting tray, rough oyster shells, and distant rows of aquaculture floats to establish the industry without cluttering the hero product. Blue-gray dawn fog, pale peach light breaking along the horizon, cool sea spray, authentic working-boat wear, quiet resilient mood. Low three-quarter camera angle close to the gunwale, square composition, radio large and sharply resolved near the lower-center intersection, worker providing context in the upper background, natural depth of field, crisp water droplets, restrained teal, slate, rust-orange, and silver palette. Photorealistic commercial location photography with believable materials, subtle 35mm grain, controlled highlights, no dramatic fantasy effects. No logos, brand names, captions, labels, borders, packaging, or interface elements.",
      "width": 2048,
      "height": 2048
    }
  ]'
runware run bytedance:seedream@5.0-lite \
  positivePrompt="Premium documentary-style product lifestyle photograph for a manufacturer of rugged marine communication equipment. Hero subject: a compact, unbranded black handheld VHF marine radio with a long antenna, tactile controls, waterproof casing, speaker grille, belt clip, and a few realistic beads of seawater. Place it upright in the foreground on the chipped turquoise gunwale of a working aluminum oyster-farm skiff. Behind it, slightly out of focus, an oyster farmer in orange waterproof bib overalls and heavy rubber gloves hauls a dripping wire oyster cage from cold estuary water. Include wet ropes, a galvanized sorting tray, rough oyster shells, and distant rows of aquaculture floats to establish the industry without cluttering the hero product. Blue-gray dawn fog, pale peach light breaking along the horizon, cool sea spray, authentic working-boat wear, quiet resilient mood. Low three-quarter camera angle close to the gunwale, square composition, radio large and sharply resolved near the lower-center intersection, worker providing context in the upper background, natural depth of field, crisp water droplets, restrained teal, slate, rust-orange, and silver palette. Photorealistic commercial location photography with believable materials, subtle 35mm grain, controlled highlights, no dramatic fantasy effects. No logos, brand names, captions, labels, borders, packaging, or interface elements." \
  width=2048 \
  height=2048
{
  "taskType": "imageInference",
  "taskUUID": "d83c0232-ba5c-4396-8706-3c56de77ca14",
  "model": "bytedance:seedream@5.0-lite",
  "positivePrompt": "Premium documentary-style product lifestyle photograph for a manufacturer of rugged marine communication equipment. Hero subject: a compact, unbranded black handheld VHF marine radio with a long antenna, tactile controls, waterproof casing, speaker grille, belt clip, and a few realistic beads of seawater. Place it upright in the foreground on the chipped turquoise gunwale of a working aluminum oyster-farm skiff. Behind it, slightly out of focus, an oyster farmer in orange waterproof bib overalls and heavy rubber gloves hauls a dripping wire oyster cage from cold estuary water. Include wet ropes, a galvanized sorting tray, rough oyster shells, and distant rows of aquaculture floats to establish the industry without cluttering the hero product. Blue-gray dawn fog, pale peach light breaking along the horizon, cool sea spray, authentic working-boat wear, quiet resilient mood. Low three-quarter camera angle close to the gunwale, square composition, radio large and sharply resolved near the lower-center intersection, worker providing context in the upper background, natural depth of field, crisp water droplets, restrained teal, slate, rust-orange, and silver palette. Photorealistic commercial location photography with believable materials, subtle 35mm grain, controlled highlights, no dramatic fantasy effects. No logos, brand names, captions, labels, borders, packaging, or interface elements.",
  "width": 2048,
  "height": 2048
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "d83c0232-ba5c-4396-8706-3c56de77ca14",
  "imageUUID": "2a40f545-630e-40f8-8cbf-a9007b6023a7",
  "imageURL": "https://im.runware.ai/image/os/a06dlim3/ws/3/ii/2a40f545-630e-40f8-8cbf-a9007b6023a7.jpg",
  "seed": 1102730714,
  "cost": 0.035
}
reference-to-image

Estuary Sound Festival Poster

Estuary Sound Festival Poster

Create a finished full-bleed landscape festival poster, not a poster mockup. Design an identity for UNDERCURRENT, an experimental estuary sound and light festival. Use reference image 1 for the recognizable architecture, low horizontal viewpoint, repeating floodgates, exposed tidal channels, and immense industrial scale. Use reference image 2 for the chartreuse phosphor glow, sonar sweep geometry, waveform textures, black glass depth, and small safety-orange accents. Fuse both references into one cohesive graphic image: the tidal barrier becomes a near-black architectural silhouette while luminous sonar rings and hydrophone waveforms travel through the water and sky like measured currents. Add restrained halftone grain, registration marks, contour lines, and the tactile character of a three-color screen print on warm bone stock. Palette limited to tar black, electric chartreuse, safety orange, and warm bone. Strong asymmetric International Typographic Style layout with generous negative space and precise alignment. Include large, crisp, correctly spelled condensed sans-serif display lettering: “UNDERCURRENT”. Secondary text: “ESTUARY SOUND + LIGHT”. Event details: “18–19 SEPTEMBER 2026” and “TILBURY TIDAL BASIN”. Small footer line: “LIVE HYDROPHONES • MODULAR SYNTHS • NIGHT FERRIES”. Keep all typography legible, intentional, and integrated into the composition. Cerebral, nocturnal, industrial, urgent, premium cultural-event art direction; no logos, no extra words, no frame, no wall, no people in the foreground.

import { createClient } from '@runware/sdk'

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

const [result] = await client.run({
  model: 'bytedance:seedream@5.0-lite',
  positivePrompt: 'Create a finished full-bleed landscape festival poster, not a poster mockup. Design an identity for UNDERCURRENT, an experimental estuary sound and light festival. Use reference image 1 for the recognizable architecture, low horizontal viewpoint, repeating floodgates, exposed tidal channels, and immense industrial scale. Use reference image 2 for the chartreuse phosphor glow, sonar sweep geometry, waveform textures, black glass depth, and small safety-orange accents. Fuse both references into one cohesive graphic image: the tidal barrier becomes a near-black architectural silhouette while luminous sonar rings and hydrophone waveforms travel through the water and sky like measured currents. Add restrained halftone grain, registration marks, contour lines, and the tactile character of a three-color screen print on warm bone stock. Palette limited to tar black, electric chartreuse, safety orange, and warm bone. Strong asymmetric International Typographic Style layout with generous negative space and precise alignment. Include large, crisp, correctly spelled condensed sans-serif display lettering: “UNDERCURRENT”. Secondary text: “ESTUARY SOUND + LIGHT”. Event details: “18–19 SEPTEMBER 2026” and “TILBURY TIDAL BASIN”. Small footer line: “LIVE HYDROPHONES • MODULAR SYNTHS • NIGHT FERRIES”. Keep all typography legible, intentional, and integrated into the composition. Cerebral, nocturnal, industrial, urgent, premium cultural-event art direction; no logos, no extra words, no frame, no wall, no people in the foreground.',
  width: 2304,
  height: 1728,
  inputs: {
    referenceImages: [
      'https://assets.runware.ai/assets/inputs/b252dbb2-fc6f-49c4-ad6e-3365d2769d36.jpg',
      'https://assets.runware.ai/assets/inputs/cdcd018b-e61c-4258-814a-4467402ca79e.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": "bytedance:seedream@5.0-lite",
            "positivePrompt": "Create a finished full-bleed landscape festival poster, not a poster mockup. Design an identity for UNDERCURRENT, an experimental estuary sound and light festival. Use reference image 1 for the recognizable architecture, low horizontal viewpoint, repeating floodgates, exposed tidal channels, and immense industrial scale. Use reference image 2 for the chartreuse phosphor glow, sonar sweep geometry, waveform textures, black glass depth, and small safety-orange accents. Fuse both references into one cohesive graphic image: the tidal barrier becomes a near-black architectural silhouette while luminous sonar rings and hydrophone waveforms travel through the water and sky like measured currents. Add restrained halftone grain, registration marks, contour lines, and the tactile character of a three-color screen print on warm bone stock. Palette limited to tar black, electric chartreuse, safety orange, and warm bone. Strong asymmetric International Typographic Style layout with generous negative space and precise alignment. Include large, crisp, correctly spelled condensed sans-serif display lettering: “UNDERCURRENT”. Secondary text: “ESTUARY SOUND + LIGHT”. Event details: “18–19 SEPTEMBER 2026” and “TILBURY TIDAL BASIN”. Small footer line: “LIVE HYDROPHONES • MODULAR SYNTHS • NIGHT FERRIES”. Keep all typography legible, intentional, and integrated into the composition. Cerebral, nocturnal, industrial, urgent, premium cultural-event art direction; no logos, no extra words, no frame, no wall, no people in the foreground.",
            "width": 2304,
            "height": 1728,
            "inputs": {
                "referenceImages": [
                    "https://assets.runware.ai/assets/inputs/b252dbb2-fc6f-49c4-ad6e-3365d2769d36.jpg",
                    "https://assets.runware.ai/assets/inputs/cdcd018b-e61c-4258-814a-4467402ca79e.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": "7f113de7-5ae0-4073-b993-c355dbea8979",
      "model": "bytedance:seedream@5.0-lite",
      "positivePrompt": "Create a finished full-bleed landscape festival poster, not a poster mockup. Design an identity for UNDERCURRENT, an experimental estuary sound and light festival. Use reference image 1 for the recognizable architecture, low horizontal viewpoint, repeating floodgates, exposed tidal channels, and immense industrial scale. Use reference image 2 for the chartreuse phosphor glow, sonar sweep geometry, waveform textures, black glass depth, and small safety-orange accents. Fuse both references into one cohesive graphic image: the tidal barrier becomes a near-black architectural silhouette while luminous sonar rings and hydrophone waveforms travel through the water and sky like measured currents. Add restrained halftone grain, registration marks, contour lines, and the tactile character of a three-color screen print on warm bone stock. Palette limited to tar black, electric chartreuse, safety orange, and warm bone. Strong asymmetric International Typographic Style layout with generous negative space and precise alignment. Include large, crisp, correctly spelled condensed sans-serif display lettering: “UNDERCURRENT”. Secondary text: “ESTUARY SOUND + LIGHT”. Event details: “18–19 SEPTEMBER 2026” and “TILBURY TIDAL BASIN”. Small footer line: “LIVE HYDROPHONES • MODULAR SYNTHS • NIGHT FERRIES”. Keep all typography legible, intentional, and integrated into the composition. Cerebral, nocturnal, industrial, urgent, premium cultural-event art direction; no logos, no extra words, no frame, no wall, no people in the foreground.",
      "width": 2304,
      "height": 1728,
      "inputs": {
        "referenceImages": [
          "https://assets.runware.ai/assets/inputs/b252dbb2-fc6f-49c4-ad6e-3365d2769d36.jpg",
          "https://assets.runware.ai/assets/inputs/cdcd018b-e61c-4258-814a-4467402ca79e.jpg"
        ]
      }
    }
  ]'
runware run bytedance:seedream@5.0-lite \
  positivePrompt="Create a finished full-bleed landscape festival poster, not a poster mockup. Design an identity for UNDERCURRENT, an experimental estuary sound and light festival. Use reference image 1 for the recognizable architecture, low horizontal viewpoint, repeating floodgates, exposed tidal channels, and immense industrial scale. Use reference image 2 for the chartreuse phosphor glow, sonar sweep geometry, waveform textures, black glass depth, and small safety-orange accents. Fuse both references into one cohesive graphic image: the tidal barrier becomes a near-black architectural silhouette while luminous sonar rings and hydrophone waveforms travel through the water and sky like measured currents. Add restrained halftone grain, registration marks, contour lines, and the tactile character of a three-color screen print on warm bone stock. Palette limited to tar black, electric chartreuse, safety orange, and warm bone. Strong asymmetric International Typographic Style layout with generous negative space and precise alignment. Include large, crisp, correctly spelled condensed sans-serif display lettering: “UNDERCURRENT”. Secondary text: “ESTUARY SOUND + LIGHT”. Event details: “18–19 SEPTEMBER 2026” and “TILBURY TIDAL BASIN”. Small footer line: “LIVE HYDROPHONES • MODULAR SYNTHS • NIGHT FERRIES”. Keep all typography legible, intentional, and integrated into the composition. Cerebral, nocturnal, industrial, urgent, premium cultural-event art direction; no logos, no extra words, no frame, no wall, no people in the foreground." \
  width=2304 \
  height=1728 \
  inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/b252dbb2-fc6f-49c4-ad6e-3365d2769d36.jpg \
  inputs.referenceImages.1=https://assets.runware.ai/assets/inputs/cdcd018b-e61c-4258-814a-4467402ca79e.jpg
{
  "taskType": "imageInference",
  "taskUUID": "7f113de7-5ae0-4073-b993-c355dbea8979",
  "model": "bytedance:seedream@5.0-lite",
  "positivePrompt": "Create a finished full-bleed landscape festival poster, not a poster mockup. Design an identity for UNDERCURRENT, an experimental estuary sound and light festival. Use reference image 1 for the recognizable architecture, low horizontal viewpoint, repeating floodgates, exposed tidal channels, and immense industrial scale. Use reference image 2 for the chartreuse phosphor glow, sonar sweep geometry, waveform textures, black glass depth, and small safety-orange accents. Fuse both references into one cohesive graphic image: the tidal barrier becomes a near-black architectural silhouette while luminous sonar rings and hydrophone waveforms travel through the water and sky like measured currents. Add restrained halftone grain, registration marks, contour lines, and the tactile character of a three-color screen print on warm bone stock. Palette limited to tar black, electric chartreuse, safety orange, and warm bone. Strong asymmetric International Typographic Style layout with generous negative space and precise alignment. Include large, crisp, correctly spelled condensed sans-serif display lettering: “UNDERCURRENT”. Secondary text: “ESTUARY SOUND + LIGHT”. Event details: “18–19 SEPTEMBER 2026” and “TILBURY TIDAL BASIN”. Small footer line: “LIVE HYDROPHONES • MODULAR SYNTHS • NIGHT FERRIES”. Keep all typography legible, intentional, and integrated into the composition. Cerebral, nocturnal, industrial, urgent, premium cultural-event art direction; no logos, no extra words, no frame, no wall, no people in the foreground.",
  "width": 2304,
  "height": 1728,
  "inputs": {
    "referenceImages": [
      "https://assets.runware.ai/assets/inputs/b252dbb2-fc6f-49c4-ad6e-3365d2769d36.jpg",
      "https://assets.runware.ai/assets/inputs/cdcd018b-e61c-4258-814a-4467402ca79e.jpg"
    ]
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "7f113de7-5ae0-4073-b993-c355dbea8979",
  "imageUUID": "4d45d3ad-644e-4cbb-90f1-e3e6bf8f3e9e",
  "imageURL": "https://im.runware.ai/image/os/a06dlim3/ws/4/ii/4d45d3ad-644e-4cbb-90f1-e3e6bf8f3e9e.jpg",
  "seed": 406466969,
  "cost": 0.035
}
Image to Image

Grand Archive Atlas Collage

Grand Archive Atlas Collage

Use all 8 reference images to create a grand encyclopedic interior: a vast circular archive hall where the architecture from the library image forms the main setting, the antique map becomes a monumental central table display, the specimen cabinet contents appear in curated side exhibits, the brass navigation instruments become hero objects in the foreground, the suspended paper birds sweep upward through the composition like a visual guide line, the leather books form layered stacks and open study stations, the celestial mural transforms into the decorated domed ceiling, and the sunlight reference defines the warm directional lighting. Compose a highly detailed, elegant scholarly scene with clear depth, believable perspective, harmonious materials, intricate textures, and a sense of wonder and discovery. Refined editorial fantasy aesthetic, crisp focus, balanced complexity, no people, 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({
  referenceImages: [
    'https://assets.runware.ai/assets/inputs/ab24d614-b558-4b4c-9462-0a946f998598.jpg',
    'https://assets.runware.ai/assets/inputs/15de83e5-5ec3-4f81-b04d-2da68654d95c.jpg',
    'https://assets.runware.ai/assets/inputs/c5fbf3a5-f431-4b93-a688-227e011de6de.jpg',
    'https://assets.runware.ai/assets/inputs/7111e033-445c-411f-88b3-dc85a6bd1a53.jpg',
    'https://assets.runware.ai/assets/inputs/3e89698a-f15a-46fb-836c-de40feeb689a.jpg',
    'https://assets.runware.ai/assets/inputs/ef522faf-7468-4bfc-85ed-610968b11992.jpg',
    'https://assets.runware.ai/assets/inputs/7f7bc8e0-4cb9-4a9b-8111-3997cf676876.jpg',
    'https://assets.runware.ai/assets/inputs/b30f2e2b-ecfc-4c57-8f83-4384b6dca9d8.jpg'
  ],
  model: 'bytedance:seedream@5.0-lite',
  positivePrompt: 'Use all 8 reference images to create a grand encyclopedic interior: a vast circular archive hall where the architecture from the library image forms the main setting, the antique map becomes a monumental central table display, the specimen cabinet contents appear in curated side exhibits, the brass navigation instruments become hero objects in the foreground, the suspended paper birds sweep upward through the composition like a visual guide line, the leather books form layered stacks and open study stations, the celestial mural transforms into the decorated domed ceiling, and the sunlight reference defines the warm directional lighting. Compose a highly detailed, elegant scholarly scene with clear depth, believable perspective, harmonious materials, intricate textures, and a sense of wonder and discovery. Refined editorial fantasy aesthetic, crisp focus, balanced complexity, no people, no text overlays.',
  width: 3456,
  height: 2592,
  providerSettings: {
    bytedance: {
      maxSequentialImages: 1,
      optimizePromptMode: 'standard'
    }
  }
})
import asyncio
import os

from runware import Runware


async def main():
    async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
        results = await client.run({
            "referenceImages": [
                "https://assets.runware.ai/assets/inputs/ab24d614-b558-4b4c-9462-0a946f998598.jpg",
                "https://assets.runware.ai/assets/inputs/15de83e5-5ec3-4f81-b04d-2da68654d95c.jpg",
                "https://assets.runware.ai/assets/inputs/c5fbf3a5-f431-4b93-a688-227e011de6de.jpg",
                "https://assets.runware.ai/assets/inputs/7111e033-445c-411f-88b3-dc85a6bd1a53.jpg",
                "https://assets.runware.ai/assets/inputs/3e89698a-f15a-46fb-836c-de40feeb689a.jpg",
                "https://assets.runware.ai/assets/inputs/ef522faf-7468-4bfc-85ed-610968b11992.jpg",
                "https://assets.runware.ai/assets/inputs/7f7bc8e0-4cb9-4a9b-8111-3997cf676876.jpg",
                "https://assets.runware.ai/assets/inputs/b30f2e2b-ecfc-4c57-8f83-4384b6dca9d8.jpg"
            ],
            "model": "bytedance:seedream@5.0-lite",
            "positivePrompt": "Use all 8 reference images to create a grand encyclopedic interior: a vast circular archive hall where the architecture from the library image forms the main setting, the antique map becomes a monumental central table display, the specimen cabinet contents appear in curated side exhibits, the brass navigation instruments become hero objects in the foreground, the suspended paper birds sweep upward through the composition like a visual guide line, the leather books form layered stacks and open study stations, the celestial mural transforms into the decorated domed ceiling, and the sunlight reference defines the warm directional lighting. Compose a highly detailed, elegant scholarly scene with clear depth, believable perspective, harmonious materials, intricate textures, and a sense of wonder and discovery. Refined editorial fantasy aesthetic, crisp focus, balanced complexity, no people, no text overlays.",
            "width": 3456,
            "height": 2592,
            "providerSettings": {
                "bytedance": {
                    "maxSequentialImages": 1,
                    "optimizePromptMode": "standard"
                }
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "imageInference",
      "taskUUID": "bc852f25-f77c-4406-acb4-d27be1b8a04d",
      "referenceImages": [
        "https://assets.runware.ai/assets/inputs/ab24d614-b558-4b4c-9462-0a946f998598.jpg",
        "https://assets.runware.ai/assets/inputs/15de83e5-5ec3-4f81-b04d-2da68654d95c.jpg",
        "https://assets.runware.ai/assets/inputs/c5fbf3a5-f431-4b93-a688-227e011de6de.jpg",
        "https://assets.runware.ai/assets/inputs/7111e033-445c-411f-88b3-dc85a6bd1a53.jpg",
        "https://assets.runware.ai/assets/inputs/3e89698a-f15a-46fb-836c-de40feeb689a.jpg",
        "https://assets.runware.ai/assets/inputs/ef522faf-7468-4bfc-85ed-610968b11992.jpg",
        "https://assets.runware.ai/assets/inputs/7f7bc8e0-4cb9-4a9b-8111-3997cf676876.jpg",
        "https://assets.runware.ai/assets/inputs/b30f2e2b-ecfc-4c57-8f83-4384b6dca9d8.jpg"
      ],
      "model": "bytedance:seedream@5.0-lite",
      "positivePrompt": "Use all 8 reference images to create a grand encyclopedic interior: a vast circular archive hall where the architecture from the library image forms the main setting, the antique map becomes a monumental central table display, the specimen cabinet contents appear in curated side exhibits, the brass navigation instruments become hero objects in the foreground, the suspended paper birds sweep upward through the composition like a visual guide line, the leather books form layered stacks and open study stations, the celestial mural transforms into the decorated domed ceiling, and the sunlight reference defines the warm directional lighting. Compose a highly detailed, elegant scholarly scene with clear depth, believable perspective, harmonious materials, intricate textures, and a sense of wonder and discovery. Refined editorial fantasy aesthetic, crisp focus, balanced complexity, no people, no text overlays.",
      "width": 3456,
      "height": 2592,
      "providerSettings": {
        "bytedance": {
          "maxSequentialImages": 1,
          "optimizePromptMode": "standard"
        }
      }
    }
  ]'
runware run bytedance:seedream@5.0-lite \
  referenceImages.0=https://assets.runware.ai/assets/inputs/ab24d614-b558-4b4c-9462-0a946f998598.jpg \
  referenceImages.1=https://assets.runware.ai/assets/inputs/15de83e5-5ec3-4f81-b04d-2da68654d95c.jpg \
  referenceImages.2=https://assets.runware.ai/assets/inputs/c5fbf3a5-f431-4b93-a688-227e011de6de.jpg \
  referenceImages.3=https://assets.runware.ai/assets/inputs/7111e033-445c-411f-88b3-dc85a6bd1a53.jpg \
  referenceImages.4=https://assets.runware.ai/assets/inputs/3e89698a-f15a-46fb-836c-de40feeb689a.jpg \
  referenceImages.5=https://assets.runware.ai/assets/inputs/ef522faf-7468-4bfc-85ed-610968b11992.jpg \
  referenceImages.6=https://assets.runware.ai/assets/inputs/7f7bc8e0-4cb9-4a9b-8111-3997cf676876.jpg \
  referenceImages.7=https://assets.runware.ai/assets/inputs/b30f2e2b-ecfc-4c57-8f83-4384b6dca9d8.jpg \
  positivePrompt="Use all 8 reference images to create a grand encyclopedic interior: a vast circular archive hall where the architecture from the library image forms the main setting, the antique map becomes a monumental central table display, the specimen cabinet contents appear in curated side exhibits, the brass navigation instruments become hero objects in the foreground, the suspended paper birds sweep upward through the composition like a visual guide line, the leather books form layered stacks and open study stations, the celestial mural transforms into the decorated domed ceiling, and the sunlight reference defines the warm directional lighting. Compose a highly detailed, elegant scholarly scene with clear depth, believable perspective, harmonious materials, intricate textures, and a sense of wonder and discovery. Refined editorial fantasy aesthetic, crisp focus, balanced complexity, no people, no text overlays." \
  width=3456 \
  height=2592 \
  providerSettings.bytedance.maxSequentialImages=1 \
  providerSettings.bytedance.optimizePromptMode=standard
{
  "taskType": "imageInference",
  "taskUUID": "bc852f25-f77c-4406-acb4-d27be1b8a04d",
  "referenceImages": [
    "https://assets.runware.ai/assets/inputs/ab24d614-b558-4b4c-9462-0a946f998598.jpg",
    "https://assets.runware.ai/assets/inputs/15de83e5-5ec3-4f81-b04d-2da68654d95c.jpg",
    "https://assets.runware.ai/assets/inputs/c5fbf3a5-f431-4b93-a688-227e011de6de.jpg",
    "https://assets.runware.ai/assets/inputs/7111e033-445c-411f-88b3-dc85a6bd1a53.jpg",
    "https://assets.runware.ai/assets/inputs/3e89698a-f15a-46fb-836c-de40feeb689a.jpg",
    "https://assets.runware.ai/assets/inputs/ef522faf-7468-4bfc-85ed-610968b11992.jpg",
    "https://assets.runware.ai/assets/inputs/7f7bc8e0-4cb9-4a9b-8111-3997cf676876.jpg",
    "https://assets.runware.ai/assets/inputs/b30f2e2b-ecfc-4c57-8f83-4384b6dca9d8.jpg"
  ],
  "model": "bytedance:seedream@5.0-lite",
  "positivePrompt": "Use all 8 reference images to create a grand encyclopedic interior: a vast circular archive hall where the architecture from the library image forms the main setting, the antique map becomes a monumental central table display, the specimen cabinet contents appear in curated side exhibits, the brass navigation instruments become hero objects in the foreground, the suspended paper birds sweep upward through the composition like a visual guide line, the leather books form layered stacks and open study stations, the celestial mural transforms into the decorated domed ceiling, and the sunlight reference defines the warm directional lighting. Compose a highly detailed, elegant scholarly scene with clear depth, believable perspective, harmonious materials, intricate textures, and a sense of wonder and discovery. Refined editorial fantasy aesthetic, crisp focus, balanced complexity, no people, no text overlays.",
  "width": 3456,
  "height": 2592,
  "providerSettings": {
    "bytedance": {
      "maxSequentialImages": 1,
      "optimizePromptMode": "standard"
    }
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "bc852f25-f77c-4406-acb4-d27be1b8a04d",
  "imageUUID": "9297f2c1-0545-4430-b8bd-40e8cd8a7d9d",
  "imageURL": "https://im.runware.ai/image/os/a20d05/ws/3/ii/9297f2c1-0545-4430-b8bd-40e8cd8a7d9d.jpg",
  "seed": 33092344,
  "cost": 0.035
}
sequential-images

Four-Stage Compost Inoculant Packaging

Four-Stage Compost Inoculant Packaging

Create a coherent sequence of four separate portrait packaging-design images for COMMON GROUND, a professional microbial composting system used by farms and municipal gardens. Show one tall 1 kg matte gusseted pouch per image, centered in the same straight-on orthographic product view against the same warm gray studio background. Do not make a grid or contact sheet. Maintain identical pouch shape, logo position, typography, information hierarchy, lighting, camera angle, and bold 1970s municipal field-manual art direction throughout the sequence. Each package features a precise screen-printed cross-section illustration of the same compost pile as it visibly progresses through four stages. Image 1: acid-yellow package, fresh leaves and vegetable scraps in the pile, labeled exactly “COMMON GROUND” / “STARTER 01” / “MICROBIAL COMPOST INOCULANT” / “ACTIVATE” / “NET WT 1 KG (2.2 LB).” Image 2: safety-orange package, the same pile now taller and steaming, labeled exactly “COMMON GROUND” / “THERMAL 02” / “MICROBIAL COMPOST INOCULANT” / “HEAT” / “NET WT 1 KG (2.2 LB).” Image 3: saturated cobalt-blue package, the same pile turned into aerated layers with a pitchfork diagram, labeled exactly “COMMON GROUND” / “TURN 03” / “MICROBIAL COMPOST INOCULANT” / “AERATE” / “NET WT 1 KG (2.2 LB).” Image 4: deep forest-green package, the same material transformed into dark crumbly soil with one healthy seedling, labeled exactly “COMMON GROUND” / “CURE 04” / “MICROBIAL COMPOST INOCULANT” / “FINISH” / “NET WT 1 KG (2.2 LB).” Use heavy condensed grotesque typography, simple registration marks, numbered stage tabs, crisp two-color technical diagrams, tactile recycled-paper texture, restrained black ink, and excellent legibility. The progression should feel operational, credible, and shelf-ready rather than whimsical. Premium packaging visualization with realistic folds, subtle edge highlights, soft grounded shadow, no hands, no props, no extra packages, no invented certification seals, no illegible filler copy.

import { createClient } from '@runware/sdk'

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

const [result] = await client.run({
  model: 'bytedance:seedream@5.0-lite',
  positivePrompt: 'Create a coherent sequence of four separate portrait packaging-design images for COMMON GROUND, a professional microbial composting system used by farms and municipal gardens. Show one tall 1 kg matte gusseted pouch per image, centered in the same straight-on orthographic product view against the same warm gray studio background. Do not make a grid or contact sheet. Maintain identical pouch shape, logo position, typography, information hierarchy, lighting, camera angle, and bold 1970s municipal field-manual art direction throughout the sequence. Each package features a precise screen-printed cross-section illustration of the same compost pile as it visibly progresses through four stages.\n\nImage 1: acid-yellow package, fresh leaves and vegetable scraps in the pile, labeled exactly “COMMON GROUND” / “STARTER 01” / “MICROBIAL COMPOST INOCULANT” / “ACTIVATE” / “NET WT 1 KG (2.2 LB).”\nImage 2: safety-orange package, the same pile now taller and steaming, labeled exactly “COMMON GROUND” / “THERMAL 02” / “MICROBIAL COMPOST INOCULANT” / “HEAT” / “NET WT 1 KG (2.2 LB).”\nImage 3: saturated cobalt-blue package, the same pile turned into aerated layers with a pitchfork diagram, labeled exactly “COMMON GROUND” / “TURN 03” / “MICROBIAL COMPOST INOCULANT” / “AERATE” / “NET WT 1 KG (2.2 LB).”\nImage 4: deep forest-green package, the same material transformed into dark crumbly soil with one healthy seedling, labeled exactly “COMMON GROUND” / “CURE 04” / “MICROBIAL COMPOST INOCULANT” / “FINISH” / “NET WT 1 KG (2.2 LB).”\n\nUse heavy condensed grotesque typography, simple registration marks, numbered stage tabs, crisp two-color technical diagrams, tactile recycled-paper texture, restrained black ink, and excellent legibility. The progression should feel operational, credible, and shelf-ready rather than whimsical. Premium packaging visualization with realistic folds, subtle edge highlights, soft grounded shadow, no hands, no props, no extra packages, no invented certification seals, no illegible filler copy.',
  width: 1600,
  height: 2848,
  providerSettings: {
    bytedance: {
      maxSequentialImages: 4
    }
  }
})
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": "bytedance:seedream@5.0-lite",
            "positivePrompt": "Create a coherent sequence of four separate portrait packaging-design images for COMMON GROUND, a professional microbial composting system used by farms and municipal gardens. Show one tall 1 kg matte gusseted pouch per image, centered in the same straight-on orthographic product view against the same warm gray studio background. Do not make a grid or contact sheet. Maintain identical pouch shape, logo position, typography, information hierarchy, lighting, camera angle, and bold 1970s municipal field-manual art direction throughout the sequence. Each package features a precise screen-printed cross-section illustration of the same compost pile as it visibly progresses through four stages.\n\nImage 1: acid-yellow package, fresh leaves and vegetable scraps in the pile, labeled exactly “COMMON GROUND” / “STARTER 01” / “MICROBIAL COMPOST INOCULANT” / “ACTIVATE” / “NET WT 1 KG (2.2 LB).”\nImage 2: safety-orange package, the same pile now taller and steaming, labeled exactly “COMMON GROUND” / “THERMAL 02” / “MICROBIAL COMPOST INOCULANT” / “HEAT” / “NET WT 1 KG (2.2 LB).”\nImage 3: saturated cobalt-blue package, the same pile turned into aerated layers with a pitchfork diagram, labeled exactly “COMMON GROUND” / “TURN 03” / “MICROBIAL COMPOST INOCULANT” / “AERATE” / “NET WT 1 KG (2.2 LB).”\nImage 4: deep forest-green package, the same material transformed into dark crumbly soil with one healthy seedling, labeled exactly “COMMON GROUND” / “CURE 04” / “MICROBIAL COMPOST INOCULANT” / “FINISH” / “NET WT 1 KG (2.2 LB).”\n\nUse heavy condensed grotesque typography, simple registration marks, numbered stage tabs, crisp two-color technical diagrams, tactile recycled-paper texture, restrained black ink, and excellent legibility. The progression should feel operational, credible, and shelf-ready rather than whimsical. Premium packaging visualization with realistic folds, subtle edge highlights, soft grounded shadow, no hands, no props, no extra packages, no invented certification seals, no illegible filler copy.",
            "width": 1600,
            "height": 2848,
            "providerSettings": {
                "bytedance": {
                    "maxSequentialImages": 4
                }
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "imageInference",
      "taskUUID": "36022736-fff5-4180-be83-6b207802801b",
      "model": "bytedance:seedream@5.0-lite",
      "positivePrompt": "Create a coherent sequence of four separate portrait packaging-design images for COMMON GROUND, a professional microbial composting system used by farms and municipal gardens. Show one tall 1 kg matte gusseted pouch per image, centered in the same straight-on orthographic product view against the same warm gray studio background. Do not make a grid or contact sheet. Maintain identical pouch shape, logo position, typography, information hierarchy, lighting, camera angle, and bold 1970s municipal field-manual art direction throughout the sequence. Each package features a precise screen-printed cross-section illustration of the same compost pile as it visibly progresses through four stages.\n\nImage 1: acid-yellow package, fresh leaves and vegetable scraps in the pile, labeled exactly “COMMON GROUND” / “STARTER 01” / “MICROBIAL COMPOST INOCULANT” / “ACTIVATE” / “NET WT 1 KG (2.2 LB).”\nImage 2: safety-orange package, the same pile now taller and steaming, labeled exactly “COMMON GROUND” / “THERMAL 02” / “MICROBIAL COMPOST INOCULANT” / “HEAT” / “NET WT 1 KG (2.2 LB).”\nImage 3: saturated cobalt-blue package, the same pile turned into aerated layers with a pitchfork diagram, labeled exactly “COMMON GROUND” / “TURN 03” / “MICROBIAL COMPOST INOCULANT” / “AERATE” / “NET WT 1 KG (2.2 LB).”\nImage 4: deep forest-green package, the same material transformed into dark crumbly soil with one healthy seedling, labeled exactly “COMMON GROUND” / “CURE 04” / “MICROBIAL COMPOST INOCULANT” / “FINISH” / “NET WT 1 KG (2.2 LB).”\n\nUse heavy condensed grotesque typography, simple registration marks, numbered stage tabs, crisp two-color technical diagrams, tactile recycled-paper texture, restrained black ink, and excellent legibility. The progression should feel operational, credible, and shelf-ready rather than whimsical. Premium packaging visualization with realistic folds, subtle edge highlights, soft grounded shadow, no hands, no props, no extra packages, no invented certification seals, no illegible filler copy.",
      "width": 1600,
      "height": 2848,
      "providerSettings": {
        "bytedance": {
          "maxSequentialImages": 4
        }
      }
    }
  ]'
runware run bytedance:seedream@5.0-lite \
  positivePrompt="Create a coherent sequence of four separate portrait packaging-design images for COMMON GROUND, a professional microbial composting system used by farms and municipal gardens. Show one tall 1 kg matte gusseted pouch per image, centered in the same straight-on orthographic product view against the same warm gray studio background. Do not make a grid or contact sheet. Maintain identical pouch shape, logo position, typography, information hierarchy, lighting, camera angle, and bold 1970s municipal field-manual art direction throughout the sequence. Each package features a precise screen-printed cross-section illustration of the same compost pile as it visibly progresses through four stages.

Image 1: acid-yellow package, fresh leaves and vegetable scraps in the pile, labeled exactly “COMMON GROUND” / “STARTER 01” / “MICROBIAL COMPOST INOCULANT” / “ACTIVATE” / “NET WT 1 KG (2.2 LB).”
Image 2: safety-orange package, the same pile now taller and steaming, labeled exactly “COMMON GROUND” / “THERMAL 02” / “MICROBIAL COMPOST INOCULANT” / “HEAT” / “NET WT 1 KG (2.2 LB).”
Image 3: saturated cobalt-blue package, the same pile turned into aerated layers with a pitchfork diagram, labeled exactly “COMMON GROUND” / “TURN 03” / “MICROBIAL COMPOST INOCULANT” / “AERATE” / “NET WT 1 KG (2.2 LB).”
Image 4: deep forest-green package, the same material transformed into dark crumbly soil with one healthy seedling, labeled exactly “COMMON GROUND” / “CURE 04” / “MICROBIAL COMPOST INOCULANT” / “FINISH” / “NET WT 1 KG (2.2 LB).”

Use heavy condensed grotesque typography, simple registration marks, numbered stage tabs, crisp two-color technical diagrams, tactile recycled-paper texture, restrained black ink, and excellent legibility. The progression should feel operational, credible, and shelf-ready rather than whimsical. Premium packaging visualization with realistic folds, subtle edge highlights, soft grounded shadow, no hands, no props, no extra packages, no invented certification seals, no illegible filler copy." \
  width=1600 \
  height=2848 \
  providerSettings.bytedance.maxSequentialImages=4
{
  "taskType": "imageInference",
  "taskUUID": "36022736-fff5-4180-be83-6b207802801b",
  "model": "bytedance:seedream@5.0-lite",
  "positivePrompt": "Create a coherent sequence of four separate portrait packaging-design images for COMMON GROUND, a professional microbial composting system used by farms and municipal gardens. Show one tall 1 kg matte gusseted pouch per image, centered in the same straight-on orthographic product view against the same warm gray studio background. Do not make a grid or contact sheet. Maintain identical pouch shape, logo position, typography, information hierarchy, lighting, camera angle, and bold 1970s municipal field-manual art direction throughout the sequence. Each package features a precise screen-printed cross-section illustration of the same compost pile as it visibly progresses through four stages.\n\nImage 1: acid-yellow package, fresh leaves and vegetable scraps in the pile, labeled exactly “COMMON GROUND” / “STARTER 01” / “MICROBIAL COMPOST INOCULANT” / “ACTIVATE” / “NET WT 1 KG (2.2 LB).”\nImage 2: safety-orange package, the same pile now taller and steaming, labeled exactly “COMMON GROUND” / “THERMAL 02” / “MICROBIAL COMPOST INOCULANT” / “HEAT” / “NET WT 1 KG (2.2 LB).”\nImage 3: saturated cobalt-blue package, the same pile turned into aerated layers with a pitchfork diagram, labeled exactly “COMMON GROUND” / “TURN 03” / “MICROBIAL COMPOST INOCULANT” / “AERATE” / “NET WT 1 KG (2.2 LB).”\nImage 4: deep forest-green package, the same material transformed into dark crumbly soil with one healthy seedling, labeled exactly “COMMON GROUND” / “CURE 04” / “MICROBIAL COMPOST INOCULANT” / “FINISH” / “NET WT 1 KG (2.2 LB).”\n\nUse heavy condensed grotesque typography, simple registration marks, numbered stage tabs, crisp two-color technical diagrams, tactile recycled-paper texture, restrained black ink, and excellent legibility. The progression should feel operational, credible, and shelf-ready rather than whimsical. Premium packaging visualization with realistic folds, subtle edge highlights, soft grounded shadow, no hands, no props, no extra packages, no invented certification seals, no illegible filler copy.",
  "width": 1600,
  "height": 2848,
  "providerSettings": {
    "bytedance": {
      "maxSequentialImages": 4
    }
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "36022736-fff5-4180-be83-6b207802801b",
  "imageUUID": "65314fb0-ed9b-4bbc-838b-2bbf67e9951a",
  "imageURL": "https://im.runware.ai/image/os/a04d20/ws/4/ii/65314fb0-ed9b-4bbc-838b-2bbf67e9951a.jpg",
  "seed": 452772760,
  "cost": 0.035
}
Text to Image

Clockwork Orchard Wedding Portrait

Clockwork Orchard Wedding Portrait

An elaborate wedding portrait in a fantastical clockwork orchard, a poised couple standing beneath fruit trees whose branches are made of polished brass, copper leaves, and tiny rotating gears. The bride wears an ivory gown with pearl beadwork and structured sleeves, the groom wears a deep plum formal coat with embroidered celestial motifs. Around them hang mechanical pears, glass apples with visible filigree cores, and delicate ribbon streamers caught in a gentle breeze. In the background, guests sit at long pale-wood tables arranged between topiary arches and suspended strings of crystal droplets. The ground is patterned with fallen petals, metallic leaves, and mosaic tiles. Warm late-afternoon light, refined cinematic composition, elegant symmetry with subtle asymmetry in the foliage, high detail in fabrics, jewelry, reflective metal, and facial features, whimsical luxury, romantic but slightly surreal, premium editorial photography mixed with storybook grandeur.

import { createClient } from '@runware/sdk'

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

const [result] = await client.run({
  model: 'bytedance:seedream@5.0-lite',
  positivePrompt: 'An elaborate wedding portrait in a fantastical clockwork orchard, a poised couple standing beneath fruit trees whose branches are made of polished brass, copper leaves, and tiny rotating gears. The bride wears an ivory gown with pearl beadwork and structured sleeves, the groom wears a deep plum formal coat with embroidered celestial motifs. Around them hang mechanical pears, glass apples with visible filigree cores, and delicate ribbon streamers caught in a gentle breeze. In the background, guests sit at long pale-wood tables arranged between topiary arches and suspended strings of crystal droplets. The ground is patterned with fallen petals, metallic leaves, and mosaic tiles. Warm late-afternoon light, refined cinematic composition, elegant symmetry with subtle asymmetry in the foliage, high detail in fabrics, jewelry, reflective metal, and facial features, whimsical luxury, romantic but slightly surreal, premium editorial photography mixed with storybook grandeur.',
  width: 2304,
  height: 1728,
  providerSettings: {
    bytedance: {
      optimizePromptMode: 'standard',
      maxSequentialImages: 1
    }
  }
})
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": "bytedance:seedream@5.0-lite",
            "positivePrompt": "An elaborate wedding portrait in a fantastical clockwork orchard, a poised couple standing beneath fruit trees whose branches are made of polished brass, copper leaves, and tiny rotating gears. The bride wears an ivory gown with pearl beadwork and structured sleeves, the groom wears a deep plum formal coat with embroidered celestial motifs. Around them hang mechanical pears, glass apples with visible filigree cores, and delicate ribbon streamers caught in a gentle breeze. In the background, guests sit at long pale-wood tables arranged between topiary arches and suspended strings of crystal droplets. The ground is patterned with fallen petals, metallic leaves, and mosaic tiles. Warm late-afternoon light, refined cinematic composition, elegant symmetry with subtle asymmetry in the foliage, high detail in fabrics, jewelry, reflective metal, and facial features, whimsical luxury, romantic but slightly surreal, premium editorial photography mixed with storybook grandeur.",
            "width": 2304,
            "height": 1728,
            "providerSettings": {
                "bytedance": {
                    "optimizePromptMode": "standard",
                    "maxSequentialImages": 1
                }
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "imageInference",
      "taskUUID": "f71dc58d-1961-4aa2-ae5c-4f35532f2baf",
      "model": "bytedance:seedream@5.0-lite",
      "positivePrompt": "An elaborate wedding portrait in a fantastical clockwork orchard, a poised couple standing beneath fruit trees whose branches are made of polished brass, copper leaves, and tiny rotating gears. The bride wears an ivory gown with pearl beadwork and structured sleeves, the groom wears a deep plum formal coat with embroidered celestial motifs. Around them hang mechanical pears, glass apples with visible filigree cores, and delicate ribbon streamers caught in a gentle breeze. In the background, guests sit at long pale-wood tables arranged between topiary arches and suspended strings of crystal droplets. The ground is patterned with fallen petals, metallic leaves, and mosaic tiles. Warm late-afternoon light, refined cinematic composition, elegant symmetry with subtle asymmetry in the foliage, high detail in fabrics, jewelry, reflective metal, and facial features, whimsical luxury, romantic but slightly surreal, premium editorial photography mixed with storybook grandeur.",
      "width": 2304,
      "height": 1728,
      "providerSettings": {
        "bytedance": {
          "optimizePromptMode": "standard",
          "maxSequentialImages": 1
        }
      }
    }
  ]'
runware run bytedance:seedream@5.0-lite \
  positivePrompt="An elaborate wedding portrait in a fantastical clockwork orchard, a poised couple standing beneath fruit trees whose branches are made of polished brass, copper leaves, and tiny rotating gears. The bride wears an ivory gown with pearl beadwork and structured sleeves, the groom wears a deep plum formal coat with embroidered celestial motifs. Around them hang mechanical pears, glass apples with visible filigree cores, and delicate ribbon streamers caught in a gentle breeze. In the background, guests sit at long pale-wood tables arranged between topiary arches and suspended strings of crystal droplets. The ground is patterned with fallen petals, metallic leaves, and mosaic tiles. Warm late-afternoon light, refined cinematic composition, elegant symmetry with subtle asymmetry in the foliage, high detail in fabrics, jewelry, reflective metal, and facial features, whimsical luxury, romantic but slightly surreal, premium editorial photography mixed with storybook grandeur." \
  width=2304 \
  height=1728 \
  providerSettings.bytedance.optimizePromptMode=standard \
  providerSettings.bytedance.maxSequentialImages=1
{
  "taskType": "imageInference",
  "taskUUID": "f71dc58d-1961-4aa2-ae5c-4f35532f2baf",
  "model": "bytedance:seedream@5.0-lite",
  "positivePrompt": "An elaborate wedding portrait in a fantastical clockwork orchard, a poised couple standing beneath fruit trees whose branches are made of polished brass, copper leaves, and tiny rotating gears. The bride wears an ivory gown with pearl beadwork and structured sleeves, the groom wears a deep plum formal coat with embroidered celestial motifs. Around them hang mechanical pears, glass apples with visible filigree cores, and delicate ribbon streamers caught in a gentle breeze. In the background, guests sit at long pale-wood tables arranged between topiary arches and suspended strings of crystal droplets. The ground is patterned with fallen petals, metallic leaves, and mosaic tiles. Warm late-afternoon light, refined cinematic composition, elegant symmetry with subtle asymmetry in the foliage, high detail in fabrics, jewelry, reflective metal, and facial features, whimsical luxury, romantic but slightly surreal, premium editorial photography mixed with storybook grandeur.",
  "width": 2304,
  "height": 1728,
  "providerSettings": {
    "bytedance": {
      "optimizePromptMode": "standard",
      "maxSequentialImages": 1
    }
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "f71dc58d-1961-4aa2-ae5c-4f35532f2baf",
  "imageUUID": "e8adfc0a-1522-4668-9040-1cbb84f74273",
  "imageURL": "https://im.runware.ai/image/os/a16d07/ws/3/ii/e8adfc0a-1522-4668-9040-1cbb84f74273.jpg",
  "seed": 842377256,
  "cost": 0.035
}
Image to Image

Porcelain Aviary Confection Salon

Porcelain Aviary Confection Salon

Using both reference images, create a fantastical confection salon where the cockatoo becomes the regal host of the space. Preserve the bird's distinctive crest, beak shape, and elegant stance from the first reference, and merge it naturally into the ornate pastry interior language of the second reference. Scene: a lavish dessert showroom filled with porcelain bird motifs, spiral meringue columns, suspended sugar ribbons, apricot and pale jade color harmonies, polished tiled floor, mirrored display cases, tiny marzipan sculptures, elaborate frosted cakes shaped like aviaries, and staff uniforms inspired by feather patterns. The cockatoo stands prominently atop a circular tasting podium as the focal subject, wearing a miniature embroidered collar and jeweled leg band. Highly detailed textures, graceful symmetry, premium editorial photography look, bright diffused indoor illumination, playful sophistication, sharp focus, rich depth, visually coherent blend of both references.

import { createClient } from '@runware/sdk'

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

const [result] = await client.run({
  referenceImages: [
    'https://assets.runware.ai/assets/inputs/4cfc2f5b-dca4-46a3-a1c9-4f0f5c17927e.jpg',
    'https://assets.runware.ai/assets/inputs/fe19e584-5937-415e-8dbd-07ca8fa7c38a.jpg'
  ],
  model: 'bytedance:seedream@5.0-lite',
  positivePrompt: 'Using both reference images, create a fantastical confection salon where the cockatoo becomes the regal host of the space. Preserve the bird\'s distinctive crest, beak shape, and elegant stance from the first reference, and merge it naturally into the ornate pastry interior language of the second reference. Scene: a lavish dessert showroom filled with porcelain bird motifs, spiral meringue columns, suspended sugar ribbons, apricot and pale jade color harmonies, polished tiled floor, mirrored display cases, tiny marzipan sculptures, elaborate frosted cakes shaped like aviaries, and staff uniforms inspired by feather patterns. The cockatoo stands prominently atop a circular tasting podium as the focal subject, wearing a miniature embroidered collar and jeweled leg band. Highly detailed textures, graceful symmetry, premium editorial photography look, bright diffused indoor illumination, playful sophistication, sharp focus, rich depth, visually coherent blend of both references.',
  width: 2304,
  height: 1728,
  providerSettings: {
    bytedance: {
      optimizePromptMode: 'standard',
      maxSequentialImages: 1
    }
  }
})
import asyncio
import os

from runware import Runware


async def main():
    async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
        results = await client.run({
            "referenceImages": [
                "https://assets.runware.ai/assets/inputs/4cfc2f5b-dca4-46a3-a1c9-4f0f5c17927e.jpg",
                "https://assets.runware.ai/assets/inputs/fe19e584-5937-415e-8dbd-07ca8fa7c38a.jpg"
            ],
            "model": "bytedance:seedream@5.0-lite",
            "positivePrompt": "Using both reference images, create a fantastical confection salon where the cockatoo becomes the regal host of the space. Preserve the bird's distinctive crest, beak shape, and elegant stance from the first reference, and merge it naturally into the ornate pastry interior language of the second reference. Scene: a lavish dessert showroom filled with porcelain bird motifs, spiral meringue columns, suspended sugar ribbons, apricot and pale jade color harmonies, polished tiled floor, mirrored display cases, tiny marzipan sculptures, elaborate frosted cakes shaped like aviaries, and staff uniforms inspired by feather patterns. The cockatoo stands prominently atop a circular tasting podium as the focal subject, wearing a miniature embroidered collar and jeweled leg band. Highly detailed textures, graceful symmetry, premium editorial photography look, bright diffused indoor illumination, playful sophistication, sharp focus, rich depth, visually coherent blend of both references.",
            "width": 2304,
            "height": 1728,
            "providerSettings": {
                "bytedance": {
                    "optimizePromptMode": "standard",
                    "maxSequentialImages": 1
                }
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "imageInference",
      "taskUUID": "d75461ad-bf14-4171-a4e8-39ba8436ecc0",
      "referenceImages": [
        "https://assets.runware.ai/assets/inputs/4cfc2f5b-dca4-46a3-a1c9-4f0f5c17927e.jpg",
        "https://assets.runware.ai/assets/inputs/fe19e584-5937-415e-8dbd-07ca8fa7c38a.jpg"
      ],
      "model": "bytedance:seedream@5.0-lite",
      "positivePrompt": "Using both reference images, create a fantastical confection salon where the cockatoo becomes the regal host of the space. Preserve the bird's distinctive crest, beak shape, and elegant stance from the first reference, and merge it naturally into the ornate pastry interior language of the second reference. Scene: a lavish dessert showroom filled with porcelain bird motifs, spiral meringue columns, suspended sugar ribbons, apricot and pale jade color harmonies, polished tiled floor, mirrored display cases, tiny marzipan sculptures, elaborate frosted cakes shaped like aviaries, and staff uniforms inspired by feather patterns. The cockatoo stands prominently atop a circular tasting podium as the focal subject, wearing a miniature embroidered collar and jeweled leg band. Highly detailed textures, graceful symmetry, premium editorial photography look, bright diffused indoor illumination, playful sophistication, sharp focus, rich depth, visually coherent blend of both references.",
      "width": 2304,
      "height": 1728,
      "providerSettings": {
        "bytedance": {
          "optimizePromptMode": "standard",
          "maxSequentialImages": 1
        }
      }
    }
  ]'
runware run bytedance:seedream@5.0-lite \
  referenceImages.0=https://assets.runware.ai/assets/inputs/4cfc2f5b-dca4-46a3-a1c9-4f0f5c17927e.jpg \
  referenceImages.1=https://assets.runware.ai/assets/inputs/fe19e584-5937-415e-8dbd-07ca8fa7c38a.jpg \
  positivePrompt="Using both reference images, create a fantastical confection salon where the cockatoo becomes the regal host of the space. Preserve the bird's distinctive crest, beak shape, and elegant stance from the first reference, and merge it naturally into the ornate pastry interior language of the second reference. Scene: a lavish dessert showroom filled with porcelain bird motifs, spiral meringue columns, suspended sugar ribbons, apricot and pale jade color harmonies, polished tiled floor, mirrored display cases, tiny marzipan sculptures, elaborate frosted cakes shaped like aviaries, and staff uniforms inspired by feather patterns. The cockatoo stands prominently atop a circular tasting podium as the focal subject, wearing a miniature embroidered collar and jeweled leg band. Highly detailed textures, graceful symmetry, premium editorial photography look, bright diffused indoor illumination, playful sophistication, sharp focus, rich depth, visually coherent blend of both references." \
  width=2304 \
  height=1728 \
  providerSettings.bytedance.optimizePromptMode=standard \
  providerSettings.bytedance.maxSequentialImages=1
{
  "taskType": "imageInference",
  "taskUUID": "d75461ad-bf14-4171-a4e8-39ba8436ecc0",
  "referenceImages": [
    "https://assets.runware.ai/assets/inputs/4cfc2f5b-dca4-46a3-a1c9-4f0f5c17927e.jpg",
    "https://assets.runware.ai/assets/inputs/fe19e584-5937-415e-8dbd-07ca8fa7c38a.jpg"
  ],
  "model": "bytedance:seedream@5.0-lite",
  "positivePrompt": "Using both reference images, create a fantastical confection salon where the cockatoo becomes the regal host of the space. Preserve the bird's distinctive crest, beak shape, and elegant stance from the first reference, and merge it naturally into the ornate pastry interior language of the second reference. Scene: a lavish dessert showroom filled with porcelain bird motifs, spiral meringue columns, suspended sugar ribbons, apricot and pale jade color harmonies, polished tiled floor, mirrored display cases, tiny marzipan sculptures, elaborate frosted cakes shaped like aviaries, and staff uniforms inspired by feather patterns. The cockatoo stands prominently atop a circular tasting podium as the focal subject, wearing a miniature embroidered collar and jeweled leg band. Highly detailed textures, graceful symmetry, premium editorial photography look, bright diffused indoor illumination, playful sophistication, sharp focus, rich depth, visually coherent blend of both references.",
  "width": 2304,
  "height": 1728,
  "providerSettings": {
    "bytedance": {
      "optimizePromptMode": "standard",
      "maxSequentialImages": 1
    }
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "d75461ad-bf14-4171-a4e8-39ba8436ecc0",
  "imageUUID": "c13c652a-05ed-4d68-9fb0-96024994ac6e",
  "imageURL": "https://im.runware.ai/image/os/a12d13/ws/3/ii/c13c652a-05ed-4d68-9fb0-96024994ac6e.jpg",
  "seed": 1102130680,
  "cost": 0.035
}
Text to Image

Gilded Tram Through Floodplain

Gilded Tram Through Floodplain

An elegant old electric tram crossing a shallow seasonal floodplain on a narrow raised track, transformed into a surreal pastoral transit scene. The tram is painted cream, brass, and faded jade, with ornate trim, glowing interior sconces, and passengers visible through tall windows: a tailor with hatboxes, a child holding a paper pinwheel, a musician carrying a cello case, and a florist with oversized peonies. Around the track, mirror-like water reflects a vast apricot sky and drifting cloud bands. Tall reeds, floating lily pads, and scattered white ibises create delicate rhythm across the foreground. In the distance, stilted farmhouses, wind-driven water wheels, and rows of cypress trees suggest a wetland village adapted to annual overflow. Mood: tranquil, uncanny, refined, quietly joyful. Composition: wide cinematic angle, tram placed on the lower third moving left to right, strong leading lines, expansive sky, crisp reflections, balanced negative space. Style: ultra-detailed contemporary editorial photography blended with painterly atmosphere, nuanced natural light, realistic materials, subtle haze, intricate costume and vehicle detailing, high dynamic range, no text, 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: 'bytedance:seedream@5.0-lite',
  positivePrompt: 'An elegant old electric tram crossing a shallow seasonal floodplain on a narrow raised track, transformed into a surreal pastoral transit scene. The tram is painted cream, brass, and faded jade, with ornate trim, glowing interior sconces, and passengers visible through tall windows: a tailor with hatboxes, a child holding a paper pinwheel, a musician carrying a cello case, and a florist with oversized peonies. Around the track, mirror-like water reflects a vast apricot sky and drifting cloud bands. Tall reeds, floating lily pads, and scattered white ibises create delicate rhythm across the foreground. In the distance, stilted farmhouses, wind-driven water wheels, and rows of cypress trees suggest a wetland village adapted to annual overflow. Mood: tranquil, uncanny, refined, quietly joyful. Composition: wide cinematic angle, tram placed on the lower third moving left to right, strong leading lines, expansive sky, crisp reflections, balanced negative space. Style: ultra-detailed contemporary editorial photography blended with painterly atmosphere, nuanced natural light, realistic materials, subtle haze, intricate costume and vehicle detailing, high dynamic range, no text, no watermark.',
  width: 4096,
  height: 2304,
  providerSettings: {
    bytedance: {
      maxSequentialImages: 1,
      optimizePromptMode: 'standard'
    }
  }
})
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": "bytedance:seedream@5.0-lite",
            "positivePrompt": "An elegant old electric tram crossing a shallow seasonal floodplain on a narrow raised track, transformed into a surreal pastoral transit scene. The tram is painted cream, brass, and faded jade, with ornate trim, glowing interior sconces, and passengers visible through tall windows: a tailor with hatboxes, a child holding a paper pinwheel, a musician carrying a cello case, and a florist with oversized peonies. Around the track, mirror-like water reflects a vast apricot sky and drifting cloud bands. Tall reeds, floating lily pads, and scattered white ibises create delicate rhythm across the foreground. In the distance, stilted farmhouses, wind-driven water wheels, and rows of cypress trees suggest a wetland village adapted to annual overflow. Mood: tranquil, uncanny, refined, quietly joyful. Composition: wide cinematic angle, tram placed on the lower third moving left to right, strong leading lines, expansive sky, crisp reflections, balanced negative space. Style: ultra-detailed contemporary editorial photography blended with painterly atmosphere, nuanced natural light, realistic materials, subtle haze, intricate costume and vehicle detailing, high dynamic range, no text, no watermark.",
            "width": 4096,
            "height": 2304,
            "providerSettings": {
                "bytedance": {
                    "maxSequentialImages": 1,
                    "optimizePromptMode": "standard"
                }
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "imageInference",
      "taskUUID": "1c14dff5-4b52-4722-baa1-77705d1ee114",
      "model": "bytedance:seedream@5.0-lite",
      "positivePrompt": "An elegant old electric tram crossing a shallow seasonal floodplain on a narrow raised track, transformed into a surreal pastoral transit scene. The tram is painted cream, brass, and faded jade, with ornate trim, glowing interior sconces, and passengers visible through tall windows: a tailor with hatboxes, a child holding a paper pinwheel, a musician carrying a cello case, and a florist with oversized peonies. Around the track, mirror-like water reflects a vast apricot sky and drifting cloud bands. Tall reeds, floating lily pads, and scattered white ibises create delicate rhythm across the foreground. In the distance, stilted farmhouses, wind-driven water wheels, and rows of cypress trees suggest a wetland village adapted to annual overflow. Mood: tranquil, uncanny, refined, quietly joyful. Composition: wide cinematic angle, tram placed on the lower third moving left to right, strong leading lines, expansive sky, crisp reflections, balanced negative space. Style: ultra-detailed contemporary editorial photography blended with painterly atmosphere, nuanced natural light, realistic materials, subtle haze, intricate costume and vehicle detailing, high dynamic range, no text, no watermark.",
      "width": 4096,
      "height": 2304,
      "providerSettings": {
        "bytedance": {
          "maxSequentialImages": 1,
          "optimizePromptMode": "standard"
        }
      }
    }
  ]'
runware run bytedance:seedream@5.0-lite \
  positivePrompt="An elegant old electric tram crossing a shallow seasonal floodplain on a narrow raised track, transformed into a surreal pastoral transit scene. The tram is painted cream, brass, and faded jade, with ornate trim, glowing interior sconces, and passengers visible through tall windows: a tailor with hatboxes, a child holding a paper pinwheel, a musician carrying a cello case, and a florist with oversized peonies. Around the track, mirror-like water reflects a vast apricot sky and drifting cloud bands. Tall reeds, floating lily pads, and scattered white ibises create delicate rhythm across the foreground. In the distance, stilted farmhouses, wind-driven water wheels, and rows of cypress trees suggest a wetland village adapted to annual overflow. Mood: tranquil, uncanny, refined, quietly joyful. Composition: wide cinematic angle, tram placed on the lower third moving left to right, strong leading lines, expansive sky, crisp reflections, balanced negative space. Style: ultra-detailed contemporary editorial photography blended with painterly atmosphere, nuanced natural light, realistic materials, subtle haze, intricate costume and vehicle detailing, high dynamic range, no text, no watermark." \
  width=4096 \
  height=2304 \
  providerSettings.bytedance.maxSequentialImages=1 \
  providerSettings.bytedance.optimizePromptMode=standard
{
  "taskType": "imageInference",
  "taskUUID": "1c14dff5-4b52-4722-baa1-77705d1ee114",
  "model": "bytedance:seedream@5.0-lite",
  "positivePrompt": "An elegant old electric tram crossing a shallow seasonal floodplain on a narrow raised track, transformed into a surreal pastoral transit scene. The tram is painted cream, brass, and faded jade, with ornate trim, glowing interior sconces, and passengers visible through tall windows: a tailor with hatboxes, a child holding a paper pinwheel, a musician carrying a cello case, and a florist with oversized peonies. Around the track, mirror-like water reflects a vast apricot sky and drifting cloud bands. Tall reeds, floating lily pads, and scattered white ibises create delicate rhythm across the foreground. In the distance, stilted farmhouses, wind-driven water wheels, and rows of cypress trees suggest a wetland village adapted to annual overflow. Mood: tranquil, uncanny, refined, quietly joyful. Composition: wide cinematic angle, tram placed on the lower third moving left to right, strong leading lines, expansive sky, crisp reflections, balanced negative space. Style: ultra-detailed contemporary editorial photography blended with painterly atmosphere, nuanced natural light, realistic materials, subtle haze, intricate costume and vehicle detailing, high dynamic range, no text, no watermark.",
  "width": 4096,
  "height": 2304,
  "providerSettings": {
    "bytedance": {
      "maxSequentialImages": 1,
      "optimizePromptMode": "standard"
    }
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "1c14dff5-4b52-4722-baa1-77705d1ee114",
  "imageUUID": "bae3b241-301a-4eef-9ce1-f0657ab08809",
  "imageURL": "https://im.runware.ai/image/os/a11d13/ws/3/ii/bae3b241-301a-4eef-9ce1-f0657ab08809.jpg",
  "seed": 722615136,
  "cost": 0.035
}