live
MODEL IDcivitai:101055@128078

Stable Diffusion XL v1.0 VAE Fix

Stability AI
by

Stable Diffusion XL v1.0 VAE Fix is the SDXL 1.0 base checkpoint packaged with a corrected VAE for more stable inference. It keeps SDXL's strong prompt understanding, broad visual range, native 1024x1024 generation, and support for both text-to-image and image-to-image workflows, while reducing the artifact and decoding issues associated with the original embedded VAE.

Stable Diffusion XL v1.0 VAE Fix

text-to-image

Marine Water Tester Lifestyle Photograph$0.0013~4s
Marine Water Tester Lifestyle Photograph

Photorealistic commercial lifestyle photograph of a rugged portable water-quality meter in active use on a shellfish farm workboat at blue hour. The compact professional instrument is the clear hero in the near foreground: matte graphite housing, rounded protective corners, tactile rubber controls, a small illuminated color display with simple non-legible measurement graphics, and a stainless-steel probe lowered into a clear seawater sample jar. A shellfish farmer in a coral-red waterproof jacket and dark teal bib overalls holds the device naturally with one gloved hand; only torso, arms, and a subtle partial profile are visible so attention remains on the product. Wet black rope, stacked oyster baskets, a galvanized cleat, seaweed fragments, and beads of saltwater create rich working detail across the boat deck. Behind them, orderly aquaculture lines recede across calm slate-blue water toward a misty low coastline. Cool cyan dawn light, soft overcast sky, restrained coral accent, realistic reflections on wet surfaces, crisp condensation and water droplets, premium documentary product-campaign art direction. Landscape composition, product positioned near the right third, probe and rope lines guiding the eye through the frame, generous atmospheric background on the left, low eye-level camera angle, 50mm lens, shallow but believable depth of field, sharp product texture, softly rendered worker and distant farm, natural cinematic lighting, high-end outdoor equipment photography, authentic working environment, no visible branding, no added typography.

Try in Playground
import { createClient } from '@runware/sdk'

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

