ERNIE-Image

ERNIE-Image is Baidu's 8B text-to-image model built on a single-stream Diffusion Transformer architecture. It is designed for strong prompt adherence, reliable text rendering, and structured visual generation, making it well suited to posters, comics, storyboards, multi-panel layouts, and other workflows where content accuracy and composition matter as much as aesthetics. The standard model emphasizes stronger general-purpose capability and instruction fidelity, typically running at around 50 inference steps.

Complete technical specification for integration
Ready-to-use code snippets for common workflows
text-to-image
Moonlit Oyster Farm Dinner Invitation$0.023~1m 11s
Finished square dinner invitation in an elegant hand-cut linocut and screen-print style. A long candlelit table floats between oyster racks on dark moonlit tidal water, viewed from directly overhead, with tiny boats, oyster shells, ripples, and seagrass forming a decorative border. Deep ultramarine, warm cream, persimmon red, and touches of silver; refined coastal mood, bold symmetrical composition. Render this exact centered typography clearly: “MOON-TIDE SUPPER” then “SEPTEMBER 19 · 6:30 PM” then “BRACKISH POINT OYSTER FARM” then “DINNER ON THE WATER” then “RSVP BY SEPTEMBER 5”. Standalone invitation artwork, no mockup.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'baidu:ernie-image@0',
positivePrompt: 'Finished square dinner invitation in an elegant hand-cut linocut and screen-print style. A long candlelit table floats between oyster racks on dark moonlit tidal water, viewed from directly overhead, with tiny boats, oyster shells, ripples, and seagrass forming a decorative border. Deep ultramarine, warm cream, persimmon red, and touches of silver; refined coastal mood, bold symmetrical composition. Render this exact centered typography clearly: “MOON-TIDE SUPPER” then “SEPTEMBER 19 · 6:30 PM” then “BRACKISH POINT OYSTER FARM” then “DINNER ON THE WATER” then “RSVP BY SEPTEMBER 5”. Standalone invitation artwork, no mockup.',
width: 1024,
height: 1024,
steps: 30,
CFGScale: 4,
acceleration: 'medium',
settings: {
promptEnhance: {
enabled: true,
temperature: 1.2,
topP: 0.95
}
}
})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": "baidu:ernie-image@0",
"positivePrompt": "Finished square dinner invitation in an elegant hand-cut linocut and screen-print style. A long candlelit table floats between oyster racks on dark moonlit tidal water, viewed from directly overhead, with tiny boats, oyster shells, ripples, and seagrass forming a decorative border. Deep ultramarine, warm cream, persimmon red, and touches of silver; refined coastal mood, bold symmetrical composition. Render this exact centered typography clearly: “MOON-TIDE SUPPER” then “SEPTEMBER 19 · 6:30 PM” then “BRACKISH POINT OYSTER FARM” then “DINNER ON THE WATER” then “RSVP BY SEPTEMBER 5”. Standalone invitation artwork, no mockup.",
"width": 1024,
"height": 1024,
"steps": 30,
"CFGScale": 4,
"acceleration": "medium",
"settings": {
"promptEnhance": {
"enabled": True,
"temperature": 1.2,
"topP": 0.95
}
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "01ad6b7e-d8a6-4cde-9a92-a491cc541e31",
"model": "baidu:ernie-image@0",
"positivePrompt": "Finished square dinner invitation in an elegant hand-cut linocut and screen-print style. A long candlelit table floats between oyster racks on dark moonlit tidal water, viewed from directly overhead, with tiny boats, oyster shells, ripples, and seagrass forming a decorative border. Deep ultramarine, warm cream, persimmon red, and touches of silver; refined coastal mood, bold symmetrical composition. Render this exact centered typography clearly: “MOON-TIDE SUPPER” then “SEPTEMBER 19 · 6:30 PM” then “BRACKISH POINT OYSTER FARM” then “DINNER ON THE WATER” then “RSVP BY SEPTEMBER 5”. Standalone invitation artwork, no mockup.",
"width": 1024,
"height": 1024,
"steps": 30,
"CFGScale": 4,
"acceleration": "medium",
"settings": {
"promptEnhance": {
"enabled": true,
"temperature": 1.2,
"topP": 0.95
}
}
}
]'runware run baidu:ernie-image@0 \
positivePrompt="Finished square dinner invitation in an elegant hand-cut linocut and screen-print style. A long candlelit table floats between oyster racks on dark moonlit tidal water, viewed from directly overhead, with tiny boats, oyster shells, ripples, and seagrass forming a decorative border. Deep ultramarine, warm cream, persimmon red, and touches of silver; refined coastal mood, bold symmetrical composition. Render this exact centered typography clearly: “MOON-TIDE SUPPER” then “SEPTEMBER 19 · 6:30 PM” then “BRACKISH POINT OYSTER FARM” then “DINNER ON THE WATER” then “RSVP BY SEPTEMBER 5”. Standalone invitation artwork, no mockup." \
width=1024 \
height=1024 \
steps=30 \
CFGScale=4 \
acceleration=medium \
settings.promptEnhance.enabled=true \
settings.promptEnhance.temperature=1.2 \
settings.promptEnhance.topP=0.95{
"taskType": "imageInference",
"taskUUID": "01ad6b7e-d8a6-4cde-9a92-a491cc541e31",
"model": "baidu:ernie-image@0",
"positivePrompt": "Finished square dinner invitation in an elegant hand-cut linocut and screen-print style. A long candlelit table floats between oyster racks on dark moonlit tidal water, viewed from directly overhead, with tiny boats, oyster shells, ripples, and seagrass forming a decorative border. Deep ultramarine, warm cream, persimmon red, and touches of silver; refined coastal mood, bold symmetrical composition. Render this exact centered typography clearly: “MOON-TIDE SUPPER” then “SEPTEMBER 19 · 6:30 PM” then “BRACKISH POINT OYSTER FARM” then “DINNER ON THE WATER” then “RSVP BY SEPTEMBER 5”. Standalone invitation artwork, no mockup.",
"width": 1024,
"height": 1024,
"steps": 30,
"CFGScale": 4,
"acceleration": "medium",
"settings": {
"promptEnhance": {
"enabled": true,
"temperature": 1.2,
"topP": 0.95
}
}
}Response
{
"taskType": "imageInference",
"taskUUID": "01ad6b7e-d8a6-4cde-9a92-a491cc541e31",
"imageUUID": "a56266d1-75b4-44ee-a137-17a30836a9f2",
"imageURL": "https://im.runware.ai/image/os/a10dlim3/ws/3/ii/a56266d1-75b4-44ee-a137-17a30836a9f2.jpg",
"seed": 689316863,
"cost": 0.023
}text-to-image
Falconry Telemetry Kit Packshot$0.023~59s
Premium ecommerce studio packshot of a professional falconry telemetry kit: an open matte burnt-orange protective case containing a compact receiver, directional antenna, two tiny brass leg transmitters, charging cradle and coiled cable. Neatly organized accessories, three-quarter view, seamless warm limestone background, crisp directional sunlight and sculptural shadows, refined utilitarian art direction, realistic materials, immaculate product photography, no logos or 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: 'baidu:ernie-image@0',
positivePrompt: 'Premium ecommerce studio packshot of a professional falconry telemetry kit: an open matte burnt-orange protective case containing a compact receiver, directional antenna, two tiny brass leg transmitters, charging cradle and coiled cable. Neatly organized accessories, three-quarter view, seamless warm limestone background, crisp directional sunlight and sculptural shadows, refined utilitarian art direction, realistic materials, immaculate product photography, no logos or text.',
width: 1024,
height: 1024,
steps: 30,
CFGScale: 4,
acceleration: 'medium',
settings: {
promptEnhance: {
enabled: true,
temperature: 1.2,
topP: 0.95
}
}
})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": "baidu:ernie-image@0",
"positivePrompt": "Premium ecommerce studio packshot of a professional falconry telemetry kit: an open matte burnt-orange protective case containing a compact receiver, directional antenna, two tiny brass leg transmitters, charging cradle and coiled cable. Neatly organized accessories, three-quarter view, seamless warm limestone background, crisp directional sunlight and sculptural shadows, refined utilitarian art direction, realistic materials, immaculate product photography, no logos or text.",
"width": 1024,
"height": 1024,
"steps": 30,
"CFGScale": 4,
"acceleration": "medium",
"settings": {
"promptEnhance": {
"enabled": True,
"temperature": 1.2,
"topP": 0.95
}
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "5f19bf44-5e56-46de-bc6b-45f2c64a3634",
"model": "baidu:ernie-image@0",
"positivePrompt": "Premium ecommerce studio packshot of a professional falconry telemetry kit: an open matte burnt-orange protective case containing a compact receiver, directional antenna, two tiny brass leg transmitters, charging cradle and coiled cable. Neatly organized accessories, three-quarter view, seamless warm limestone background, crisp directional sunlight and sculptural shadows, refined utilitarian art direction, realistic materials, immaculate product photography, no logos or text.",
"width": 1024,
"height": 1024,
"steps": 30,
"CFGScale": 4,
"acceleration": "medium",
"settings": {
"promptEnhance": {
"enabled": true,
"temperature": 1.2,
"topP": 0.95
}
}
}
]'runware run baidu:ernie-image@0 \
positivePrompt="Premium ecommerce studio packshot of a professional falconry telemetry kit: an open matte burnt-orange protective case containing a compact receiver, directional antenna, two tiny brass leg transmitters, charging cradle and coiled cable. Neatly organized accessories, three-quarter view, seamless warm limestone background, crisp directional sunlight and sculptural shadows, refined utilitarian art direction, realistic materials, immaculate product photography, no logos or text." \
width=1024 \
height=1024 \
steps=30 \
CFGScale=4 \
acceleration=medium \
settings.promptEnhance.enabled=true \
settings.promptEnhance.temperature=1.2 \
settings.promptEnhance.topP=0.95{
"taskType": "imageInference",
"taskUUID": "5f19bf44-5e56-46de-bc6b-45f2c64a3634",
"model": "baidu:ernie-image@0",
"positivePrompt": "Premium ecommerce studio packshot of a professional falconry telemetry kit: an open matte burnt-orange protective case containing a compact receiver, directional antenna, two tiny brass leg transmitters, charging cradle and coiled cable. Neatly organized accessories, three-quarter view, seamless warm limestone background, crisp directional sunlight and sculptural shadows, refined utilitarian art direction, realistic materials, immaculate product photography, no logos or text.",
"width": 1024,
"height": 1024,
"steps": 30,
"CFGScale": 4,
"acceleration": "medium",
"settings": {
"promptEnhance": {
"enabled": true,
"temperature": 1.2,
"topP": 0.95
}
}
}Response
{
"taskType": "imageInference",
"taskUUID": "5f19bf44-5e56-46de-bc6b-45f2c64a3634",
"imageUUID": "14571943-3b1c-4158-9718-a8a3e616372f",
"imageURL": "https://im.runware.ai/image/os/a04d20/ws/3/ii/14571943-3b1c-4158-9718-a8a3e616372f.jpg",
"seed": 2085483199,
"cost": 0.023
}text-to-image
Geothermal Architecture Journal Cover$0.0205~48s
Finished square editorial magazine cover, not a mockup. Top-down view of a lone geothermal plant technician in a reflective silver heat suit crossing a narrow black walkway over a vast sulfur-yellow mineral pool, concentric basalt structures and drifting steam forming bold abstract geometry. Stark midday light, acid yellow, charcoal black and pale cyan palette, industrial documentary photography with rigorous Swiss editorial design. Large clean masthead reading “THERMAL” and one precise cover line reading “THE HEAT BENEATH”, crisp legible typography, generous spacing, premium architecture journal art direction.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'baidu:ernie-image@0',
positivePrompt: 'Finished square editorial magazine cover, not a mockup. Top-down view of a lone geothermal plant technician in a reflective silver heat suit crossing a narrow black walkway over a vast sulfur-yellow mineral pool, concentric basalt structures and drifting steam forming bold abstract geometry. Stark midday light, acid yellow, charcoal black and pale cyan palette, industrial documentary photography with rigorous Swiss editorial design. Large clean masthead reading “THERMAL” and one precise cover line reading “THE HEAT BENEATH”, crisp legible typography, generous spacing, premium architecture journal art direction.',
width: 1024,
height: 1024,
steps: 30,
CFGScale: 4,
acceleration: 'medium',
settings: {
promptEnhance: {
enabled: true,
temperature: 1.2,
topP: 0.95
}
}
})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": "baidu:ernie-image@0",
"positivePrompt": "Finished square editorial magazine cover, not a mockup. Top-down view of a lone geothermal plant technician in a reflective silver heat suit crossing a narrow black walkway over a vast sulfur-yellow mineral pool, concentric basalt structures and drifting steam forming bold abstract geometry. Stark midday light, acid yellow, charcoal black and pale cyan palette, industrial documentary photography with rigorous Swiss editorial design. Large clean masthead reading “THERMAL” and one precise cover line reading “THE HEAT BENEATH”, crisp legible typography, generous spacing, premium architecture journal art direction.",
"width": 1024,
"height": 1024,
"steps": 30,
"CFGScale": 4,
"acceleration": "medium",
"settings": {
"promptEnhance": {
"enabled": True,
"temperature": 1.2,
"topP": 0.95
}
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "10e9483a-e86e-4ade-8ef4-9c30f6dd99c1",
"model": "baidu:ernie-image@0",
"positivePrompt": "Finished square editorial magazine cover, not a mockup. Top-down view of a lone geothermal plant technician in a reflective silver heat suit crossing a narrow black walkway over a vast sulfur-yellow mineral pool, concentric basalt structures and drifting steam forming bold abstract geometry. Stark midday light, acid yellow, charcoal black and pale cyan palette, industrial documentary photography with rigorous Swiss editorial design. Large clean masthead reading “THERMAL” and one precise cover line reading “THE HEAT BENEATH”, crisp legible typography, generous spacing, premium architecture journal art direction.",
"width": 1024,
"height": 1024,
"steps": 30,
"CFGScale": 4,
"acceleration": "medium",
"settings": {
"promptEnhance": {
"enabled": true,
"temperature": 1.2,
"topP": 0.95
}
}
}
]'runware run baidu:ernie-image@0 \
positivePrompt="Finished square editorial magazine cover, not a mockup. Top-down view of a lone geothermal plant technician in a reflective silver heat suit crossing a narrow black walkway over a vast sulfur-yellow mineral pool, concentric basalt structures and drifting steam forming bold abstract geometry. Stark midday light, acid yellow, charcoal black and pale cyan palette, industrial documentary photography with rigorous Swiss editorial design. Large clean masthead reading “THERMAL” and one precise cover line reading “THE HEAT BENEATH”, crisp legible typography, generous spacing, premium architecture journal art direction." \
width=1024 \
height=1024 \
steps=30 \
CFGScale=4 \
acceleration=medium \
settings.promptEnhance.enabled=true \
settings.promptEnhance.temperature=1.2 \
settings.promptEnhance.topP=0.95{
"taskType": "imageInference",
"taskUUID": "10e9483a-e86e-4ade-8ef4-9c30f6dd99c1",
"model": "baidu:ernie-image@0",
"positivePrompt": "Finished square editorial magazine cover, not a mockup. Top-down view of a lone geothermal plant technician in a reflective silver heat suit crossing a narrow black walkway over a vast sulfur-yellow mineral pool, concentric basalt structures and drifting steam forming bold abstract geometry. Stark midday light, acid yellow, charcoal black and pale cyan palette, industrial documentary photography with rigorous Swiss editorial design. Large clean masthead reading “THERMAL” and one precise cover line reading “THE HEAT BENEATH”, crisp legible typography, generous spacing, premium architecture journal art direction.",
"width": 1024,
"height": 1024,
"steps": 30,
"CFGScale": 4,
"acceleration": "medium",
"settings": {
"promptEnhance": {
"enabled": true,
"temperature": 1.2,
"topP": 0.95
}
}
}Response
{
"taskType": "imageInference",
"taskUUID": "10e9483a-e86e-4ade-8ef4-9c30f6dd99c1",
"imageUUID": "53a1c471-9a8e-422a-b53a-7cd3ba93931a",
"imageURL": "https://im.runware.ai/image/os/a04d20/ws/3/ii/53a1c471-9a8e-422a-b53a-7cd3ba93931a.jpg",
"seed": 1640275774,
"cost": 0.0205
}text-to-image
Tidal Choral Festival Poster$0.0307~1m 19s
Finished square festival poster for “TIDELINE CHOIR,” an open-air choral performance in a brutalist coastal seawater pool. Overhead view of a large choir standing waist-deep in turquoise water, arranged in concentric circles around a conductor; long coral-red garments ripple like sea anemones. Crisp dawn light, geometric pool edges, shimmering reflections, bold contemporary arts-poster direction, cyan and vermilion palette, subtle screen-print texture. Integrate clear condensed typography: “TIDELINE CHOIR” large at top, “SALTWATER SONGS” beneath, and “14 SEPTEMBER 2026 — JUBILEE POOL, PENZANCE” along the bottom. Balanced editorial composition, highly legible text, no logos or mockup.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'baidu:ernie-image@0',
positivePrompt: 'Finished square festival poster for “TIDELINE CHOIR,” an open-air choral performance in a brutalist coastal seawater pool. Overhead view of a large choir standing waist-deep in turquoise water, arranged in concentric circles around a conductor; long coral-red garments ripple like sea anemones. Crisp dawn light, geometric pool edges, shimmering reflections, bold contemporary arts-poster direction, cyan and vermilion palette, subtle screen-print texture. Integrate clear condensed typography: “TIDELINE CHOIR” large at top, “SALTWATER SONGS” beneath, and “14 SEPTEMBER 2026 — JUBILEE POOL, PENZANCE” along the bottom. Balanced editorial composition, highly legible text, no logos or mockup.',
width: 1024,
height: 1024,
steps: 30,
CFGScale: 4,
acceleration: 'medium',
settings: {
promptEnhance: {
enabled: true,
temperature: 1.2,
topP: 0.95
}
}
})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": "baidu:ernie-image@0",
"positivePrompt": "Finished square festival poster for “TIDELINE CHOIR,” an open-air choral performance in a brutalist coastal seawater pool. Overhead view of a large choir standing waist-deep in turquoise water, arranged in concentric circles around a conductor; long coral-red garments ripple like sea anemones. Crisp dawn light, geometric pool edges, shimmering reflections, bold contemporary arts-poster direction, cyan and vermilion palette, subtle screen-print texture. Integrate clear condensed typography: “TIDELINE CHOIR” large at top, “SALTWATER SONGS” beneath, and “14 SEPTEMBER 2026 — JUBILEE POOL, PENZANCE” along the bottom. Balanced editorial composition, highly legible text, no logos or mockup.",
"width": 1024,
"height": 1024,
"steps": 30,
"CFGScale": 4,
"acceleration": "medium",
"settings": {
"promptEnhance": {
"enabled": True,
"temperature": 1.2,
"topP": 0.95
}
}
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "f9972411-d389-4cda-bb09-19d84614e981",
"model": "baidu:ernie-image@0",
"positivePrompt": "Finished square festival poster for “TIDELINE CHOIR,” an open-air choral performance in a brutalist coastal seawater pool. Overhead view of a large choir standing waist-deep in turquoise water, arranged in concentric circles around a conductor; long coral-red garments ripple like sea anemones. Crisp dawn light, geometric pool edges, shimmering reflections, bold contemporary arts-poster direction, cyan and vermilion palette, subtle screen-print texture. Integrate clear condensed typography: “TIDELINE CHOIR” large at top, “SALTWATER SONGS” beneath, and “14 SEPTEMBER 2026 — JUBILEE POOL, PENZANCE” along the bottom. Balanced editorial composition, highly legible text, no logos or mockup.",
"width": 1024,
"height": 1024,
"steps": 30,
"CFGScale": 4,
"acceleration": "medium",
"settings": {
"promptEnhance": {
"enabled": true,
"temperature": 1.2,
"topP": 0.95
}
}
}
]'runware run baidu:ernie-image@0 \
positivePrompt="Finished square festival poster for “TIDELINE CHOIR,” an open-air choral performance in a brutalist coastal seawater pool. Overhead view of a large choir standing waist-deep in turquoise water, arranged in concentric circles around a conductor; long coral-red garments ripple like sea anemones. Crisp dawn light, geometric pool edges, shimmering reflections, bold contemporary arts-poster direction, cyan and vermilion palette, subtle screen-print texture. Integrate clear condensed typography: “TIDELINE CHOIR” large at top, “SALTWATER SONGS” beneath, and “14 SEPTEMBER 2026 — JUBILEE POOL, PENZANCE” along the bottom. Balanced editorial composition, highly legible text, no logos or mockup." \
width=1024 \
height=1024 \
steps=30 \
CFGScale=4 \
acceleration=medium \
settings.promptEnhance.enabled=true \
settings.promptEnhance.temperature=1.2 \
settings.promptEnhance.topP=0.95{
"taskType": "imageInference",
"taskUUID": "f9972411-d389-4cda-bb09-19d84614e981",
"model": "baidu:ernie-image@0",
"positivePrompt": "Finished square festival poster for “TIDELINE CHOIR,” an open-air choral performance in a brutalist coastal seawater pool. Overhead view of a large choir standing waist-deep in turquoise water, arranged in concentric circles around a conductor; long coral-red garments ripple like sea anemones. Crisp dawn light, geometric pool edges, shimmering reflections, bold contemporary arts-poster direction, cyan and vermilion palette, subtle screen-print texture. Integrate clear condensed typography: “TIDELINE CHOIR” large at top, “SALTWATER SONGS” beneath, and “14 SEPTEMBER 2026 — JUBILEE POOL, PENZANCE” along the bottom. Balanced editorial composition, highly legible text, no logos or mockup.",
"width": 1024,
"height": 1024,
"steps": 30,
"CFGScale": 4,
"acceleration": "medium",
"settings": {
"promptEnhance": {
"enabled": true,
"temperature": 1.2,
"topP": 0.95
}
}
}Response
{
"taskType": "imageInference",
"taskUUID": "f9972411-d389-4cda-bb09-19d84614e981",
"imageUUID": "41028c79-f592-426b-8674-9aa476f3bc1e",
"imageURL": "https://im.runware.ai/image/os/a07dlim3/ws/3/ii/41028c79-f592-426b-8674-9aa476f3bc1e.jpg",
"seed": 604924745,
"cost": 0.0307
}
Wide cinematic cutaway of an interstellar seed vault inside a hollow rotating space habitat, crisp editorial illustration style, highly organized interior chambers stacked in three visible levels. Include accurate readable English labels on signs and doors: “GENE BANK 87898”, “DRY STORAGE”, “SPROUT TEST”, “QUARANTINE”, “ARCHIVE CORE”. Show tiny botanist engineers in white suits inspecting seed capsules, transparent crop growth tubes, color-coded pipes, robotic carts, clean metal walkways, soft amber and cyan lighting, starfield visible through long curved windows, balanced composition, intricate mechanical detail, sharp typography, no blurry 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: 'baidu:ernie-image@0',
positivePrompt: 'Wide cinematic cutaway of an interstellar seed vault inside a hollow rotating space habitat, crisp editorial illustration style, highly organized interior chambers stacked in three visible levels. Include accurate readable English labels on signs and doors: “GENE BANK 87898”, “DRY STORAGE”, “SPROUT TEST”, “QUARANTINE”, “ARCHIVE CORE”. Show tiny botanist engineers in white suits inspecting seed capsules, transparent crop growth tubes, color-coded pipes, robotic carts, clean metal walkways, soft amber and cyan lighting, starfield visible through long curved windows, balanced composition, intricate mechanical detail, sharp typography, no blurry text.',
width: 1344,
height: 768,
seed: 87898,
steps: 50,
CFGScale: 6
})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": "baidu:ernie-image@0",
"positivePrompt": "Wide cinematic cutaway of an interstellar seed vault inside a hollow rotating space habitat, crisp editorial illustration style, highly organized interior chambers stacked in three visible levels. Include accurate readable English labels on signs and doors: “GENE BANK 87898”, “DRY STORAGE”, “SPROUT TEST”, “QUARANTINE”, “ARCHIVE CORE”. Show tiny botanist engineers in white suits inspecting seed capsules, transparent crop growth tubes, color-coded pipes, robotic carts, clean metal walkways, soft amber and cyan lighting, starfield visible through long curved windows, balanced composition, intricate mechanical detail, sharp typography, no blurry text.",
"width": 1344,
"height": 768,
"seed": 87898,
"steps": 50,
"CFGScale": 6
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "25aef93b-a5a2-4394-8bb6-fb2ec254aadc",
"model": "baidu:ernie-image@0",
"positivePrompt": "Wide cinematic cutaway of an interstellar seed vault inside a hollow rotating space habitat, crisp editorial illustration style, highly organized interior chambers stacked in three visible levels. Include accurate readable English labels on signs and doors: “GENE BANK 87898”, “DRY STORAGE”, “SPROUT TEST”, “QUARANTINE”, “ARCHIVE CORE”. Show tiny botanist engineers in white suits inspecting seed capsules, transparent crop growth tubes, color-coded pipes, robotic carts, clean metal walkways, soft amber and cyan lighting, starfield visible through long curved windows, balanced composition, intricate mechanical detail, sharp typography, no blurry text.",
"width": 1344,
"height": 768,
"seed": 87898,
"steps": 50,
"CFGScale": 6
}
]'runware run baidu:ernie-image@0 \
positivePrompt="Wide cinematic cutaway of an interstellar seed vault inside a hollow rotating space habitat, crisp editorial illustration style, highly organized interior chambers stacked in three visible levels. Include accurate readable English labels on signs and doors: “GENE BANK 87898”, “DRY STORAGE”, “SPROUT TEST”, “QUARANTINE”, “ARCHIVE CORE”. Show tiny botanist engineers in white suits inspecting seed capsules, transparent crop growth tubes, color-coded pipes, robotic carts, clean metal walkways, soft amber and cyan lighting, starfield visible through long curved windows, balanced composition, intricate mechanical detail, sharp typography, no blurry text." \
width=1344 \
height=768 \
seed=87898 \
steps=50 \
CFGScale=6{
"taskType": "imageInference",
"taskUUID": "25aef93b-a5a2-4394-8bb6-fb2ec254aadc",
"model": "baidu:ernie-image@0",
"positivePrompt": "Wide cinematic cutaway of an interstellar seed vault inside a hollow rotating space habitat, crisp editorial illustration style, highly organized interior chambers stacked in three visible levels. Include accurate readable English labels on signs and doors: “GENE BANK 87898”, “DRY STORAGE”, “SPROUT TEST”, “QUARANTINE”, “ARCHIVE CORE”. Show tiny botanist engineers in white suits inspecting seed capsules, transparent crop growth tubes, color-coded pipes, robotic carts, clean metal walkways, soft amber and cyan lighting, starfield visible through long curved windows, balanced composition, intricate mechanical detail, sharp typography, no blurry text.",
"width": 1344,
"height": 768,
"seed": 87898,
"steps": 50,
"CFGScale": 6
}Response
{
"taskType": "imageInference",
"taskUUID": "25aef93b-a5a2-4394-8bb6-fb2ec254aadc",
"imageUUID": "32bd38a3-9687-4516-b21c-7cba03b549f5",
"imageURL": "https://im.runware.ai/image/os/a03d21/ws/3/ii/32bd38a3-9687-4516-b21c-7cba03b549f5.jpg",
"seed": 87898,
"cost": 0.0179
}
A crisp vertical editorial poster for an imaginary penguin-run postal station at the South Pole, centered symmetrical layout, clean graphic illustration mixed with cinematic realism. Top headline in large perfectly readable block letters: "SOUTH POLE SORTING ROOM". Main scene: penguins in tiny navy courier caps organizing colorful envelopes on long wooden tables, snow sample crates, wax seals, red string bundles, stamped maps, frost on metal shelves, warm amber task lamps, pale blue snowfield visible through round porthole windows. Include three small labeled inset panels along the bottom with clear readable captions: "NEXT AIR DROP: 06:30", "FRAGILE: SNOW SAMPLES", and "ROUTE B: ICE FIELD". Sharp typography, balanced margins, detailed faces and feathers, playful professional mood, high instruction fidelity, no misspelled text, premium magazine poster finish.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'baidu:ernie-image@0',
positivePrompt: 'A crisp vertical editorial poster for an imaginary penguin-run postal station at the South Pole, centered symmetrical layout, clean graphic illustration mixed with cinematic realism. Top headline in large perfectly readable block letters: "SOUTH POLE SORTING ROOM". Main scene: penguins in tiny navy courier caps organizing colorful envelopes on long wooden tables, snow sample crates, wax seals, red string bundles, stamped maps, frost on metal shelves, warm amber task lamps, pale blue snowfield visible through round porthole windows. Include three small labeled inset panels along the bottom with clear readable captions: "NEXT AIR DROP: 06:30", "FRAGILE: SNOW SAMPLES", and "ROUTE B: ICE FIELD". Sharp typography, balanced margins, detailed faces and feathers, playful professional mood, high instruction fidelity, no misspelled text, premium magazine poster finish.',
width: 1024,
height: 1536,
seed: 61173,
steps: 50,
CFGScale: 6.5
})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": "baidu:ernie-image@0",
"positivePrompt": "A crisp vertical editorial poster for an imaginary penguin-run postal station at the South Pole, centered symmetrical layout, clean graphic illustration mixed with cinematic realism. Top headline in large perfectly readable block letters: \"SOUTH POLE SORTING ROOM\". Main scene: penguins in tiny navy courier caps organizing colorful envelopes on long wooden tables, snow sample crates, wax seals, red string bundles, stamped maps, frost on metal shelves, warm amber task lamps, pale blue snowfield visible through round porthole windows. Include three small labeled inset panels along the bottom with clear readable captions: \"NEXT AIR DROP: 06:30\", \"FRAGILE: SNOW SAMPLES\", and \"ROUTE B: ICE FIELD\". Sharp typography, balanced margins, detailed faces and feathers, playful professional mood, high instruction fidelity, no misspelled text, premium magazine poster finish.",
"width": 1024,
"height": 1536,
"seed": 61173,
"steps": 50,
"CFGScale": 6.5
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "547922b3-93a4-4577-a9cf-106707499de7",
"model": "baidu:ernie-image@0",
"positivePrompt": "A crisp vertical editorial poster for an imaginary penguin-run postal station at the South Pole, centered symmetrical layout, clean graphic illustration mixed with cinematic realism. Top headline in large perfectly readable block letters: \"SOUTH POLE SORTING ROOM\". Main scene: penguins in tiny navy courier caps organizing colorful envelopes on long wooden tables, snow sample crates, wax seals, red string bundles, stamped maps, frost on metal shelves, warm amber task lamps, pale blue snowfield visible through round porthole windows. Include three small labeled inset panels along the bottom with clear readable captions: \"NEXT AIR DROP: 06:30\", \"FRAGILE: SNOW SAMPLES\", and \"ROUTE B: ICE FIELD\". Sharp typography, balanced margins, detailed faces and feathers, playful professional mood, high instruction fidelity, no misspelled text, premium magazine poster finish.",
"width": 1024,
"height": 1536,
"seed": 61173,
"steps": 50,
"CFGScale": 6.5
}
]'runware run baidu:ernie-image@0 \
positivePrompt="A crisp vertical editorial poster for an imaginary penguin-run postal station at the South Pole, centered symmetrical layout, clean graphic illustration mixed with cinematic realism. Top headline in large perfectly readable block letters: \"SOUTH POLE SORTING ROOM\". Main scene: penguins in tiny navy courier caps organizing colorful envelopes on long wooden tables, snow sample crates, wax seals, red string bundles, stamped maps, frost on metal shelves, warm amber task lamps, pale blue snowfield visible through round porthole windows. Include three small labeled inset panels along the bottom with clear readable captions: \"NEXT AIR DROP: 06:30\", \"FRAGILE: SNOW SAMPLES\", and \"ROUTE B: ICE FIELD\". Sharp typography, balanced margins, detailed faces and feathers, playful professional mood, high instruction fidelity, no misspelled text, premium magazine poster finish." \
width=1024 \
height=1536 \
seed=61173 \
steps=50 \
CFGScale=6.5{
"taskType": "imageInference",
"taskUUID": "547922b3-93a4-4577-a9cf-106707499de7",
"model": "baidu:ernie-image@0",
"positivePrompt": "A crisp vertical editorial poster for an imaginary penguin-run postal station at the South Pole, centered symmetrical layout, clean graphic illustration mixed with cinematic realism. Top headline in large perfectly readable block letters: \"SOUTH POLE SORTING ROOM\". Main scene: penguins in tiny navy courier caps organizing colorful envelopes on long wooden tables, snow sample crates, wax seals, red string bundles, stamped maps, frost on metal shelves, warm amber task lamps, pale blue snowfield visible through round porthole windows. Include three small labeled inset panels along the bottom with clear readable captions: \"NEXT AIR DROP: 06:30\", \"FRAGILE: SNOW SAMPLES\", and \"ROUTE B: ICE FIELD\". Sharp typography, balanced margins, detailed faces and feathers, playful professional mood, high instruction fidelity, no misspelled text, premium magazine poster finish.",
"width": 1024,
"height": 1536,
"seed": 61173,
"steps": 50,
"CFGScale": 6.5
}Response
{
"taskType": "imageInference",
"taskUUID": "547922b3-93a4-4577-a9cf-106707499de7",
"imageUUID": "fbe87c0d-23b1-4656-8eb9-d32654cbc2d7",
"imageURL": "https://im.runware.ai/image/os/a02d21/ws/3/ii/fbe87c0d-23b1-4656-8eb9-d32654cbc2d7.jpg",
"seed": 61173,
"cost": 0.0192
}
Create a polished landscape-format six-panel field manual page for a miniature orchard robotics crew. Use a precise 3 columns by 2 rows layout with thin cream dividers and small numbered tabs. Scene style: warm gouache-like editorial illustration, crisp linework, cheerful scientific tone, detailed apple branches, copper micro-robots, tiny conveyor nests, pollen collection jars, soft morning light. Include clearly readable English text: title at top 'ORCHARD MICROBOT FIELD GUIDE'; panel labels exactly '1 SPROUT SCAN', '2 BLOSSOM BRUSH', '3 PEST PATROL', '4 ROOT MAPPING', '5 RIPE SIGNAL', '6 NIGHT DOCK'. Each panel should match its label with distinct action and clear composition; no extra words, no watermark, no logo.
import { createClient } from '@runware/sdk'
const client = await createClient({ apiKey: process.env.RUNWARE_API_KEY })
await client.connect()
const [result] = await client.run({
model: 'baidu:ernie-image@0',
positivePrompt: 'Create a polished landscape-format six-panel field manual page for a miniature orchard robotics crew. Use a precise 3 columns by 2 rows layout with thin cream dividers and small numbered tabs. Scene style: warm gouache-like editorial illustration, crisp linework, cheerful scientific tone, detailed apple branches, copper micro-robots, tiny conveyor nests, pollen collection jars, soft morning light. Include clearly readable English text: title at top \'ORCHARD MICROBOT FIELD GUIDE\'; panel labels exactly \'1 SPROUT SCAN\', \'2 BLOSSOM BRUSH\', \'3 PEST PATROL\', \'4 ROOT MAPPING\', \'5 RIPE SIGNAL\', \'6 NIGHT DOCK\'. Each panel should match its label with distinct action and clear composition; no extra words, no watermark, no logo.',
width: 1344,
height: 896,
seed: 38438,
steps: 50,
CFGScale: 5.5
})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": "baidu:ernie-image@0",
"positivePrompt": "Create a polished landscape-format six-panel field manual page for a miniature orchard robotics crew. Use a precise 3 columns by 2 rows layout with thin cream dividers and small numbered tabs. Scene style: warm gouache-like editorial illustration, crisp linework, cheerful scientific tone, detailed apple branches, copper micro-robots, tiny conveyor nests, pollen collection jars, soft morning light. Include clearly readable English text: title at top 'ORCHARD MICROBOT FIELD GUIDE'; panel labels exactly '1 SPROUT SCAN', '2 BLOSSOM BRUSH', '3 PEST PATROL', '4 ROOT MAPPING', '5 RIPE SIGNAL', '6 NIGHT DOCK'. Each panel should match its label with distinct action and clear composition; no extra words, no watermark, no logo.",
"width": 1344,
"height": 896,
"seed": 38438,
"steps": 50,
"CFGScale": 5.5
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "e65d96f0-3512-4274-831d-a9b16209fdb5",
"model": "baidu:ernie-image@0",
"positivePrompt": "Create a polished landscape-format six-panel field manual page for a miniature orchard robotics crew. Use a precise 3 columns by 2 rows layout with thin cream dividers and small numbered tabs. Scene style: warm gouache-like editorial illustration, crisp linework, cheerful scientific tone, detailed apple branches, copper micro-robots, tiny conveyor nests, pollen collection jars, soft morning light. Include clearly readable English text: title at top 'ORCHARD MICROBOT FIELD GUIDE'; panel labels exactly '1 SPROUT SCAN', '2 BLOSSOM BRUSH', '3 PEST PATROL', '4 ROOT MAPPING', '5 RIPE SIGNAL', '6 NIGHT DOCK'. Each panel should match its label with distinct action and clear composition; no extra words, no watermark, no logo.",
"width": 1344,
"height": 896,
"seed": 38438,
"steps": 50,
"CFGScale": 5.5
}
]'runware run baidu:ernie-image@0 \
positivePrompt="Create a polished landscape-format six-panel field manual page for a miniature orchard robotics crew. Use a precise 3 columns by 2 rows layout with thin cream dividers and small numbered tabs. Scene style: warm gouache-like editorial illustration, crisp linework, cheerful scientific tone, detailed apple branches, copper micro-robots, tiny conveyor nests, pollen collection jars, soft morning light. Include clearly readable English text: title at top 'ORCHARD MICROBOT FIELD GUIDE'; panel labels exactly '1 SPROUT SCAN', '2 BLOSSOM BRUSH', '3 PEST PATROL', '4 ROOT MAPPING', '5 RIPE SIGNAL', '6 NIGHT DOCK'. Each panel should match its label with distinct action and clear composition; no extra words, no watermark, no logo." \
width=1344 \
height=896 \
seed=38438 \
steps=50 \
CFGScale=5.5{
"taskType": "imageInference",
"taskUUID": "e65d96f0-3512-4274-831d-a9b16209fdb5",
"model": "baidu:ernie-image@0",
"positivePrompt": "Create a polished landscape-format six-panel field manual page for a miniature orchard robotics crew. Use a precise 3 columns by 2 rows layout with thin cream dividers and small numbered tabs. Scene style: warm gouache-like editorial illustration, crisp linework, cheerful scientific tone, detailed apple branches, copper micro-robots, tiny conveyor nests, pollen collection jars, soft morning light. Include clearly readable English text: title at top 'ORCHARD MICROBOT FIELD GUIDE'; panel labels exactly '1 SPROUT SCAN', '2 BLOSSOM BRUSH', '3 PEST PATROL', '4 ROOT MAPPING', '5 RIPE SIGNAL', '6 NIGHT DOCK'. Each panel should match its label with distinct action and clear composition; no extra words, no watermark, no logo.",
"width": 1344,
"height": 896,
"seed": 38438,
"steps": 50,
"CFGScale": 5.5
}Response
{
"taskType": "imageInference",
"taskUUID": "e65d96f0-3512-4274-831d-a9b16209fdb5",
"imageUUID": "56ed222d-6b66-41f5-828c-f5bd690b4742",
"imageURL": "https://im.runware.ai/image/os/a01d21/ws/3/ii/56ed222d-6b66-41f5-828c-f5bd690b4742.jpg",
"seed": 38438,
"cost": 0.0186
}
Create a crisp wide three-panel educational storyboard showing a brass clockwork tortoise carrying a miniature weather station across a windswept alpine plateau at sunrise. Panel 1: side view of the tortoise with visible gears, tiny antenna, and cargo crates; include the clear title text 'MECHANICAL FIELD NOTES'. Panel 2: close-up labeled diagram with neat callouts reading 'barometer', 'wind vane', 'solar key', and 'sample drawer'. Panel 3: route map on parchment with numbered checkpoints, mountain silhouettes, and a small scientist in a red parka taking notes. Use precise linework, warm ochre and teal palette, cinematic depth, clean margins, accurate perspective, readable typography, highly detailed, charming exploratory 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: 'baidu:ernie-image@0',
positivePrompt: 'Create a crisp wide three-panel educational storyboard showing a brass clockwork tortoise carrying a miniature weather station across a windswept alpine plateau at sunrise. Panel 1: side view of the tortoise with visible gears, tiny antenna, and cargo crates; include the clear title text \'MECHANICAL FIELD NOTES\'. Panel 2: close-up labeled diagram with neat callouts reading \'barometer\', \'wind vane\', \'solar key\', and \'sample drawer\'. Panel 3: route map on parchment with numbered checkpoints, mountain silhouettes, and a small scientist in a red parka taking notes. Use precise linework, warm ochre and teal palette, cinematic depth, clean margins, accurate perspective, readable typography, highly detailed, charming exploratory mood.',
width: 1344,
height: 768,
seed: 46617,
steps: 50,
CFGScale: 6.5
})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": "baidu:ernie-image@0",
"positivePrompt": "Create a crisp wide three-panel educational storyboard showing a brass clockwork tortoise carrying a miniature weather station across a windswept alpine plateau at sunrise. Panel 1: side view of the tortoise with visible gears, tiny antenna, and cargo crates; include the clear title text 'MECHANICAL FIELD NOTES'. Panel 2: close-up labeled diagram with neat callouts reading 'barometer', 'wind vane', 'solar key', and 'sample drawer'. Panel 3: route map on parchment with numbered checkpoints, mountain silhouettes, and a small scientist in a red parka taking notes. Use precise linework, warm ochre and teal palette, cinematic depth, clean margins, accurate perspective, readable typography, highly detailed, charming exploratory mood.",
"width": 1344,
"height": 768,
"seed": 46617,
"steps": 50,
"CFGScale": 6.5
})
asyncio.run(main())curl https://api.runware.ai/v1 \
-H "Authorization: Bearer $RUNWARE_API_KEY" \
-H "Content-Type: application/json" \
-d '[
{
"taskType": "imageInference",
"taskUUID": "8029a165-6444-4735-9ef6-ad67eb713df8",
"model": "baidu:ernie-image@0",
"positivePrompt": "Create a crisp wide three-panel educational storyboard showing a brass clockwork tortoise carrying a miniature weather station across a windswept alpine plateau at sunrise. Panel 1: side view of the tortoise with visible gears, tiny antenna, and cargo crates; include the clear title text 'MECHANICAL FIELD NOTES'. Panel 2: close-up labeled diagram with neat callouts reading 'barometer', 'wind vane', 'solar key', and 'sample drawer'. Panel 3: route map on parchment with numbered checkpoints, mountain silhouettes, and a small scientist in a red parka taking notes. Use precise linework, warm ochre and teal palette, cinematic depth, clean margins, accurate perspective, readable typography, highly detailed, charming exploratory mood.",
"width": 1344,
"height": 768,
"seed": 46617,
"steps": 50,
"CFGScale": 6.5
}
]'runware run baidu:ernie-image@0 \
positivePrompt="Create a crisp wide three-panel educational storyboard showing a brass clockwork tortoise carrying a miniature weather station across a windswept alpine plateau at sunrise. Panel 1: side view of the tortoise with visible gears, tiny antenna, and cargo crates; include the clear title text 'MECHANICAL FIELD NOTES'. Panel 2: close-up labeled diagram with neat callouts reading 'barometer', 'wind vane', 'solar key', and 'sample drawer'. Panel 3: route map on parchment with numbered checkpoints, mountain silhouettes, and a small scientist in a red parka taking notes. Use precise linework, warm ochre and teal palette, cinematic depth, clean margins, accurate perspective, readable typography, highly detailed, charming exploratory mood." \
width=1344 \
height=768 \
seed=46617 \
steps=50 \
CFGScale=6.5{
"taskType": "imageInference",
"taskUUID": "8029a165-6444-4735-9ef6-ad67eb713df8",
"model": "baidu:ernie-image@0",
"positivePrompt": "Create a crisp wide three-panel educational storyboard showing a brass clockwork tortoise carrying a miniature weather station across a windswept alpine plateau at sunrise. Panel 1: side view of the tortoise with visible gears, tiny antenna, and cargo crates; include the clear title text 'MECHANICAL FIELD NOTES'. Panel 2: close-up labeled diagram with neat callouts reading 'barometer', 'wind vane', 'solar key', and 'sample drawer'. Panel 3: route map on parchment with numbered checkpoints, mountain silhouettes, and a small scientist in a red parka taking notes. Use precise linework, warm ochre and teal palette, cinematic depth, clean margins, accurate perspective, readable typography, highly detailed, charming exploratory mood.",
"width": 1344,
"height": 768,
"seed": 46617,
"steps": 50,
"CFGScale": 6.5
}Response
{
"taskType": "imageInference",
"taskUUID": "8029a165-6444-4735-9ef6-ad67eb713df8",
"imageUUID": "977cd814-78f1-4324-b425-64860bf84c12",
"imageURL": "https://im.runware.ai/image/os/a07dlim3/ws/3/ii/977cd814-78f1-4324-b425-64860bf84c12.jpg",
"seed": 46617,
"cost": 0.0186
}