const [result] = await client.run({
  model: 'civitai:101055@128078',
  positivePrompt: 'Photorealistic commercial lifestyle photograph of a rugged portable water-quality meter in active use on a shellfish farm workboat at blue hour. The compact professional instrument is the clear hero in the near foreground: matte graphite housing, rounded protective corners, tactile rubber controls, a small illuminated color display with simple non-legible measurement graphics, and a stainless-steel probe lowered into a clear seawater sample jar. A shellfish farmer in a coral-red waterproof jacket and dark teal bib overalls holds the device naturally with one gloved hand; only torso, arms, and a subtle partial profile are visible so attention remains on the product. Wet black rope, stacked oyster baskets, a galvanized cleat, seaweed fragments, and beads of saltwater create rich working detail across the boat deck. Behind them, orderly aquaculture lines recede across calm slate-blue water toward a misty low coastline. Cool cyan dawn light, soft overcast sky, restrained coral accent, realistic reflections on wet surfaces, crisp condensation and water droplets, premium documentary product-campaign art direction. Landscape composition, product positioned near the right third, probe and rope lines guiding the eye through the frame, generous atmospheric background on the left, low eye-level camera angle, 50mm lens, shallow but believable depth of field, sharp product texture, softly rendered worker and distant farm, natural cinematic lighting, high-end outdoor equipment photography, authentic working environment, no visible branding, no added typography.',
  negativePrompt: 'illustration, CGI, 3D render, fantasy, surrealism, studio backdrop, pristine unused equipment, oversized device, duplicate product, extra fingers, malformed hands, fused gloves, broken probe, disconnected cable, illegible prominent text, logo, brand name, watermark, caption, border, interface overlay, excessive bokeh, oversaturated colors, harsh flash, plastic-looking water, distorted boat, tilted horizon, clutter obscuring the product, low detail, blur, noise',
  width: 1216,
  height: 832,
  steps: 28,
  scheduler: 'DPM++ 2M Karras',
  CFGScale: 7
})
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": "civitai:101055@128078",
            "positivePrompt": "Photorealistic commercial lifestyle photograph of a rugged portable water-quality meter in active use on a shellfish farm workboat at blue hour. The compact professional instrument is the clear hero in the near foreground: matte graphite housing, rounded protective corners, tactile rubber controls, a small illuminated color display with simple non-legible measurement graphics, and a stainless-steel probe lowered into a clear seawater sample jar. A shellfish farmer in a coral-red waterproof jacket and dark teal bib overalls holds the device naturally with one gloved hand; only torso, arms, and a subtle partial profile are visible so attention remains on the product. Wet black rope, stacked oyster baskets, a galvanized cleat, seaweed fragments, and beads of saltwater create rich working detail across the boat deck. Behind them, orderly aquaculture lines recede across calm slate-blue water toward a misty low coastline. Cool cyan dawn light, soft overcast sky, restrained coral accent, realistic reflections on wet surfaces, crisp condensation and water droplets, premium documentary product-campaign art direction. Landscape composition, product positioned near the right third, probe and rope lines guiding the eye through the frame, generous atmospheric background on the left, low eye-level camera angle, 50mm lens, shallow but believable depth of field, sharp product texture, softly rendered worker and distant farm, natural cinematic lighting, high-end outdoor equipment photography, authentic working environment, no visible branding, no added typography.",
            "negativePrompt": "illustration, CGI, 3D render, fantasy, surrealism, studio backdrop, pristine unused equipment, oversized device, duplicate product, extra fingers, malformed hands, fused gloves, broken probe, disconnected cable, illegible prominent text, logo, brand name, watermark, caption, border, interface overlay, excessive bokeh, oversaturated colors, harsh flash, plastic-looking water, distorted boat, tilted horizon, clutter obscuring the product, low detail, blur, noise",
            "width": 1216,
            "height": 832,
            "steps": 28,
            "scheduler": "DPM++ 2M Karras",
            "CFGScale": 7
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "imageInference",
      "taskUUID": "ae6f38f9-7c8b-49d9-8f93-269197c3de44",
      "model": "civitai:101055@128078",
      "positivePrompt": "Photorealistic commercial lifestyle photograph of a rugged portable water-quality meter in active use on a shellfish farm workboat at blue hour. The compact professional instrument is the clear hero in the near foreground: matte graphite housing, rounded protective corners, tactile rubber controls, a small illuminated color display with simple non-legible measurement graphics, and a stainless-steel probe lowered into a clear seawater sample jar. A shellfish farmer in a coral-red waterproof jacket and dark teal bib overalls holds the device naturally with one gloved hand; only torso, arms, and a subtle partial profile are visible so attention remains on the product. Wet black rope, stacked oyster baskets, a galvanized cleat, seaweed fragments, and beads of saltwater create rich working detail across the boat deck. Behind them, orderly aquaculture lines recede across calm slate-blue water toward a misty low coastline. Cool cyan dawn light, soft overcast sky, restrained coral accent, realistic reflections on wet surfaces, crisp condensation and water droplets, premium documentary product-campaign art direction. Landscape composition, product positioned near the right third, probe and rope lines guiding the eye through the frame, generous atmospheric background on the left, low eye-level camera angle, 50mm lens, shallow but believable depth of field, sharp product texture, softly rendered worker and distant farm, natural cinematic lighting, high-end outdoor equipment photography, authentic working environment, no visible branding, no added typography.",
      "negativePrompt": "illustration, CGI, 3D render, fantasy, surrealism, studio backdrop, pristine unused equipment, oversized device, duplicate product, extra fingers, malformed hands, fused gloves, broken probe, disconnected cable, illegible prominent text, logo, brand name, watermark, caption, border, interface overlay, excessive bokeh, oversaturated colors, harsh flash, plastic-looking water, distorted boat, tilted horizon, clutter obscuring the product, low detail, blur, noise",
      "width": 1216,
      "height": 832,
      "steps": 28,
      "scheduler": "DPM++ 2M Karras",
      "CFGScale": 7
    }
  ]'
runware run civitai:101055@128078 \
  positivePrompt="Photorealistic commercial lifestyle photograph of a rugged portable water-quality meter in active use on a shellfish farm workboat at blue hour. The compact professional instrument is the clear hero in the near foreground: matte graphite housing, rounded protective corners, tactile rubber controls, a small illuminated color display with simple non-legible measurement graphics, and a stainless-steel probe lowered into a clear seawater sample jar. A shellfish farmer in a coral-red waterproof jacket and dark teal bib overalls holds the device naturally with one gloved hand; only torso, arms, and a subtle partial profile are visible so attention remains on the product. Wet black rope, stacked oyster baskets, a galvanized cleat, seaweed fragments, and beads of saltwater create rich working detail across the boat deck. Behind them, orderly aquaculture lines recede across calm slate-blue water toward a misty low coastline. Cool cyan dawn light, soft overcast sky, restrained coral accent, realistic reflections on wet surfaces, crisp condensation and water droplets, premium documentary product-campaign art direction. Landscape composition, product positioned near the right third, probe and rope lines guiding the eye through the frame, generous atmospheric background on the left, low eye-level camera angle, 50mm lens, shallow but believable depth of field, sharp product texture, softly rendered worker and distant farm, natural cinematic lighting, high-end outdoor equipment photography, authentic working environment, no visible branding, no added typography." \
  negativePrompt="illustration, CGI, 3D render, fantasy, surrealism, studio backdrop, pristine unused equipment, oversized device, duplicate product, extra fingers, malformed hands, fused gloves, broken probe, disconnected cable, illegible prominent text, logo, brand name, watermark, caption, border, interface overlay, excessive bokeh, oversaturated colors, harsh flash, plastic-looking water, distorted boat, tilted horizon, clutter obscuring the product, low detail, blur, noise" \
  width=1216 \
  height=832 \
  steps=28 \
  scheduler="DPM++ 2M Karras" \
  CFGScale=7
{
  "taskType": "imageInference",
  "taskUUID": "ae6f38f9-7c8b-49d9-8f93-269197c3de44",
  "model": "civitai:101055@128078",
  "positivePrompt": "Photorealistic commercial lifestyle photograph of a rugged portable water-quality meter in active use on a shellfish farm workboat at blue hour. The compact professional instrument is the clear hero in the near foreground: matte graphite housing, rounded protective corners, tactile rubber controls, a small illuminated color display with simple non-legible measurement graphics, and a stainless-steel probe lowered into a clear seawater sample jar. A shellfish farmer in a coral-red waterproof jacket and dark teal bib overalls holds the device naturally with one gloved hand; only torso, arms, and a subtle partial profile are visible so attention remains on the product. Wet black rope, stacked oyster baskets, a galvanized cleat, seaweed fragments, and beads of saltwater create rich working detail across the boat deck. Behind them, orderly aquaculture lines recede across calm slate-blue water toward a misty low coastline. Cool cyan dawn light, soft overcast sky, restrained coral accent, realistic reflections on wet surfaces, crisp condensation and water droplets, premium documentary product-campaign art direction. Landscape composition, product positioned near the right third, probe and rope lines guiding the eye through the frame, generous atmospheric background on the left, low eye-level camera angle, 50mm lens, shallow but believable depth of field, sharp product texture, softly rendered worker and distant farm, natural cinematic lighting, high-end outdoor equipment photography, authentic working environment, no visible branding, no added typography.",
  "negativePrompt": "illustration, CGI, 3D render, fantasy, surrealism, studio backdrop, pristine unused equipment, oversized device, duplicate product, extra fingers, malformed hands, fused gloves, broken probe, disconnected cable, illegible prominent text, logo, brand name, watermark, caption, border, interface overlay, excessive bokeh, oversaturated colors, harsh flash, plastic-looking water, distorted boat, tilted horizon, clutter obscuring the product, low detail, blur, noise",
  "width": 1216,
  "height": 832,
  "steps": 28,
  "scheduler": "DPM++ 2M Karras",
  "CFGScale": 7
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "ae6f38f9-7c8b-49d9-8f93-269197c3de44",
  "imageUUID": "8e53517e-e3b4-4a83-90fd-21af336d441c",
  "imageURL": "https://im.runware.ai/image/os/a03d21/ws/3/ii/8e53517e-e3b4-4a83-90fd-21af336d441c.jpg",
  "seed": 909218972,
  "cost": 0.0013
}

image-to-image

Urban Wildlife Officer Persona Portrait$0.0013~4s
Urban Wildlife Officer Persona Portrait

Use the seed image as the clear identity and composition guide. Substantially transform the photograph into a premium hand-cut paper and opaque gouache editorial portrait for a city urban-wildlife education campaign. Preserve the same recognizable woman, facial proportions, short silver bob, round tortoiseshell glasses, beauty mark beneath her left eye, direct gaze, three-quarter-length pose, clipboard placement, and centered vertical silhouette. Render her as a confident recurring field-officer persona in navy utility coveralls, forest-green bandana, and small brass raccoon pin. Layered cut-paper shapes with tactile deckled edges, matte gouache texture, restrained geometric shadow shapes, crisp facial likeness, sophisticated civic-publication art direction. Palette of charcoal navy, eucalyptus green, warm cream, muted coral, and small brass accents. Replace the plain studio backdrop with a graphic nocturnal city-park setting: simplified brick retaining wall, native grasses, circular storm-drain motif, subtle raccoon paw-print shapes, and a pale cream moon disk framing her head without resembling a halo. Calm, observant, practical mood rather than whimsical. Strong readable silhouette, balanced negative space, polished magazine-cover quality, no lettering, no logo, no border.

Try in Playground
import { createClient } from '@runware/sdk'

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

const [result] = await client.run({
  model: 'civitai:101055@128078',
  positivePrompt: 'Use the seed image as the clear identity and composition guide. Substantially transform the photograph into a premium hand-cut paper and opaque gouache editorial portrait for a city urban-wildlife education campaign. Preserve the same recognizable woman, facial proportions, short silver bob, round tortoiseshell glasses, beauty mark beneath her left eye, direct gaze, three-quarter-length pose, clipboard placement, and centered vertical silhouette. Render her as a confident recurring field-officer persona in navy utility coveralls, forest-green bandana, and small brass raccoon pin. Layered cut-paper shapes with tactile deckled edges, matte gouache texture, restrained geometric shadow shapes, crisp facial likeness, sophisticated civic-publication art direction. Palette of charcoal navy, eucalyptus green, warm cream, muted coral, and small brass accents. Replace the plain studio backdrop with a graphic nocturnal city-park setting: simplified brick retaining wall, native grasses, circular storm-drain motif, subtle raccoon paw-print shapes, and a pale cream moon disk framing her head without resembling a halo. Calm, observant, practical mood rather than whimsical. Strong readable silhouette, balanced negative space, polished magazine-cover quality, no lettering, no logo, no border.',
  negativePrompt: 'photorealistic output, generic face, altered age, different hairstyle, missing glasses, extra people, mascot costume, cartoon raccoon, childish illustration, fantasy clothing, exaggerated expression, glamour pose, cluttered background, illegible clipboard writing, text, typography, logo, watermark, frame, distorted hands, extra fingers, duplicate limbs, asymmetrical eyes, plastic 3D rendering',
  width: 832,
  height: 1216,
  steps: 30,
  scheduler: 'Euler a',
  strength: 0.62,
  inputs: {
    seedImage: 'https://assets.runware.ai/assets/inputs/4d18a5e4-3d38-4c59-a093-c9b07eb3b1d7.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": "civitai:101055@128078",
            "positivePrompt": "Use the seed image as the clear identity and composition guide. Substantially transform the photograph into a premium hand-cut paper and opaque gouache editorial portrait for a city urban-wildlife education campaign. Preserve the same recognizable woman, facial proportions, short silver bob, round tortoiseshell glasses, beauty mark beneath her left eye, direct gaze, three-quarter-length pose, clipboard placement, and centered vertical silhouette. Render her as a confident recurring field-officer persona in navy utility coveralls, forest-green bandana, and small brass raccoon pin. Layered cut-paper shapes with tactile deckled edges, matte gouache texture, restrained geometric shadow shapes, crisp facial likeness, sophisticated civic-publication art direction. Palette of charcoal navy, eucalyptus green, warm cream, muted coral, and small brass accents. Replace the plain studio backdrop with a graphic nocturnal city-park setting: simplified brick retaining wall, native grasses, circular storm-drain motif, subtle raccoon paw-print shapes, and a pale cream moon disk framing her head without resembling a halo. Calm, observant, practical mood rather than whimsical. Strong readable silhouette, balanced negative space, polished magazine-cover quality, no lettering, no logo, no border.",
            "negativePrompt": "photorealistic output, generic face, altered age, different hairstyle, missing glasses, extra people, mascot costume, cartoon raccoon, childish illustration, fantasy clothing, exaggerated expression, glamour pose, cluttered background, illegible clipboard writing, text, typography, logo, watermark, frame, distorted hands, extra fingers, duplicate limbs, asymmetrical eyes, plastic 3D rendering",
            "width": 832,
            "height": 1216,
            "steps": 30,
            "scheduler": "Euler a",
            "strength": 0.62,
            "inputs": {
                "seedImage": "https://assets.runware.ai/assets/inputs/4d18a5e4-3d38-4c59-a093-c9b07eb3b1d7.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": "eb68273a-d00e-4d6c-8033-65164dfc825a",
      "model": "civitai:101055@128078",
      "positivePrompt": "Use the seed image as the clear identity and composition guide. Substantially transform the photograph into a premium hand-cut paper and opaque gouache editorial portrait for a city urban-wildlife education campaign. Preserve the same recognizable woman, facial proportions, short silver bob, round tortoiseshell glasses, beauty mark beneath her left eye, direct gaze, three-quarter-length pose, clipboard placement, and centered vertical silhouette. Render her as a confident recurring field-officer persona in navy utility coveralls, forest-green bandana, and small brass raccoon pin. Layered cut-paper shapes with tactile deckled edges, matte gouache texture, restrained geometric shadow shapes, crisp facial likeness, sophisticated civic-publication art direction. Palette of charcoal navy, eucalyptus green, warm cream, muted coral, and small brass accents. Replace the plain studio backdrop with a graphic nocturnal city-park setting: simplified brick retaining wall, native grasses, circular storm-drain motif, subtle raccoon paw-print shapes, and a pale cream moon disk framing her head without resembling a halo. Calm, observant, practical mood rather than whimsical. Strong readable silhouette, balanced negative space, polished magazine-cover quality, no lettering, no logo, no border.",
      "negativePrompt": "photorealistic output, generic face, altered age, different hairstyle, missing glasses, extra people, mascot costume, cartoon raccoon, childish illustration, fantasy clothing, exaggerated expression, glamour pose, cluttered background, illegible clipboard writing, text, typography, logo, watermark, frame, distorted hands, extra fingers, duplicate limbs, asymmetrical eyes, plastic 3D rendering",
      "width": 832,
      "height": 1216,
      "steps": 30,
      "scheduler": "Euler a",
      "strength": 0.62,
      "inputs": {
        "seedImage": "https://assets.runware.ai/assets/inputs/4d18a5e4-3d38-4c59-a093-c9b07eb3b1d7.jpg"
      }
    }
  ]'
runware run civitai:101055@128078 \
  positivePrompt="Use the seed image as the clear identity and composition guide. Substantially transform the photograph into a premium hand-cut paper and opaque gouache editorial portrait for a city urban-wildlife education campaign. Preserve the same recognizable woman, facial proportions, short silver bob, round tortoiseshell glasses, beauty mark beneath her left eye, direct gaze, three-quarter-length pose, clipboard placement, and centered vertical silhouette. Render her as a confident recurring field-officer persona in navy utility coveralls, forest-green bandana, and small brass raccoon pin. Layered cut-paper shapes with tactile deckled edges, matte gouache texture, restrained geometric shadow shapes, crisp facial likeness, sophisticated civic-publication art direction. Palette of charcoal navy, eucalyptus green, warm cream, muted coral, and small brass accents. Replace the plain studio backdrop with a graphic nocturnal city-park setting: simplified brick retaining wall, native grasses, circular storm-drain motif, subtle raccoon paw-print shapes, and a pale cream moon disk framing her head without resembling a halo. Calm, observant, practical mood rather than whimsical. Strong readable silhouette, balanced negative space, polished magazine-cover quality, no lettering, no logo, no border." \
  negativePrompt="photorealistic output, generic face, altered age, different hairstyle, missing glasses, extra people, mascot costume, cartoon raccoon, childish illustration, fantasy clothing, exaggerated expression, glamour pose, cluttered background, illegible clipboard writing, text, typography, logo, watermark, frame, distorted hands, extra fingers, duplicate limbs, asymmetrical eyes, plastic 3D rendering" \
  width=832 \
  height=1216 \
  steps=30 \
  scheduler="Euler a" \
  strength=0.62 \
  inputs.seedImage=https://assets.runware.ai/assets/inputs/4d18a5e4-3d38-4c59-a093-c9b07eb3b1d7.jpg
{
  "taskType": "imageInference",
  "taskUUID": "eb68273a-d00e-4d6c-8033-65164dfc825a",
  "model": "civitai:101055@128078",
  "positivePrompt": "Use the seed image as the clear identity and composition guide. Substantially transform the photograph into a premium hand-cut paper and opaque gouache editorial portrait for a city urban-wildlife education campaign. Preserve the same recognizable woman, facial proportions, short silver bob, round tortoiseshell glasses, beauty mark beneath her left eye, direct gaze, three-quarter-length pose, clipboard placement, and centered vertical silhouette. Render her as a confident recurring field-officer persona in navy utility coveralls, forest-green bandana, and small brass raccoon pin. Layered cut-paper shapes with tactile deckled edges, matte gouache texture, restrained geometric shadow shapes, crisp facial likeness, sophisticated civic-publication art direction. Palette of charcoal navy, eucalyptus green, warm cream, muted coral, and small brass accents. Replace the plain studio backdrop with a graphic nocturnal city-park setting: simplified brick retaining wall, native grasses, circular storm-drain motif, subtle raccoon paw-print shapes, and a pale cream moon disk framing her head without resembling a halo. Calm, observant, practical mood rather than whimsical. Strong readable silhouette, balanced negative space, polished magazine-cover quality, no lettering, no logo, no border.",
  "negativePrompt": "photorealistic output, generic face, altered age, different hairstyle, missing glasses, extra people, mascot costume, cartoon raccoon, childish illustration, fantasy clothing, exaggerated expression, glamour pose, cluttered background, illegible clipboard writing, text, typography, logo, watermark, frame, distorted hands, extra fingers, duplicate limbs, asymmetrical eyes, plastic 3D rendering",
  "width": 832,
  "height": 1216,
  "steps": 30,
  "scheduler": "Euler a",
  "strength": 0.62,
  "inputs": {
    "seedImage": "https://assets.runware.ai/assets/inputs/4d18a5e4-3d38-4c59-a093-c9b07eb3b1d7.jpg"
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "eb68273a-d00e-4d6c-8033-65164dfc825a",
  "imageUUID": "c86ac88d-f7ca-4cb7-a373-ad743369add4",
  "imageURL": "https://im.runware.ai/image/os/a01d21/ws/3/ii/c86ac88d-f7ca-4cb7-a373-ad743369add4.jpg",
  "seed": 891698148,
  "cost": 0.0013
}

expand

Rare Book Conservator Headshot$0.0013~5s
Rare Book Conservator Headshot

Create a finished 3:2 landscape environmental headshot by naturally expanding the supplied portrait beyond both horizontal edges. Preserve the conservator’s recognizable identity, age, facial proportions, silver-streaked natural hair, clothing, pose, and calm direct gaze. Apply restrained professional portrait retouching: balanced skin tone, softened temporary blemishes and under-eye shadows, crisp natural eyes, individually resolved hair, subtle catchlights, realistic pores and expression lines, no beauty-filter effect. The complete wider scene is a rare-book conservation studio: the long pale oak workbench extends across the frame, with a bone folder, linen thread, small wheat-paste brush, folded Japanese repair tissue, and one closed clothbound volume arranged sparingly. Behind her, low blue-gray flat files and warm ivory archival boxes continue naturally to both sides, softly out of focus with no readable labels. Soft north-window key light from camera left, gentle warm bounce from the workshop, understated museum-editorial photography, muted palette of charcoal, parchment, dusty blue, oak, and aged brass. Subject centered with comfortable negative space on both sides, chest-up framing, eye-level camera, 85mm portrait-lens character, shallow depth of field, refined color grading, photorealistic, dignified, trustworthy, quietly expert, no lettering.

Try in Playground
import { createClient } from '@runware/sdk'

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

const [result] = await client.run({
  model: 'civitai:101055@128078',
  positivePrompt: 'Create a finished 3:2 landscape environmental headshot by naturally expanding the supplied portrait beyond both horizontal edges. Preserve the conservator’s recognizable identity, age, facial proportions, silver-streaked natural hair, clothing, pose, and calm direct gaze. Apply restrained professional portrait retouching: balanced skin tone, softened temporary blemishes and under-eye shadows, crisp natural eyes, individually resolved hair, subtle catchlights, realistic pores and expression lines, no beauty-filter effect. The complete wider scene is a rare-book conservation studio: the long pale oak workbench extends across the frame, with a bone folder, linen thread, small wheat-paste brush, folded Japanese repair tissue, and one closed clothbound volume arranged sparingly. Behind her, low blue-gray flat files and warm ivory archival boxes continue naturally to both sides, softly out of focus with no readable labels. Soft north-window key light from camera left, gentle warm bounce from the workshop, understated museum-editorial photography, muted palette of charcoal, parchment, dusty blue, oak, and aged brass. Subject centered with comfortable negative space on both sides, chest-up framing, eye-level camera, 85mm portrait-lens character, shallow depth of field, refined color grading, photorealistic, dignified, trustworthy, quietly expert, no lettering.',
  negativePrompt: 'altered identity, younger face, plastic skin, excessive smoothing, glamour makeup, exaggerated smile, distorted facial features, asymmetrical eyes, crossed eyes, duplicate person, extra limbs, malformed hands, cluttered background, readable text, labels, logos, watermark, fantasy styling, harsh HDR, oversaturation, artificial bokeh, fisheye distortion, cutout edges, visible outpaint seams',
  width: 1152,
  height: 768,
  steps: 30,
  strength: 0.7,
  outpaint: {
    left: 256,
    right: 256,
    blur: 12
  },
  inputs: {
    seedImage: 'https://assets.runware.ai/assets/inputs/0d24170a-ed7c-48b8-8cd0-3ebfdd77e1e3.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": "civitai:101055@128078",
            "positivePrompt": "Create a finished 3:2 landscape environmental headshot by naturally expanding the supplied portrait beyond both horizontal edges. Preserve the conservator’s recognizable identity, age, facial proportions, silver-streaked natural hair, clothing, pose, and calm direct gaze. Apply restrained professional portrait retouching: balanced skin tone, softened temporary blemishes and under-eye shadows, crisp natural eyes, individually resolved hair, subtle catchlights, realistic pores and expression lines, no beauty-filter effect. The complete wider scene is a rare-book conservation studio: the long pale oak workbench extends across the frame, with a bone folder, linen thread, small wheat-paste brush, folded Japanese repair tissue, and one closed clothbound volume arranged sparingly. Behind her, low blue-gray flat files and warm ivory archival boxes continue naturally to both sides, softly out of focus with no readable labels. Soft north-window key light from camera left, gentle warm bounce from the workshop, understated museum-editorial photography, muted palette of charcoal, parchment, dusty blue, oak, and aged brass. Subject centered with comfortable negative space on both sides, chest-up framing, eye-level camera, 85mm portrait-lens character, shallow depth of field, refined color grading, photorealistic, dignified, trustworthy, quietly expert, no lettering.",
            "negativePrompt": "altered identity, younger face, plastic skin, excessive smoothing, glamour makeup, exaggerated smile, distorted facial features, asymmetrical eyes, crossed eyes, duplicate person, extra limbs, malformed hands, cluttered background, readable text, labels, logos, watermark, fantasy styling, harsh HDR, oversaturation, artificial bokeh, fisheye distortion, cutout edges, visible outpaint seams",
            "width": 1152,
            "height": 768,
            "steps": 30,
            "strength": 0.7,
            "outpaint": {
                "left": 256,
                "right": 256,
                "blur": 12
            },
            "inputs": {
                "seedImage": "https://assets.runware.ai/assets/inputs/0d24170a-ed7c-48b8-8cd0-3ebfdd77e1e3.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": "47e3f194-b0ba-4bb4-ac8d-71bad33d2db3",
      "model": "civitai:101055@128078",
      "positivePrompt": "Create a finished 3:2 landscape environmental headshot by naturally expanding the supplied portrait beyond both horizontal edges. Preserve the conservator’s recognizable identity, age, facial proportions, silver-streaked natural hair, clothing, pose, and calm direct gaze. Apply restrained professional portrait retouching: balanced skin tone, softened temporary blemishes and under-eye shadows, crisp natural eyes, individually resolved hair, subtle catchlights, realistic pores and expression lines, no beauty-filter effect. The complete wider scene is a rare-book conservation studio: the long pale oak workbench extends across the frame, with a bone folder, linen thread, small wheat-paste brush, folded Japanese repair tissue, and one closed clothbound volume arranged sparingly. Behind her, low blue-gray flat files and warm ivory archival boxes continue naturally to both sides, softly out of focus with no readable labels. Soft north-window key light from camera left, gentle warm bounce from the workshop, understated museum-editorial photography, muted palette of charcoal, parchment, dusty blue, oak, and aged brass. Subject centered with comfortable negative space on both sides, chest-up framing, eye-level camera, 85mm portrait-lens character, shallow depth of field, refined color grading, photorealistic, dignified, trustworthy, quietly expert, no lettering.",
      "negativePrompt": "altered identity, younger face, plastic skin, excessive smoothing, glamour makeup, exaggerated smile, distorted facial features, asymmetrical eyes, crossed eyes, duplicate person, extra limbs, malformed hands, cluttered background, readable text, labels, logos, watermark, fantasy styling, harsh HDR, oversaturation, artificial bokeh, fisheye distortion, cutout edges, visible outpaint seams",
      "width": 1152,
      "height": 768,
      "steps": 30,
      "strength": 0.7,
      "outpaint": {
        "left": 256,
        "right": 256,
        "blur": 12
      },
      "inputs": {
        "seedImage": "https://assets.runware.ai/assets/inputs/0d24170a-ed7c-48b8-8cd0-3ebfdd77e1e3.jpg"
      }
    }
  ]'
runware run civitai:101055@128078 \
  positivePrompt="Create a finished 3:2 landscape environmental headshot by naturally expanding the supplied portrait beyond both horizontal edges. Preserve the conservator’s recognizable identity, age, facial proportions, silver-streaked natural hair, clothing, pose, and calm direct gaze. Apply restrained professional portrait retouching: balanced skin tone, softened temporary blemishes and under-eye shadows, crisp natural eyes, individually resolved hair, subtle catchlights, realistic pores and expression lines, no beauty-filter effect. The complete wider scene is a rare-book conservation studio: the long pale oak workbench extends across the frame, with a bone folder, linen thread, small wheat-paste brush, folded Japanese repair tissue, and one closed clothbound volume arranged sparingly. Behind her, low blue-gray flat files and warm ivory archival boxes continue naturally to both sides, softly out of focus with no readable labels. Soft north-window key light from camera left, gentle warm bounce from the workshop, understated museum-editorial photography, muted palette of charcoal, parchment, dusty blue, oak, and aged brass. Subject centered with comfortable negative space on both sides, chest-up framing, eye-level camera, 85mm portrait-lens character, shallow depth of field, refined color grading, photorealistic, dignified, trustworthy, quietly expert, no lettering." \
  negativePrompt="altered identity, younger face, plastic skin, excessive smoothing, glamour makeup, exaggerated smile, distorted facial features, asymmetrical eyes, crossed eyes, duplicate person, extra limbs, malformed hands, cluttered background, readable text, labels, logos, watermark, fantasy styling, harsh HDR, oversaturation, artificial bokeh, fisheye distortion, cutout edges, visible outpaint seams" \
  width=1152 \
  height=768 \
  steps=30 \
  strength=0.7 \
  outpaint.left=256 \
  outpaint.right=256 \
  outpaint.blur=12 \
  inputs.seedImage=https://assets.runware.ai/assets/inputs/0d24170a-ed7c-48b8-8cd0-3ebfdd77e1e3.jpg
{
  "taskType": "imageInference",
  "taskUUID": "47e3f194-b0ba-4bb4-ac8d-71bad33d2db3",
  "model": "civitai:101055@128078",
  "positivePrompt": "Create a finished 3:2 landscape environmental headshot by naturally expanding the supplied portrait beyond both horizontal edges. Preserve the conservator’s recognizable identity, age, facial proportions, silver-streaked natural hair, clothing, pose, and calm direct gaze. Apply restrained professional portrait retouching: balanced skin tone, softened temporary blemishes and under-eye shadows, crisp natural eyes, individually resolved hair, subtle catchlights, realistic pores and expression lines, no beauty-filter effect. The complete wider scene is a rare-book conservation studio: the long pale oak workbench extends across the frame, with a bone folder, linen thread, small wheat-paste brush, folded Japanese repair tissue, and one closed clothbound volume arranged sparingly. Behind her, low blue-gray flat files and warm ivory archival boxes continue naturally to both sides, softly out of focus with no readable labels. Soft north-window key light from camera left, gentle warm bounce from the workshop, understated museum-editorial photography, muted palette of charcoal, parchment, dusty blue, oak, and aged brass. Subject centered with comfortable negative space on both sides, chest-up framing, eye-level camera, 85mm portrait-lens character, shallow depth of field, refined color grading, photorealistic, dignified, trustworthy, quietly expert, no lettering.",
  "negativePrompt": "altered identity, younger face, plastic skin, excessive smoothing, glamour makeup, exaggerated smile, distorted facial features, asymmetrical eyes, crossed eyes, duplicate person, extra limbs, malformed hands, cluttered background, readable text, labels, logos, watermark, fantasy styling, harsh HDR, oversaturation, artificial bokeh, fisheye distortion, cutout edges, visible outpaint seams",
  "width": 1152,
  "height": 768,
  "steps": 30,
  "strength": 0.7,
  "outpaint": {
    "left": 256,
    "right": 256,
    "blur": 12
  },
  "inputs": {
    "seedImage": "https://assets.runware.ai/assets/inputs/0d24170a-ed7c-48b8-8cd0-3ebfdd77e1e3.jpg"
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "47e3f194-b0ba-4bb4-ac8d-71bad33d2db3",
  "imageUUID": "77a7baad-ca20-4232-9174-59ce92559147",
  "imageURL": "https://im.runware.ai/image/os/a02d21/ws/3/ii/77a7baad-ca20-4232-9174-59ce92559147.jpg",
  "seed": 2071426080,
  "cost": 0.0013
}