MODEL IDsourceful:riverflow-2.5@pro
live

Riverflow 2.5 Pro

Sourceful
by Sourceful

Riverflow 2.5 Pro is the higher-capability variant in Sourceful's Riverflow 2.5 family. It supports both text-to-image and image-to-image workflows and is positioned for commercial visual work that needs stronger output quality, tighter brand control, and more dependable production results across packaging, product imagery, advertising, and design-heavy creative pipelines.

Riverflow 2.5 Pro
text-to-image

Historic Cemetery Flood Adaptation Visualization

Historic Cemetery Flood Adaptation Visualization

Create a finished landscape-architecture visualization for a municipal planning presentation about flood adaptation at a historic coastal cemetery. Show one coherent oblique cutaway view across a gently sloping cemetery immediately after rain. The clear subject is a discreet new stormwater landscape woven respectfully among weathered nineteenth-century limestone headstones, mature live oaks, and low meadow grass. A raised permeable gravel path curves through the middle ground, crossing a shallow planted bioswale filled with blue flag iris, soft rush, sedges, and swamp milkweed. Small stone check dams slow the remaining rainwater, while a recessed rain garden collects runoff near the downhill boundary. Keep all interventions understated, dignified, realistic, and visibly accessible without disturbing graves. Along the lower foreground edge, reveal a precise sectional cutaway through the ground: permeable path layers, compacted stone base, clean gravel drainage trench, perforated pipe, geotextile, undisturbed soil horizons, carefully preserved tree roots, and a pale blue-gray water table below. Make the relationship between the visible landscape and concealed drainage construction immediately understandable without labels. Include a modest wrought-iron perimeter fence and glimpses of tidal marsh beyond the cemetery, establishing why flood resilience is needed. No workers, machinery, excavated graves, dramatic damage, or funerary activity. Lighting is calm silver-gold late afternoon after a storm, with breaks in the cloud cover, soft directional sunlight on wet stone, restrained reflections in shallow water, and humid coastal atmosphere. Art direction: highly detailed hand-rendered technical illustration combining opaque gouache, transparent watercolor washes, graphite, and colored pencil on warm ivory paper; the compositional clarity of a contemporary landscape-architecture competition drawing with the tactile dignity of a 1930s civic conservation mural. Muted mineral palette of limestone cream, moss green, celadon, iron gray, rain blue, umber, and small accents of iris violet. Accurate plant forms, believable hydrology, nuanced weathering, crisp construction details, restrained human-scale realism, quiet and reassuring mood. Landscape composition at a 3:2 ratio, with the cemetery scene occupying the upper two-thirds and the sectional ground detail integrated naturally across the lower foreground. Standalone illustration only: no title, labels, legends, numbers, logos, borders, presentation panels, interface elements, or mockup context.

import { createClient } from '@runware/sdk'

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

const [result] = await client.run({
  model: 'sourceful:riverflow-2.5@pro',
  positivePrompt: 'Create a finished landscape-architecture visualization for a municipal planning presentation about flood adaptation at a historic coastal cemetery. Show one coherent oblique cutaway view across a gently sloping cemetery immediately after rain. The clear subject is a discreet new stormwater landscape woven respectfully among weathered nineteenth-century limestone headstones, mature live oaks, and low meadow grass. A raised permeable gravel path curves through the middle ground, crossing a shallow planted bioswale filled with blue flag iris, soft rush, sedges, and swamp milkweed. Small stone check dams slow the remaining rainwater, while a recessed rain garden collects runoff near the downhill boundary. Keep all interventions understated, dignified, realistic, and visibly accessible without disturbing graves.\n\nAlong the lower foreground edge, reveal a precise sectional cutaway through the ground: permeable path layers, compacted stone base, clean gravel drainage trench, perforated pipe, geotextile, undisturbed soil horizons, carefully preserved tree roots, and a pale blue-gray water table below. Make the relationship between the visible landscape and concealed drainage construction immediately understandable without labels. Include a modest wrought-iron perimeter fence and glimpses of tidal marsh beyond the cemetery, establishing why flood resilience is needed. No workers, machinery, excavated graves, dramatic damage, or funerary activity.\n\nLighting is calm silver-gold late afternoon after a storm, with breaks in the cloud cover, soft directional sunlight on wet stone, restrained reflections in shallow water, and humid coastal atmosphere. Art direction: highly detailed hand-rendered technical illustration combining opaque gouache, transparent watercolor washes, graphite, and colored pencil on warm ivory paper; the compositional clarity of a contemporary landscape-architecture competition drawing with the tactile dignity of a 1930s civic conservation mural. Muted mineral palette of limestone cream, moss green, celadon, iron gray, rain blue, umber, and small accents of iris violet. Accurate plant forms, believable hydrology, nuanced weathering, crisp construction details, restrained human-scale realism, quiet and reassuring mood. Landscape composition at a 3:2 ratio, with the cemetery scene occupying the upper two-thirds and the sectional ground detail integrated naturally across the lower foreground. Standalone illustration only: no title, labels, legends, numbers, logos, borders, presentation panels, interface elements, or mockup context.',
  width: 1248,
  height: 832,
  settings: {
    enhancePrompt: true,
    thinkingLevel: 'medium'
  }
})
import asyncio
import os

from runware import Runware


async def main():
    async with Runware(api_key=os.environ["RUNWARE_API_KEY"]) as client:
        results = await client.run({
            "model": "sourceful:riverflow-2.5@pro",
            "positivePrompt": "Create a finished landscape-architecture visualization for a municipal planning presentation about flood adaptation at a historic coastal cemetery. Show one coherent oblique cutaway view across a gently sloping cemetery immediately after rain. The clear subject is a discreet new stormwater landscape woven respectfully among weathered nineteenth-century limestone headstones, mature live oaks, and low meadow grass. A raised permeable gravel path curves through the middle ground, crossing a shallow planted bioswale filled with blue flag iris, soft rush, sedges, and swamp milkweed. Small stone check dams slow the remaining rainwater, while a recessed rain garden collects runoff near the downhill boundary. Keep all interventions understated, dignified, realistic, and visibly accessible without disturbing graves.\n\nAlong the lower foreground edge, reveal a precise sectional cutaway through the ground: permeable path layers, compacted stone base, clean gravel drainage trench, perforated pipe, geotextile, undisturbed soil horizons, carefully preserved tree roots, and a pale blue-gray water table below. Make the relationship between the visible landscape and concealed drainage construction immediately understandable without labels. Include a modest wrought-iron perimeter fence and glimpses of tidal marsh beyond the cemetery, establishing why flood resilience is needed. No workers, machinery, excavated graves, dramatic damage, or funerary activity.\n\nLighting is calm silver-gold late afternoon after a storm, with breaks in the cloud cover, soft directional sunlight on wet stone, restrained reflections in shallow water, and humid coastal atmosphere. Art direction: highly detailed hand-rendered technical illustration combining opaque gouache, transparent watercolor washes, graphite, and colored pencil on warm ivory paper; the compositional clarity of a contemporary landscape-architecture competition drawing with the tactile dignity of a 1930s civic conservation mural. Muted mineral palette of limestone cream, moss green, celadon, iron gray, rain blue, umber, and small accents of iris violet. Accurate plant forms, believable hydrology, nuanced weathering, crisp construction details, restrained human-scale realism, quiet and reassuring mood. Landscape composition at a 3:2 ratio, with the cemetery scene occupying the upper two-thirds and the sectional ground detail integrated naturally across the lower foreground. Standalone illustration only: no title, labels, legends, numbers, logos, borders, presentation panels, interface elements, or mockup context.",
            "width": 1248,
            "height": 832,
            "settings": {
                "enhancePrompt": True,
                "thinkingLevel": "medium"
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "imageInference",
      "taskUUID": "5db4d439-0dfd-4d12-939f-2c515d9ba157",
      "model": "sourceful:riverflow-2.5@pro",
      "positivePrompt": "Create a finished landscape-architecture visualization for a municipal planning presentation about flood adaptation at a historic coastal cemetery. Show one coherent oblique cutaway view across a gently sloping cemetery immediately after rain. The clear subject is a discreet new stormwater landscape woven respectfully among weathered nineteenth-century limestone headstones, mature live oaks, and low meadow grass. A raised permeable gravel path curves through the middle ground, crossing a shallow planted bioswale filled with blue flag iris, soft rush, sedges, and swamp milkweed. Small stone check dams slow the remaining rainwater, while a recessed rain garden collects runoff near the downhill boundary. Keep all interventions understated, dignified, realistic, and visibly accessible without disturbing graves.\n\nAlong the lower foreground edge, reveal a precise sectional cutaway through the ground: permeable path layers, compacted stone base, clean gravel drainage trench, perforated pipe, geotextile, undisturbed soil horizons, carefully preserved tree roots, and a pale blue-gray water table below. Make the relationship between the visible landscape and concealed drainage construction immediately understandable without labels. Include a modest wrought-iron perimeter fence and glimpses of tidal marsh beyond the cemetery, establishing why flood resilience is needed. No workers, machinery, excavated graves, dramatic damage, or funerary activity.\n\nLighting is calm silver-gold late afternoon after a storm, with breaks in the cloud cover, soft directional sunlight on wet stone, restrained reflections in shallow water, and humid coastal atmosphere. Art direction: highly detailed hand-rendered technical illustration combining opaque gouache, transparent watercolor washes, graphite, and colored pencil on warm ivory paper; the compositional clarity of a contemporary landscape-architecture competition drawing with the tactile dignity of a 1930s civic conservation mural. Muted mineral palette of limestone cream, moss green, celadon, iron gray, rain blue, umber, and small accents of iris violet. Accurate plant forms, believable hydrology, nuanced weathering, crisp construction details, restrained human-scale realism, quiet and reassuring mood. Landscape composition at a 3:2 ratio, with the cemetery scene occupying the upper two-thirds and the sectional ground detail integrated naturally across the lower foreground. Standalone illustration only: no title, labels, legends, numbers, logos, borders, presentation panels, interface elements, or mockup context.",
      "width": 1248,
      "height": 832,
      "settings": {
        "enhancePrompt": true,
        "thinkingLevel": "medium"
      }
    }
  ]'
runware run sourceful:riverflow-2.5@pro \
  positivePrompt="Create a finished landscape-architecture visualization for a municipal planning presentation about flood adaptation at a historic coastal cemetery. Show one coherent oblique cutaway view across a gently sloping cemetery immediately after rain. The clear subject is a discreet new stormwater landscape woven respectfully among weathered nineteenth-century limestone headstones, mature live oaks, and low meadow grass. A raised permeable gravel path curves through the middle ground, crossing a shallow planted bioswale filled with blue flag iris, soft rush, sedges, and swamp milkweed. Small stone check dams slow the remaining rainwater, while a recessed rain garden collects runoff near the downhill boundary. Keep all interventions understated, dignified, realistic, and visibly accessible without disturbing graves.

Along the lower foreground edge, reveal a precise sectional cutaway through the ground: permeable path layers, compacted stone base, clean gravel drainage trench, perforated pipe, geotextile, undisturbed soil horizons, carefully preserved tree roots, and a pale blue-gray water table below. Make the relationship between the visible landscape and concealed drainage construction immediately understandable without labels. Include a modest wrought-iron perimeter fence and glimpses of tidal marsh beyond the cemetery, establishing why flood resilience is needed. No workers, machinery, excavated graves, dramatic damage, or funerary activity.

Lighting is calm silver-gold late afternoon after a storm, with breaks in the cloud cover, soft directional sunlight on wet stone, restrained reflections in shallow water, and humid coastal atmosphere. Art direction: highly detailed hand-rendered technical illustration combining opaque gouache, transparent watercolor washes, graphite, and colored pencil on warm ivory paper; the compositional clarity of a contemporary landscape-architecture competition drawing with the tactile dignity of a 1930s civic conservation mural. Muted mineral palette of limestone cream, moss green, celadon, iron gray, rain blue, umber, and small accents of iris violet. Accurate plant forms, believable hydrology, nuanced weathering, crisp construction details, restrained human-scale realism, quiet and reassuring mood. Landscape composition at a 3:2 ratio, with the cemetery scene occupying the upper two-thirds and the sectional ground detail integrated naturally across the lower foreground. Standalone illustration only: no title, labels, legends, numbers, logos, borders, presentation panels, interface elements, or mockup context." \
  width=1248 \
  height=832 \
  settings.enhancePrompt=true \
  settings.thinkingLevel=medium
{
  "taskType": "imageInference",
  "taskUUID": "5db4d439-0dfd-4d12-939f-2c515d9ba157",
  "model": "sourceful:riverflow-2.5@pro",
  "positivePrompt": "Create a finished landscape-architecture visualization for a municipal planning presentation about flood adaptation at a historic coastal cemetery. Show one coherent oblique cutaway view across a gently sloping cemetery immediately after rain. The clear subject is a discreet new stormwater landscape woven respectfully among weathered nineteenth-century limestone headstones, mature live oaks, and low meadow grass. A raised permeable gravel path curves through the middle ground, crossing a shallow planted bioswale filled with blue flag iris, soft rush, sedges, and swamp milkweed. Small stone check dams slow the remaining rainwater, while a recessed rain garden collects runoff near the downhill boundary. Keep all interventions understated, dignified, realistic, and visibly accessible without disturbing graves.\n\nAlong the lower foreground edge, reveal a precise sectional cutaway through the ground: permeable path layers, compacted stone base, clean gravel drainage trench, perforated pipe, geotextile, undisturbed soil horizons, carefully preserved tree roots, and a pale blue-gray water table below. Make the relationship between the visible landscape and concealed drainage construction immediately understandable without labels. Include a modest wrought-iron perimeter fence and glimpses of tidal marsh beyond the cemetery, establishing why flood resilience is needed. No workers, machinery, excavated graves, dramatic damage, or funerary activity.\n\nLighting is calm silver-gold late afternoon after a storm, with breaks in the cloud cover, soft directional sunlight on wet stone, restrained reflections in shallow water, and humid coastal atmosphere. Art direction: highly detailed hand-rendered technical illustration combining opaque gouache, transparent watercolor washes, graphite, and colored pencil on warm ivory paper; the compositional clarity of a contemporary landscape-architecture competition drawing with the tactile dignity of a 1930s civic conservation mural. Muted mineral palette of limestone cream, moss green, celadon, iron gray, rain blue, umber, and small accents of iris violet. Accurate plant forms, believable hydrology, nuanced weathering, crisp construction details, restrained human-scale realism, quiet and reassuring mood. Landscape composition at a 3:2 ratio, with the cemetery scene occupying the upper two-thirds and the sectional ground detail integrated naturally across the lower foreground. Standalone illustration only: no title, labels, legends, numbers, logos, borders, presentation panels, interface elements, or mockup context.",
  "width": 1248,
  "height": 832,
  "settings": {
    "enhancePrompt": true,
    "thinkingLevel": "medium"
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "5db4d439-0dfd-4d12-939f-2c515d9ba157",
  "imageUUID": "4a7b79a7-4eb1-4b15-9069-f32db55b149f",
  "imageURL": "https://im.runware.ai/image/os/a02d21/ws/3/ii/4a7b79a7-4eb1-4b15-9069-f32db55b149f.jpg",
  "seed": 1659845525,
  "cost": 0.179383
}
reference-to-image

Tidal Aquaculture Operations Icon Set

Tidal Aquaculture Operations Icon Set

Create a polished 12-icon visual system for a commercial oyster hatchery and tidal aquaculture operation. Use the first reference image strictly as the subject and equipment reference: accurately interpret the oyster-farming skiff, floating cage, mesh grow-out bag, navigation buoy, juvenile oyster seed, adult oyster shell, grading sieve, sorting basket, water-quality sample bottle, protective glove, tide gauge, and biosecurity wash station. Use the second reference image strictly as the visual-treatment reference: translate its handcrafted ceramic maritime pictograms, cobalt and turquoise glazing, small coral accents, warm cream ground, bold geometric silhouettes, rounded contours, and subtle human irregularity into a coherent modern icon family. Do not copy the objects shown in the treatment reference; apply only its palette, line character, shape language, and tactile glazed finish to the aquaculture subjects from the first reference. Present exactly twelve distinct icons in a precise four-column by three-row grid on one square warm-cream artboard. Each icon occupies an equal invisible cell with generous spacing and identical optical scale. Use simplified front or three-quarter views chosen for immediate recognition, consistent heavy stroke weight, rounded line caps, compact silhouettes, and a shared balance of filled and outlined forms. Keep every symbol legible at small sizes while retaining one or two equipment-specific details. Restrict the palette to deep cobalt blue as the primary color, tidepool turquoise as the secondary color, sparing coral orange for functional highlights, and warm cream negative space. Add a very subtle ceramic-glaze texture within the colored shapes, but preserve crisp professional edges suitable for redrawing as vectors. Flat orthographic design, no perspective scene, no shadows between icons, no gradients, no decorative border, no labels, no letters, no numbers, no logo, no mockup, no interface, and no repeated symbols. The final image should read as a finished, cohesive icon-set presentation commissioned for real hatchery operations, combining marine craft heritage with contemporary wayfinding clarity and dependable production consistency. Compose cleanly for a high-resolution 2K square output.

import { createClient } from '@runware/sdk'

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

const [result] = await client.run({
  model: 'sourceful:riverflow-2.5@pro',
  positivePrompt: 'Create a polished 12-icon visual system for a commercial oyster hatchery and tidal aquaculture operation. Use the first reference image strictly as the subject and equipment reference: accurately interpret the oyster-farming skiff, floating cage, mesh grow-out bag, navigation buoy, juvenile oyster seed, adult oyster shell, grading sieve, sorting basket, water-quality sample bottle, protective glove, tide gauge, and biosecurity wash station. Use the second reference image strictly as the visual-treatment reference: translate its handcrafted ceramic maritime pictograms, cobalt and turquoise glazing, small coral accents, warm cream ground, bold geometric silhouettes, rounded contours, and subtle human irregularity into a coherent modern icon family. Do not copy the objects shown in the treatment reference; apply only its palette, line character, shape language, and tactile glazed finish to the aquaculture subjects from the first reference.\n\nPresent exactly twelve distinct icons in a precise four-column by three-row grid on one square warm-cream artboard. Each icon occupies an equal invisible cell with generous spacing and identical optical scale. Use simplified front or three-quarter views chosen for immediate recognition, consistent heavy stroke weight, rounded line caps, compact silhouettes, and a shared balance of filled and outlined forms. Keep every symbol legible at small sizes while retaining one or two equipment-specific details. Restrict the palette to deep cobalt blue as the primary color, tidepool turquoise as the secondary color, sparing coral orange for functional highlights, and warm cream negative space. Add a very subtle ceramic-glaze texture within the colored shapes, but preserve crisp professional edges suitable for redrawing as vectors. Flat orthographic design, no perspective scene, no shadows between icons, no gradients, no decorative border, no labels, no letters, no numbers, no logo, no mockup, no interface, and no repeated symbols. The final image should read as a finished, cohesive icon-set presentation commissioned for real hatchery operations, combining marine craft heritage with contemporary wayfinding clarity and dependable production consistency. Compose cleanly for a high-resolution 2K square output.',
  resolution: '2K',
  settings: {
    thinkingLevel: 'high'
  },
  inputs: {
    referenceImages: [
      'https://assets.runware.ai/assets/inputs/1530a7bf-e3c0-4c51-b481-13ebaf8b3b51.jpg',
      'https://assets.runware.ai/assets/inputs/aa255e57-f921-46b6-a95c-3deedeca7bae.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": "sourceful:riverflow-2.5@pro",
            "positivePrompt": "Create a polished 12-icon visual system for a commercial oyster hatchery and tidal aquaculture operation. Use the first reference image strictly as the subject and equipment reference: accurately interpret the oyster-farming skiff, floating cage, mesh grow-out bag, navigation buoy, juvenile oyster seed, adult oyster shell, grading sieve, sorting basket, water-quality sample bottle, protective glove, tide gauge, and biosecurity wash station. Use the second reference image strictly as the visual-treatment reference: translate its handcrafted ceramic maritime pictograms, cobalt and turquoise glazing, small coral accents, warm cream ground, bold geometric silhouettes, rounded contours, and subtle human irregularity into a coherent modern icon family. Do not copy the objects shown in the treatment reference; apply only its palette, line character, shape language, and tactile glazed finish to the aquaculture subjects from the first reference.\n\nPresent exactly twelve distinct icons in a precise four-column by three-row grid on one square warm-cream artboard. Each icon occupies an equal invisible cell with generous spacing and identical optical scale. Use simplified front or three-quarter views chosen for immediate recognition, consistent heavy stroke weight, rounded line caps, compact silhouettes, and a shared balance of filled and outlined forms. Keep every symbol legible at small sizes while retaining one or two equipment-specific details. Restrict the palette to deep cobalt blue as the primary color, tidepool turquoise as the secondary color, sparing coral orange for functional highlights, and warm cream negative space. Add a very subtle ceramic-glaze texture within the colored shapes, but preserve crisp professional edges suitable for redrawing as vectors. Flat orthographic design, no perspective scene, no shadows between icons, no gradients, no decorative border, no labels, no letters, no numbers, no logo, no mockup, no interface, and no repeated symbols. The final image should read as a finished, cohesive icon-set presentation commissioned for real hatchery operations, combining marine craft heritage with contemporary wayfinding clarity and dependable production consistency. Compose cleanly for a high-resolution 2K square output.",
            "resolution": "2K",
            "settings": {
                "thinkingLevel": "high"
            },
            "inputs": {
                "referenceImages": [
                    "https://assets.runware.ai/assets/inputs/1530a7bf-e3c0-4c51-b481-13ebaf8b3b51.jpg",
                    "https://assets.runware.ai/assets/inputs/aa255e57-f921-46b6-a95c-3deedeca7bae.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": "41400b97-4796-4c43-9361-5ed30d66a98f",
      "model": "sourceful:riverflow-2.5@pro",
      "positivePrompt": "Create a polished 12-icon visual system for a commercial oyster hatchery and tidal aquaculture operation. Use the first reference image strictly as the subject and equipment reference: accurately interpret the oyster-farming skiff, floating cage, mesh grow-out bag, navigation buoy, juvenile oyster seed, adult oyster shell, grading sieve, sorting basket, water-quality sample bottle, protective glove, tide gauge, and biosecurity wash station. Use the second reference image strictly as the visual-treatment reference: translate its handcrafted ceramic maritime pictograms, cobalt and turquoise glazing, small coral accents, warm cream ground, bold geometric silhouettes, rounded contours, and subtle human irregularity into a coherent modern icon family. Do not copy the objects shown in the treatment reference; apply only its palette, line character, shape language, and tactile glazed finish to the aquaculture subjects from the first reference.\n\nPresent exactly twelve distinct icons in a precise four-column by three-row grid on one square warm-cream artboard. Each icon occupies an equal invisible cell with generous spacing and identical optical scale. Use simplified front or three-quarter views chosen for immediate recognition, consistent heavy stroke weight, rounded line caps, compact silhouettes, and a shared balance of filled and outlined forms. Keep every symbol legible at small sizes while retaining one or two equipment-specific details. Restrict the palette to deep cobalt blue as the primary color, tidepool turquoise as the secondary color, sparing coral orange for functional highlights, and warm cream negative space. Add a very subtle ceramic-glaze texture within the colored shapes, but preserve crisp professional edges suitable for redrawing as vectors. Flat orthographic design, no perspective scene, no shadows between icons, no gradients, no decorative border, no labels, no letters, no numbers, no logo, no mockup, no interface, and no repeated symbols. The final image should read as a finished, cohesive icon-set presentation commissioned for real hatchery operations, combining marine craft heritage with contemporary wayfinding clarity and dependable production consistency. Compose cleanly for a high-resolution 2K square output.",
      "resolution": "2K",
      "settings": {
        "thinkingLevel": "high"
      },
      "inputs": {
        "referenceImages": [
          "https://assets.runware.ai/assets/inputs/1530a7bf-e3c0-4c51-b481-13ebaf8b3b51.jpg",
          "https://assets.runware.ai/assets/inputs/aa255e57-f921-46b6-a95c-3deedeca7bae.jpg"
        ]
      }
    }
  ]'
runware run sourceful:riverflow-2.5@pro \
  positivePrompt="Create a polished 12-icon visual system for a commercial oyster hatchery and tidal aquaculture operation. Use the first reference image strictly as the subject and equipment reference: accurately interpret the oyster-farming skiff, floating cage, mesh grow-out bag, navigation buoy, juvenile oyster seed, adult oyster shell, grading sieve, sorting basket, water-quality sample bottle, protective glove, tide gauge, and biosecurity wash station. Use the second reference image strictly as the visual-treatment reference: translate its handcrafted ceramic maritime pictograms, cobalt and turquoise glazing, small coral accents, warm cream ground, bold geometric silhouettes, rounded contours, and subtle human irregularity into a coherent modern icon family. Do not copy the objects shown in the treatment reference; apply only its palette, line character, shape language, and tactile glazed finish to the aquaculture subjects from the first reference.

Present exactly twelve distinct icons in a precise four-column by three-row grid on one square warm-cream artboard. Each icon occupies an equal invisible cell with generous spacing and identical optical scale. Use simplified front or three-quarter views chosen for immediate recognition, consistent heavy stroke weight, rounded line caps, compact silhouettes, and a shared balance of filled and outlined forms. Keep every symbol legible at small sizes while retaining one or two equipment-specific details. Restrict the palette to deep cobalt blue as the primary color, tidepool turquoise as the secondary color, sparing coral orange for functional highlights, and warm cream negative space. Add a very subtle ceramic-glaze texture within the colored shapes, but preserve crisp professional edges suitable for redrawing as vectors. Flat orthographic design, no perspective scene, no shadows between icons, no gradients, no decorative border, no labels, no letters, no numbers, no logo, no mockup, no interface, and no repeated symbols. The final image should read as a finished, cohesive icon-set presentation commissioned for real hatchery operations, combining marine craft heritage with contemporary wayfinding clarity and dependable production consistency. Compose cleanly for a high-resolution 2K square output." \
  resolution=2K \
  settings.thinkingLevel=high \
  inputs.referenceImages.0=https://assets.runware.ai/assets/inputs/1530a7bf-e3c0-4c51-b481-13ebaf8b3b51.jpg \
  inputs.referenceImages.1=https://assets.runware.ai/assets/inputs/aa255e57-f921-46b6-a95c-3deedeca7bae.jpg
{
  "taskType": "imageInference",
  "taskUUID": "41400b97-4796-4c43-9361-5ed30d66a98f",
  "model": "sourceful:riverflow-2.5@pro",
  "positivePrompt": "Create a polished 12-icon visual system for a commercial oyster hatchery and tidal aquaculture operation. Use the first reference image strictly as the subject and equipment reference: accurately interpret the oyster-farming skiff, floating cage, mesh grow-out bag, navigation buoy, juvenile oyster seed, adult oyster shell, grading sieve, sorting basket, water-quality sample bottle, protective glove, tide gauge, and biosecurity wash station. Use the second reference image strictly as the visual-treatment reference: translate its handcrafted ceramic maritime pictograms, cobalt and turquoise glazing, small coral accents, warm cream ground, bold geometric silhouettes, rounded contours, and subtle human irregularity into a coherent modern icon family. Do not copy the objects shown in the treatment reference; apply only its palette, line character, shape language, and tactile glazed finish to the aquaculture subjects from the first reference.\n\nPresent exactly twelve distinct icons in a precise four-column by three-row grid on one square warm-cream artboard. Each icon occupies an equal invisible cell with generous spacing and identical optical scale. Use simplified front or three-quarter views chosen for immediate recognition, consistent heavy stroke weight, rounded line caps, compact silhouettes, and a shared balance of filled and outlined forms. Keep every symbol legible at small sizes while retaining one or two equipment-specific details. Restrict the palette to deep cobalt blue as the primary color, tidepool turquoise as the secondary color, sparing coral orange for functional highlights, and warm cream negative space. Add a very subtle ceramic-glaze texture within the colored shapes, but preserve crisp professional edges suitable for redrawing as vectors. Flat orthographic design, no perspective scene, no shadows between icons, no gradients, no decorative border, no labels, no letters, no numbers, no logo, no mockup, no interface, and no repeated symbols. The final image should read as a finished, cohesive icon-set presentation commissioned for real hatchery operations, combining marine craft heritage with contemporary wayfinding clarity and dependable production consistency. Compose cleanly for a high-resolution 2K square output.",
  "resolution": "2K",
  "settings": {
    "thinkingLevel": "high"
  },
  "inputs": {
    "referenceImages": [
      "https://assets.runware.ai/assets/inputs/1530a7bf-e3c0-4c51-b481-13ebaf8b3b51.jpg",
      "https://assets.runware.ai/assets/inputs/aa255e57-f921-46b6-a95c-3deedeca7bae.jpg"
    ]
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "41400b97-4796-4c43-9361-5ed30d66a98f",
  "imageUUID": "67407ee3-e958-42cb-9749-4c1510e1e9ab",
  "imageURL": "https://im.runware.ai/image/os/a05d22/ws/4/ii/67407ee3-e958-42cb-9749-4c1510e1e9ab.jpg",
  "seed": 1643517044,
  "cost": 0.720001
}
Text to Image

Polar Field Ration Packaging

Polar Field Ration Packaging

Premium product photography scene for an arctic expedition nutrition brand: three matte white and cobalt blue compostable ration pouches labeled 'NORTHLINE OAT BAR' and 'cranberry kelp protein', arranged on frosted stainless steel with pressed snow texture, embossed contour-map lines, crisp typography, small ingredient icons, one torn-open wrapper showing a layered oat bar with red berries and seaweed flecks, fine condensation crystals, clean studio lighting, high-end commercial composition, realistic paper fibers and foil seams, sharp focus, controlled cool color palette, subtle shadows, ample negative space for a brand lockup, no people, no extra text beyond specified labels

import { createClient } from '@runware/sdk'

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

const [result] = await client.run({
  model: 'sourceful:riverflow-2.5@pro',
  positivePrompt: 'Premium product photography scene for an arctic expedition nutrition brand: three matte white and cobalt blue compostable ration pouches labeled \'NORTHLINE OAT BAR\' and \'cranberry kelp protein\', arranged on frosted stainless steel with pressed snow texture, embossed contour-map lines, crisp typography, small ingredient icons, one torn-open wrapper showing a layered oat bar with red berries and seaweed flecks, fine condensation crystals, clean studio lighting, high-end commercial composition, realistic paper fibers and foil seams, sharp focus, controlled cool color palette, subtle shadows, ample negative space for a brand lockup, no people, no extra text beyond specified labels',
  width: 1248,
  height: 832,
  settings: {
    enhancePrompt: true,
    thinkingLevel: 'high',
    scoringPrompt: 'Prioritize believable commercial packaging, legible brand text, premium material rendering, and a clean product-focused layout.',
    scoringRubric: [
      {
        key: 'brandControl',
        label: 'Brand Control',
        description: 'Specified product names and label hierarchy should be clear, consistent, and free from unrelated wording.',
        weight: 3,
        passingScore: 0.75
      },
      {
        key: 'materialRealism',
        label: 'Material Realism',
        description: 'Packaging surfaces, frost, wrapper seams, and food texture should look physically plausible and production-ready.',
        weight: 2,
        passingScore: 0.7
      },
      {
        key: 'commercialComposition',
        label: 'Commercial Composition',
        description: 'The image should feel like a premium advertising still with balanced spacing, clear focal points, and usable negative space.',
        weight: 2,
        passingScore: 0.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": "sourceful:riverflow-2.5@pro",
            "positivePrompt": "Premium product photography scene for an arctic expedition nutrition brand: three matte white and cobalt blue compostable ration pouches labeled 'NORTHLINE OAT BAR' and 'cranberry kelp protein', arranged on frosted stainless steel with pressed snow texture, embossed contour-map lines, crisp typography, small ingredient icons, one torn-open wrapper showing a layered oat bar with red berries and seaweed flecks, fine condensation crystals, clean studio lighting, high-end commercial composition, realistic paper fibers and foil seams, sharp focus, controlled cool color palette, subtle shadows, ample negative space for a brand lockup, no people, no extra text beyond specified labels",
            "width": 1248,
            "height": 832,
            "settings": {
                "enhancePrompt": True,
                "thinkingLevel": "high",
                "scoringPrompt": "Prioritize believable commercial packaging, legible brand text, premium material rendering, and a clean product-focused layout.",
                "scoringRubric": [
                    {
                        "key": "brandControl",
                        "label": "Brand Control",
                        "description": "Specified product names and label hierarchy should be clear, consistent, and free from unrelated wording.",
                        "weight": 3,
                        "passingScore": 0.75
                    },
                    {
                        "key": "materialRealism",
                        "label": "Material Realism",
                        "description": "Packaging surfaces, frost, wrapper seams, and food texture should look physically plausible and production-ready.",
                        "weight": 2,
                        "passingScore": 0.7
                    },
                    {
                        "key": "commercialComposition",
                        "label": "Commercial Composition",
                        "description": "The image should feel like a premium advertising still with balanced spacing, clear focal points, and usable negative space.",
                        "weight": 2,
                        "passingScore": 0.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": "9a52c597-aa2f-4d07-8ca8-e7c01e5fbf89",
      "model": "sourceful:riverflow-2.5@pro",
      "positivePrompt": "Premium product photography scene for an arctic expedition nutrition brand: three matte white and cobalt blue compostable ration pouches labeled 'NORTHLINE OAT BAR' and 'cranberry kelp protein', arranged on frosted stainless steel with pressed snow texture, embossed contour-map lines, crisp typography, small ingredient icons, one torn-open wrapper showing a layered oat bar with red berries and seaweed flecks, fine condensation crystals, clean studio lighting, high-end commercial composition, realistic paper fibers and foil seams, sharp focus, controlled cool color palette, subtle shadows, ample negative space for a brand lockup, no people, no extra text beyond specified labels",
      "width": 1248,
      "height": 832,
      "settings": {
        "enhancePrompt": true,
        "thinkingLevel": "high",
        "scoringPrompt": "Prioritize believable commercial packaging, legible brand text, premium material rendering, and a clean product-focused layout.",
        "scoringRubric": [
          {
            "key": "brandControl",
            "label": "Brand Control",
            "description": "Specified product names and label hierarchy should be clear, consistent, and free from unrelated wording.",
            "weight": 3,
            "passingScore": 0.75
          },
          {
            "key": "materialRealism",
            "label": "Material Realism",
            "description": "Packaging surfaces, frost, wrapper seams, and food texture should look physically plausible and production-ready.",
            "weight": 2,
            "passingScore": 0.7
          },
          {
            "key": "commercialComposition",
            "label": "Commercial Composition",
            "description": "The image should feel like a premium advertising still with balanced spacing, clear focal points, and usable negative space.",
            "weight": 2,
            "passingScore": 0.7
          }
        ]
      }
    }
  ]'
runware run sourceful:riverflow-2.5@pro \
  positivePrompt="Premium product photography scene for an arctic expedition nutrition brand: three matte white and cobalt blue compostable ration pouches labeled 'NORTHLINE OAT BAR' and 'cranberry kelp protein', arranged on frosted stainless steel with pressed snow texture, embossed contour-map lines, crisp typography, small ingredient icons, one torn-open wrapper showing a layered oat bar with red berries and seaweed flecks, fine condensation crystals, clean studio lighting, high-end commercial composition, realistic paper fibers and foil seams, sharp focus, controlled cool color palette, subtle shadows, ample negative space for a brand lockup, no people, no extra text beyond specified labels" \
  width=1248 \
  height=832 \
  settings.enhancePrompt=true \
  settings.thinkingLevel=high \
  settings.scoringPrompt="Prioritize believable commercial packaging, legible brand text, premium material rendering, and a clean product-focused layout." \
  settings.scoringRubric.0.key=brandControl \
  settings.scoringRubric.0.label="Brand Control" \
  settings.scoringRubric.0.description="Specified product names and label hierarchy should be clear, consistent, and free from unrelated wording." \
  settings.scoringRubric.0.weight=3 \
  settings.scoringRubric.0.passingScore=0.75 \
  settings.scoringRubric.1.key=materialRealism \
  settings.scoringRubric.1.label="Material Realism" \
  settings.scoringRubric.1.description="Packaging surfaces, frost, wrapper seams, and food texture should look physically plausible and production-ready." \
  settings.scoringRubric.1.weight=2 \
  settings.scoringRubric.1.passingScore=0.7 \
  settings.scoringRubric.2.key=commercialComposition \
  settings.scoringRubric.2.label="Commercial Composition" \
  settings.scoringRubric.2.description="The image should feel like a premium advertising still with balanced spacing, clear focal points, and usable negative space." \
  settings.scoringRubric.2.weight=2 \
  settings.scoringRubric.2.passingScore=0.7
{
  "taskType": "imageInference",
  "taskUUID": "9a52c597-aa2f-4d07-8ca8-e7c01e5fbf89",
  "model": "sourceful:riverflow-2.5@pro",
  "positivePrompt": "Premium product photography scene for an arctic expedition nutrition brand: three matte white and cobalt blue compostable ration pouches labeled 'NORTHLINE OAT BAR' and 'cranberry kelp protein', arranged on frosted stainless steel with pressed snow texture, embossed contour-map lines, crisp typography, small ingredient icons, one torn-open wrapper showing a layered oat bar with red berries and seaweed flecks, fine condensation crystals, clean studio lighting, high-end commercial composition, realistic paper fibers and foil seams, sharp focus, controlled cool color palette, subtle shadows, ample negative space for a brand lockup, no people, no extra text beyond specified labels",
  "width": 1248,
  "height": 832,
  "settings": {
    "enhancePrompt": true,
    "thinkingLevel": "high",
    "scoringPrompt": "Prioritize believable commercial packaging, legible brand text, premium material rendering, and a clean product-focused layout.",
    "scoringRubric": [
      {
        "key": "brandControl",
        "label": "Brand Control",
        "description": "Specified product names and label hierarchy should be clear, consistent, and free from unrelated wording.",
        "weight": 3,
        "passingScore": 0.75
      },
      {
        "key": "materialRealism",
        "label": "Material Realism",
        "description": "Packaging surfaces, frost, wrapper seams, and food texture should look physically plausible and production-ready.",
        "weight": 2,
        "passingScore": 0.7
      },
      {
        "key": "commercialComposition",
        "label": "Commercial Composition",
        "description": "The image should feel like a premium advertising still with balanced spacing, clear focal points, and usable negative space.",
        "weight": 2,
        "passingScore": 0.7
      }
    ]
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "9a52c597-aa2f-4d07-8ca8-e7c01e5fbf89",
  "imageUUID": "5c5dec38-4c56-4f81-9903-862da9c70275",
  "imageURL": "https://im.runware.ai/image/os/a02d21/ws/3/ii/5c5dec38-4c56-4f81-9903-862da9c70275.jpg",
  "seed": 174152846,
  "cost": 0.096097
}
Text to Image

Mycelium Skincare Packaging Tableau

Mycelium Skincare Packaging Tableau

High-end skincare advertising still life for a fictional brand named ROOTLINE, three matte porcelain jars and one frosted glass serum bottle arranged on pale birch trays inside a clean greenhouse laboratory, subtle mycelium thread pattern embossed on cream packaging, refined black serif typography reading ROOTLINE and FUNGAL CERAMIDE COMPLEX, small product labels aligned perfectly, pearlescent mushroom caps, oat-colored paper cartons, condensation on glass, soft north-facing daylight, gentle shadows, editorial product photography, precise brand system, natural luxury, uncluttered premium composition, ultra-detailed packaging surfaces, realistic reflections, commercial campaign quality

import { createClient } from '@runware/sdk'

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

const [result] = await client.run({
  model: 'sourceful:riverflow-2.5@pro',
  positivePrompt: 'High-end skincare advertising still life for a fictional brand named ROOTLINE, three matte porcelain jars and one frosted glass serum bottle arranged on pale birch trays inside a clean greenhouse laboratory, subtle mycelium thread pattern embossed on cream packaging, refined black serif typography reading ROOTLINE and FUNGAL CERAMIDE COMPLEX, small product labels aligned perfectly, pearlescent mushroom caps, oat-colored paper cartons, condensation on glass, soft north-facing daylight, gentle shadows, editorial product photography, precise brand system, natural luxury, uncluttered premium composition, ultra-detailed packaging surfaces, realistic reflections, commercial campaign quality',
  width: 2496,
  height: 1664,
  settings: {
    enhancePrompt: true,
    thinkingLevel: 'high',
    backgroundMode: 'original',
    scoringPrompt: 'Prioritize commercially viable product imagery with sharp packaging details, believable materials, clean composition, and legible brand text.',
    scoringRubric: [
      {
        key: 'brandControl',
        label: 'Brand Control',
        description: 'Packaging should feel cohesive, premium, and suitable for a real skincare campaign, with consistent colors, materials, and layout.',
        weight: 2,
        passingScore: 0.75
      },
      {
        key: 'textLegibility',
        label: 'Text Legibility',
        description: 'Visible brand and product text should be clean, aligned, and readable without distorted lettering.',
        weight: 2,
        passingScore: 0.7
      },
      {
        key: 'materialRealism',
        label: 'Material Realism',
        description: 'Porcelain, frosted glass, paper cartons, birch trays, and condensation should have believable texture, lighting, and reflections.',
        weight: 1.5,
        passingScore: 0.75
      },
      {
        key: 'composition',
        label: 'Composition',
        description: 'The arrangement should be balanced, uncluttered, and ready for commercial advertising use.',
        weight: 1.5,
        passingScore: 0.75
      }
    ]
  }
})
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": "sourceful:riverflow-2.5@pro",
            "positivePrompt": "High-end skincare advertising still life for a fictional brand named ROOTLINE, three matte porcelain jars and one frosted glass serum bottle arranged on pale birch trays inside a clean greenhouse laboratory, subtle mycelium thread pattern embossed on cream packaging, refined black serif typography reading ROOTLINE and FUNGAL CERAMIDE COMPLEX, small product labels aligned perfectly, pearlescent mushroom caps, oat-colored paper cartons, condensation on glass, soft north-facing daylight, gentle shadows, editorial product photography, precise brand system, natural luxury, uncluttered premium composition, ultra-detailed packaging surfaces, realistic reflections, commercial campaign quality",
            "width": 2496,
            "height": 1664,
            "settings": {
                "enhancePrompt": True,
                "thinkingLevel": "high",
                "backgroundMode": "original",
                "scoringPrompt": "Prioritize commercially viable product imagery with sharp packaging details, believable materials, clean composition, and legible brand text.",
                "scoringRubric": [
                    {
                        "key": "brandControl",
                        "label": "Brand Control",
                        "description": "Packaging should feel cohesive, premium, and suitable for a real skincare campaign, with consistent colors, materials, and layout.",
                        "weight": 2,
                        "passingScore": 0.75
                    },
                    {
                        "key": "textLegibility",
                        "label": "Text Legibility",
                        "description": "Visible brand and product text should be clean, aligned, and readable without distorted lettering.",
                        "weight": 2,
                        "passingScore": 0.7
                    },
                    {
                        "key": "materialRealism",
                        "label": "Material Realism",
                        "description": "Porcelain, frosted glass, paper cartons, birch trays, and condensation should have believable texture, lighting, and reflections.",
                        "weight": 1.5,
                        "passingScore": 0.75
                    },
                    {
                        "key": "composition",
                        "label": "Composition",
                        "description": "The arrangement should be balanced, uncluttered, and ready for commercial advertising use.",
                        "weight": 1.5,
                        "passingScore": 0.75
                    }
                ]
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "imageInference",
      "taskUUID": "31786661-341e-44cd-b064-01c284fe29bd",
      "model": "sourceful:riverflow-2.5@pro",
      "positivePrompt": "High-end skincare advertising still life for a fictional brand named ROOTLINE, three matte porcelain jars and one frosted glass serum bottle arranged on pale birch trays inside a clean greenhouse laboratory, subtle mycelium thread pattern embossed on cream packaging, refined black serif typography reading ROOTLINE and FUNGAL CERAMIDE COMPLEX, small product labels aligned perfectly, pearlescent mushroom caps, oat-colored paper cartons, condensation on glass, soft north-facing daylight, gentle shadows, editorial product photography, precise brand system, natural luxury, uncluttered premium composition, ultra-detailed packaging surfaces, realistic reflections, commercial campaign quality",
      "width": 2496,
      "height": 1664,
      "settings": {
        "enhancePrompt": true,
        "thinkingLevel": "high",
        "backgroundMode": "original",
        "scoringPrompt": "Prioritize commercially viable product imagery with sharp packaging details, believable materials, clean composition, and legible brand text.",
        "scoringRubric": [
          {
            "key": "brandControl",
            "label": "Brand Control",
            "description": "Packaging should feel cohesive, premium, and suitable for a real skincare campaign, with consistent colors, materials, and layout.",
            "weight": 2,
            "passingScore": 0.75
          },
          {
            "key": "textLegibility",
            "label": "Text Legibility",
            "description": "Visible brand and product text should be clean, aligned, and readable without distorted lettering.",
            "weight": 2,
            "passingScore": 0.7
          },
          {
            "key": "materialRealism",
            "label": "Material Realism",
            "description": "Porcelain, frosted glass, paper cartons, birch trays, and condensation should have believable texture, lighting, and reflections.",
            "weight": 1.5,
            "passingScore": 0.75
          },
          {
            "key": "composition",
            "label": "Composition",
            "description": "The arrangement should be balanced, uncluttered, and ready for commercial advertising use.",
            "weight": 1.5,
            "passingScore": 0.75
          }
        ]
      }
    }
  ]'
runware run sourceful:riverflow-2.5@pro \
  positivePrompt="High-end skincare advertising still life for a fictional brand named ROOTLINE, three matte porcelain jars and one frosted glass serum bottle arranged on pale birch trays inside a clean greenhouse laboratory, subtle mycelium thread pattern embossed on cream packaging, refined black serif typography reading ROOTLINE and FUNGAL CERAMIDE COMPLEX, small product labels aligned perfectly, pearlescent mushroom caps, oat-colored paper cartons, condensation on glass, soft north-facing daylight, gentle shadows, editorial product photography, precise brand system, natural luxury, uncluttered premium composition, ultra-detailed packaging surfaces, realistic reflections, commercial campaign quality" \
  width=2496 \
  height=1664 \
  settings.enhancePrompt=true \
  settings.thinkingLevel=high \
  settings.backgroundMode=original \
  settings.scoringPrompt="Prioritize commercially viable product imagery with sharp packaging details, believable materials, clean composition, and legible brand text." \
  settings.scoringRubric.0.key=brandControl \
  settings.scoringRubric.0.label="Brand Control" \
  settings.scoringRubric.0.description="Packaging should feel cohesive, premium, and suitable for a real skincare campaign, with consistent colors, materials, and layout." \
  settings.scoringRubric.0.weight=2 \
  settings.scoringRubric.0.passingScore=0.75 \
  settings.scoringRubric.1.key=textLegibility \
  settings.scoringRubric.1.label="Text Legibility" \
  settings.scoringRubric.1.description="Visible brand and product text should be clean, aligned, and readable without distorted lettering." \
  settings.scoringRubric.1.weight=2 \
  settings.scoringRubric.1.passingScore=0.7 \
  settings.scoringRubric.2.key=materialRealism \
  settings.scoringRubric.2.label="Material Realism" \
  settings.scoringRubric.2.description="Porcelain, frosted glass, paper cartons, birch trays, and condensation should have believable texture, lighting, and reflections." \
  settings.scoringRubric.2.weight=1.5 \
  settings.scoringRubric.2.passingScore=0.75 \
  settings.scoringRubric.3.key=composition \
  settings.scoringRubric.3.label=Composition \
  settings.scoringRubric.3.description="The arrangement should be balanced, uncluttered, and ready for commercial advertising use." \
  settings.scoringRubric.3.weight=1.5 \
  settings.scoringRubric.3.passingScore=0.75
{
  "taskType": "imageInference",
  "taskUUID": "31786661-341e-44cd-b064-01c284fe29bd",
  "model": "sourceful:riverflow-2.5@pro",
  "positivePrompt": "High-end skincare advertising still life for a fictional brand named ROOTLINE, three matte porcelain jars and one frosted glass serum bottle arranged on pale birch trays inside a clean greenhouse laboratory, subtle mycelium thread pattern embossed on cream packaging, refined black serif typography reading ROOTLINE and FUNGAL CERAMIDE COMPLEX, small product labels aligned perfectly, pearlescent mushroom caps, oat-colored paper cartons, condensation on glass, soft north-facing daylight, gentle shadows, editorial product photography, precise brand system, natural luxury, uncluttered premium composition, ultra-detailed packaging surfaces, realistic reflections, commercial campaign quality",
  "width": 2496,
  "height": 1664,
  "settings": {
    "enhancePrompt": true,
    "thinkingLevel": "high",
    "backgroundMode": "original",
    "scoringPrompt": "Prioritize commercially viable product imagery with sharp packaging details, believable materials, clean composition, and legible brand text.",
    "scoringRubric": [
      {
        "key": "brandControl",
        "label": "Brand Control",
        "description": "Packaging should feel cohesive, premium, and suitable for a real skincare campaign, with consistent colors, materials, and layout.",
        "weight": 2,
        "passingScore": 0.75
      },
      {
        "key": "textLegibility",
        "label": "Text Legibility",
        "description": "Visible brand and product text should be clean, aligned, and readable without distorted lettering.",
        "weight": 2,
        "passingScore": 0.7
      },
      {
        "key": "materialRealism",
        "label": "Material Realism",
        "description": "Porcelain, frosted glass, paper cartons, birch trays, and condensation should have believable texture, lighting, and reflections.",
        "weight": 1.5,
        "passingScore": 0.75
      },
      {
        "key": "composition",
        "label": "Composition",
        "description": "The arrangement should be balanced, uncluttered, and ready for commercial advertising use.",
        "weight": 1.5,
        "passingScore": 0.75
      }
    ]
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "31786661-341e-44cd-b064-01c284fe29bd",
  "imageUUID": "ce4395f5-b94c-48d1-af13-d008b77a0a1e",
  "imageURL": "https://im.runware.ai/image/os/a05d22/ws/4/ii/ce4395f5-b94c-48d1-af13-d008b77a0a1e.jpg",
  "seed": 1032086387,
  "cost": 0.179818
}
solid-background

Savory Tomato Cocktail Menu Portrait

Savory Tomato Cocktail Menu Portrait

Create a finished high-end menu photograph of one savory clarified tomato cocktail, treated as a sculptural hero subject. A slender hand-blown coupe glass holds a transparent pale-gold tomato-water drink with a faint warm blush, several precise emerald basil-oil droplets on the surface, and one glossy scarlet cherry tomato pierced by a short matte-black cocktail pick resting neatly across the rim. Add a very thin red chili-salt crescent to only one side of the rim. The drink must look cold, pristine, sophisticated, and genuinely appetizing, with delicate condensation and crisp highlights on the glass. Single isolated subject only: no bottle, no second glass, no ingredients scattered around it, no hands, no tableware, no lettering, no logo. Strong recognizable silhouette with generous negative space around the bowl, stem, and foot. Compose vertically for a portrait restaurant-menu feature, glass centered slightly below the optical midpoint and shown completely from rim to base. Three-quarter eye-level product angle, 100mm commercial food-photography look, sharp garnish and rim, controlled depth of field while preserving the full glass silhouette. Hard directional studio light from upper left creates a luminous liquid, jewel-like red and green accents, precise specular highlights, and a compact grounding shadow; subtle rear rim light cleanly separates every edge from the configured solid background. Contemporary editorial art direction combining luxury cocktail photography with clinical botanical precision. Clean uniform background, no visible horizon, no texture, no gradient, no environmental scene. Photorealistic, premium hospitality campaign quality, meticulous glass geometry, realistic refraction, natural condensation, accurate proportions, restrained styling.

import { createClient } from '@runware/sdk'

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

const [result] = await client.run({
  model: 'sourceful:riverflow-2.5@pro',
  positivePrompt: 'Create a finished high-end menu photograph of one savory clarified tomato cocktail, treated as a sculptural hero subject. A slender hand-blown coupe glass holds a transparent pale-gold tomato-water drink with a faint warm blush, several precise emerald basil-oil droplets on the surface, and one glossy scarlet cherry tomato pierced by a short matte-black cocktail pick resting neatly across the rim. Add a very thin red chili-salt crescent to only one side of the rim. The drink must look cold, pristine, sophisticated, and genuinely appetizing, with delicate condensation and crisp highlights on the glass. Single isolated subject only: no bottle, no second glass, no ingredients scattered around it, no hands, no tableware, no lettering, no logo. Strong recognizable silhouette with generous negative space around the bowl, stem, and foot. Compose vertically for a portrait restaurant-menu feature, glass centered slightly below the optical midpoint and shown completely from rim to base. Three-quarter eye-level product angle, 100mm commercial food-photography look, sharp garnish and rim, controlled depth of field while preserving the full glass silhouette. Hard directional studio light from upper left creates a luminous liquid, jewel-like red and green accents, precise specular highlights, and a compact grounding shadow; subtle rear rim light cleanly separates every edge from the configured solid background. Contemporary editorial art direction combining luxury cocktail photography with clinical botanical precision. Clean uniform background, no visible horizon, no texture, no gradient, no environmental scene. Photorealistic, premium hospitality campaign quality, meticulous glass geometry, realistic refraction, natural condensation, accurate proportions, restrained styling.',
  width: 896,
  height: 1120,
  settings: {
    backgroundMode: 'solid',
    backgroundColor: '#E8DCC8'
  }
})
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": "sourceful:riverflow-2.5@pro",
            "positivePrompt": "Create a finished high-end menu photograph of one savory clarified tomato cocktail, treated as a sculptural hero subject. A slender hand-blown coupe glass holds a transparent pale-gold tomato-water drink with a faint warm blush, several precise emerald basil-oil droplets on the surface, and one glossy scarlet cherry tomato pierced by a short matte-black cocktail pick resting neatly across the rim. Add a very thin red chili-salt crescent to only one side of the rim. The drink must look cold, pristine, sophisticated, and genuinely appetizing, with delicate condensation and crisp highlights on the glass. Single isolated subject only: no bottle, no second glass, no ingredients scattered around it, no hands, no tableware, no lettering, no logo. Strong recognizable silhouette with generous negative space around the bowl, stem, and foot. Compose vertically for a portrait restaurant-menu feature, glass centered slightly below the optical midpoint and shown completely from rim to base. Three-quarter eye-level product angle, 100mm commercial food-photography look, sharp garnish and rim, controlled depth of field while preserving the full glass silhouette. Hard directional studio light from upper left creates a luminous liquid, jewel-like red and green accents, precise specular highlights, and a compact grounding shadow; subtle rear rim light cleanly separates every edge from the configured solid background. Contemporary editorial art direction combining luxury cocktail photography with clinical botanical precision. Clean uniform background, no visible horizon, no texture, no gradient, no environmental scene. Photorealistic, premium hospitality campaign quality, meticulous glass geometry, realistic refraction, natural condensation, accurate proportions, restrained styling.",
            "width": 896,
            "height": 1120,
            "settings": {
                "backgroundMode": "solid",
                "backgroundColor": "#E8DCC8"
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "imageInference",
      "taskUUID": "e413ddd3-6a74-452f-a9f9-1b1f5373d202",
      "model": "sourceful:riverflow-2.5@pro",
      "positivePrompt": "Create a finished high-end menu photograph of one savory clarified tomato cocktail, treated as a sculptural hero subject. A slender hand-blown coupe glass holds a transparent pale-gold tomato-water drink with a faint warm blush, several precise emerald basil-oil droplets on the surface, and one glossy scarlet cherry tomato pierced by a short matte-black cocktail pick resting neatly across the rim. Add a very thin red chili-salt crescent to only one side of the rim. The drink must look cold, pristine, sophisticated, and genuinely appetizing, with delicate condensation and crisp highlights on the glass. Single isolated subject only: no bottle, no second glass, no ingredients scattered around it, no hands, no tableware, no lettering, no logo. Strong recognizable silhouette with generous negative space around the bowl, stem, and foot. Compose vertically for a portrait restaurant-menu feature, glass centered slightly below the optical midpoint and shown completely from rim to base. Three-quarter eye-level product angle, 100mm commercial food-photography look, sharp garnish and rim, controlled depth of field while preserving the full glass silhouette. Hard directional studio light from upper left creates a luminous liquid, jewel-like red and green accents, precise specular highlights, and a compact grounding shadow; subtle rear rim light cleanly separates every edge from the configured solid background. Contemporary editorial art direction combining luxury cocktail photography with clinical botanical precision. Clean uniform background, no visible horizon, no texture, no gradient, no environmental scene. Photorealistic, premium hospitality campaign quality, meticulous glass geometry, realistic refraction, natural condensation, accurate proportions, restrained styling.",
      "width": 896,
      "height": 1120,
      "settings": {
        "backgroundMode": "solid",
        "backgroundColor": "#E8DCC8"
      }
    }
  ]'
runware run sourceful:riverflow-2.5@pro \
  positivePrompt="Create a finished high-end menu photograph of one savory clarified tomato cocktail, treated as a sculptural hero subject. A slender hand-blown coupe glass holds a transparent pale-gold tomato-water drink with a faint warm blush, several precise emerald basil-oil droplets on the surface, and one glossy scarlet cherry tomato pierced by a short matte-black cocktail pick resting neatly across the rim. Add a very thin red chili-salt crescent to only one side of the rim. The drink must look cold, pristine, sophisticated, and genuinely appetizing, with delicate condensation and crisp highlights on the glass. Single isolated subject only: no bottle, no second glass, no ingredients scattered around it, no hands, no tableware, no lettering, no logo. Strong recognizable silhouette with generous negative space around the bowl, stem, and foot. Compose vertically for a portrait restaurant-menu feature, glass centered slightly below the optical midpoint and shown completely from rim to base. Three-quarter eye-level product angle, 100mm commercial food-photography look, sharp garnish and rim, controlled depth of field while preserving the full glass silhouette. Hard directional studio light from upper left creates a luminous liquid, jewel-like red and green accents, precise specular highlights, and a compact grounding shadow; subtle rear rim light cleanly separates every edge from the configured solid background. Contemporary editorial art direction combining luxury cocktail photography with clinical botanical precision. Clean uniform background, no visible horizon, no texture, no gradient, no environmental scene. Photorealistic, premium hospitality campaign quality, meticulous glass geometry, realistic refraction, natural condensation, accurate proportions, restrained styling." \
  width=896 \
  height=1120 \
  settings.backgroundMode=solid \
  settings.backgroundColor="#E8DCC8"
{
  "taskType": "imageInference",
  "taskUUID": "e413ddd3-6a74-452f-a9f9-1b1f5373d202",
  "model": "sourceful:riverflow-2.5@pro",
  "positivePrompt": "Create a finished high-end menu photograph of one savory clarified tomato cocktail, treated as a sculptural hero subject. A slender hand-blown coupe glass holds a transparent pale-gold tomato-water drink with a faint warm blush, several precise emerald basil-oil droplets on the surface, and one glossy scarlet cherry tomato pierced by a short matte-black cocktail pick resting neatly across the rim. Add a very thin red chili-salt crescent to only one side of the rim. The drink must look cold, pristine, sophisticated, and genuinely appetizing, with delicate condensation and crisp highlights on the glass. Single isolated subject only: no bottle, no second glass, no ingredients scattered around it, no hands, no tableware, no lettering, no logo. Strong recognizable silhouette with generous negative space around the bowl, stem, and foot. Compose vertically for a portrait restaurant-menu feature, glass centered slightly below the optical midpoint and shown completely from rim to base. Three-quarter eye-level product angle, 100mm commercial food-photography look, sharp garnish and rim, controlled depth of field while preserving the full glass silhouette. Hard directional studio light from upper left creates a luminous liquid, jewel-like red and green accents, precise specular highlights, and a compact grounding shadow; subtle rear rim light cleanly separates every edge from the configured solid background. Contemporary editorial art direction combining luxury cocktail photography with clinical botanical precision. Clean uniform background, no visible horizon, no texture, no gradient, no environmental scene. Photorealistic, premium hospitality campaign quality, meticulous glass geometry, realistic refraction, natural condensation, accurate proportions, restrained styling.",
  "width": 896,
  "height": 1120,
  "settings": {
    "backgroundMode": "solid",
    "backgroundColor": "#E8DCC8"
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "e413ddd3-6a74-452f-a9f9-1b1f5373d202",
  "imageUUID": "8d6cf627-1a98-401a-aa85-e8f0477503f6",
  "imageURL": "https://im.runware.ai/image/os/a08dlim3/ws/3/ii/8d6cf627-1a98-401a-aa85-e8f0477503f6.jpg",
  "seed": 1798300888,
  "cost": 0.203
}
Text to Image

Precision Lab Footwear Campaign

Precision Lab Footwear Campaign

Vertical premium advertising campaign image for a road-running shoe brand named AEROCAST. Center frame: a sleek white and graphite performance sneaker with translucent gel midsole, micro-knit upper, carbon-fiber plate detail, precise stitching, and subtle cobalt accents. The shoe floats above a matte mineral-composite pedestal inside a pristine materials-testing studio with frosted glass panels, calibration grids, softbox reflections, and neatly arranged sample swatches. Include clean editorial product layout, refined negative space, sharp readable brand text AEROCAST on the shoe side and pedestal, small tagline text ENGINEERED FOR QUIET SPEED near the lower margin, luxury sportswear mood, photorealistic materials, controlled highlights, shallow depth of field, premium catalog lighting, ultra-detailed texture, balanced composition, no extra logos, no misspelled 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: 'sourceful:riverflow-2.5@pro',
  positivePrompt: 'Vertical premium advertising campaign image for a road-running shoe brand named AEROCAST. Center frame: a sleek white and graphite performance sneaker with translucent gel midsole, micro-knit upper, carbon-fiber plate detail, precise stitching, and subtle cobalt accents. The shoe floats above a matte mineral-composite pedestal inside a pristine materials-testing studio with frosted glass panels, calibration grids, softbox reflections, and neatly arranged sample swatches. Include clean editorial product layout, refined negative space, sharp readable brand text AEROCAST on the shoe side and pedestal, small tagline text ENGINEERED FOR QUIET SPEED near the lower margin, luxury sportswear mood, photorealistic materials, controlled highlights, shallow depth of field, premium catalog lighting, ultra-detailed texture, balanced composition, no extra logos, no misspelled text.',
  width: 1440,
  height: 2560,
  settings: {
    enhancePrompt: true,
    thinkingLevel: 'high',
    scoringPrompt: 'Prioritize a commercial-ready footwear campaign image with accurate product geometry, believable materials, clean readable brand text, and a refined premium sportswear layout.',
    scoringRubric: [
      {
        key: 'brandClarity',
        label: 'Brand clarity',
        description: 'AEROCAST and the tagline should be cleanly placed, readable, and integrated without visual clutter.',
        weight: 1.2,
        passingScore: 0.75
      },
      {
        key: 'materialRealism',
        label: 'Material realism',
        description: 'Sneaker textiles, translucent sole, carbon plate, stitching, pedestal, and studio surfaces should look physically plausible and high quality.',
        weight: 1.1,
        passingScore: 0.75
      },
      {
        key: 'commercialComposition',
        label: 'Commercial composition',
        description: 'The image should feel ready for a premium athletic campaign, with strong central focus, controlled negative space, and polished lighting.',
        weight: 1,
        passingScore: 0.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": "sourceful:riverflow-2.5@pro",
            "positivePrompt": "Vertical premium advertising campaign image for a road-running shoe brand named AEROCAST. Center frame: a sleek white and graphite performance sneaker with translucent gel midsole, micro-knit upper, carbon-fiber plate detail, precise stitching, and subtle cobalt accents. The shoe floats above a matte mineral-composite pedestal inside a pristine materials-testing studio with frosted glass panels, calibration grids, softbox reflections, and neatly arranged sample swatches. Include clean editorial product layout, refined negative space, sharp readable brand text AEROCAST on the shoe side and pedestal, small tagline text ENGINEERED FOR QUIET SPEED near the lower margin, luxury sportswear mood, photorealistic materials, controlled highlights, shallow depth of field, premium catalog lighting, ultra-detailed texture, balanced composition, no extra logos, no misspelled text.",
            "width": 1440,
            "height": 2560,
            "settings": {
                "enhancePrompt": True,
                "thinkingLevel": "high",
                "scoringPrompt": "Prioritize a commercial-ready footwear campaign image with accurate product geometry, believable materials, clean readable brand text, and a refined premium sportswear layout.",
                "scoringRubric": [
                    {
                        "key": "brandClarity",
                        "label": "Brand clarity",
                        "description": "AEROCAST and the tagline should be cleanly placed, readable, and integrated without visual clutter.",
                        "weight": 1.2,
                        "passingScore": 0.75
                    },
                    {
                        "key": "materialRealism",
                        "label": "Material realism",
                        "description": "Sneaker textiles, translucent sole, carbon plate, stitching, pedestal, and studio surfaces should look physically plausible and high quality.",
                        "weight": 1.1,
                        "passingScore": 0.75
                    },
                    {
                        "key": "commercialComposition",
                        "label": "Commercial composition",
                        "description": "The image should feel ready for a premium athletic campaign, with strong central focus, controlled negative space, and polished lighting.",
                        "weight": 1,
                        "passingScore": 0.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": "44638491-4f1d-4023-9f7d-fafdd961c6f4",
      "model": "sourceful:riverflow-2.5@pro",
      "positivePrompt": "Vertical premium advertising campaign image for a road-running shoe brand named AEROCAST. Center frame: a sleek white and graphite performance sneaker with translucent gel midsole, micro-knit upper, carbon-fiber plate detail, precise stitching, and subtle cobalt accents. The shoe floats above a matte mineral-composite pedestal inside a pristine materials-testing studio with frosted glass panels, calibration grids, softbox reflections, and neatly arranged sample swatches. Include clean editorial product layout, refined negative space, sharp readable brand text AEROCAST on the shoe side and pedestal, small tagline text ENGINEERED FOR QUIET SPEED near the lower margin, luxury sportswear mood, photorealistic materials, controlled highlights, shallow depth of field, premium catalog lighting, ultra-detailed texture, balanced composition, no extra logos, no misspelled text.",
      "width": 1440,
      "height": 2560,
      "settings": {
        "enhancePrompt": true,
        "thinkingLevel": "high",
        "scoringPrompt": "Prioritize a commercial-ready footwear campaign image with accurate product geometry, believable materials, clean readable brand text, and a refined premium sportswear layout.",
        "scoringRubric": [
          {
            "key": "brandClarity",
            "label": "Brand clarity",
            "description": "AEROCAST and the tagline should be cleanly placed, readable, and integrated without visual clutter.",
            "weight": 1.2,
            "passingScore": 0.75
          },
          {
            "key": "materialRealism",
            "label": "Material realism",
            "description": "Sneaker textiles, translucent sole, carbon plate, stitching, pedestal, and studio surfaces should look physically plausible and high quality.",
            "weight": 1.1,
            "passingScore": 0.75
          },
          {
            "key": "commercialComposition",
            "label": "Commercial composition",
            "description": "The image should feel ready for a premium athletic campaign, with strong central focus, controlled negative space, and polished lighting.",
            "weight": 1,
            "passingScore": 0.7
          }
        ]
      }
    }
  ]'
runware run sourceful:riverflow-2.5@pro \
  positivePrompt="Vertical premium advertising campaign image for a road-running shoe brand named AEROCAST. Center frame: a sleek white and graphite performance sneaker with translucent gel midsole, micro-knit upper, carbon-fiber plate detail, precise stitching, and subtle cobalt accents. The shoe floats above a matte mineral-composite pedestal inside a pristine materials-testing studio with frosted glass panels, calibration grids, softbox reflections, and neatly arranged sample swatches. Include clean editorial product layout, refined negative space, sharp readable brand text AEROCAST on the shoe side and pedestal, small tagline text ENGINEERED FOR QUIET SPEED near the lower margin, luxury sportswear mood, photorealistic materials, controlled highlights, shallow depth of field, premium catalog lighting, ultra-detailed texture, balanced composition, no extra logos, no misspelled text." \
  width=1440 \
  height=2560 \
  settings.enhancePrompt=true \
  settings.thinkingLevel=high \
  settings.scoringPrompt="Prioritize a commercial-ready footwear campaign image with accurate product geometry, believable materials, clean readable brand text, and a refined premium sportswear layout." \
  settings.scoringRubric.0.key=brandClarity \
  settings.scoringRubric.0.label="Brand clarity" \
  settings.scoringRubric.0.description="AEROCAST and the tagline should be cleanly placed, readable, and integrated without visual clutter." \
  settings.scoringRubric.0.weight=1.2 \
  settings.scoringRubric.0.passingScore=0.75 \
  settings.scoringRubric.1.key=materialRealism \
  settings.scoringRubric.1.label="Material realism" \
  settings.scoringRubric.1.description="Sneaker textiles, translucent sole, carbon plate, stitching, pedestal, and studio surfaces should look physically plausible and high quality." \
  settings.scoringRubric.1.weight=1.1 \
  settings.scoringRubric.1.passingScore=0.75 \
  settings.scoringRubric.2.key=commercialComposition \
  settings.scoringRubric.2.label="Commercial composition" \
  settings.scoringRubric.2.description="The image should feel ready for a premium athletic campaign, with strong central focus, controlled negative space, and polished lighting." \
  settings.scoringRubric.2.weight=1 \
  settings.scoringRubric.2.passingScore=0.7
{
  "taskType": "imageInference",
  "taskUUID": "44638491-4f1d-4023-9f7d-fafdd961c6f4",
  "model": "sourceful:riverflow-2.5@pro",
  "positivePrompt": "Vertical premium advertising campaign image for a road-running shoe brand named AEROCAST. Center frame: a sleek white and graphite performance sneaker with translucent gel midsole, micro-knit upper, carbon-fiber plate detail, precise stitching, and subtle cobalt accents. The shoe floats above a matte mineral-composite pedestal inside a pristine materials-testing studio with frosted glass panels, calibration grids, softbox reflections, and neatly arranged sample swatches. Include clean editorial product layout, refined negative space, sharp readable brand text AEROCAST on the shoe side and pedestal, small tagline text ENGINEERED FOR QUIET SPEED near the lower margin, luxury sportswear mood, photorealistic materials, controlled highlights, shallow depth of field, premium catalog lighting, ultra-detailed texture, balanced composition, no extra logos, no misspelled text.",
  "width": 1440,
  "height": 2560,
  "settings": {
    "enhancePrompt": true,
    "thinkingLevel": "high",
    "scoringPrompt": "Prioritize a commercial-ready footwear campaign image with accurate product geometry, believable materials, clean readable brand text, and a refined premium sportswear layout.",
    "scoringRubric": [
      {
        "key": "brandClarity",
        "label": "Brand clarity",
        "description": "AEROCAST and the tagline should be cleanly placed, readable, and integrated without visual clutter.",
        "weight": 1.2,
        "passingScore": 0.75
      },
      {
        "key": "materialRealism",
        "label": "Material realism",
        "description": "Sneaker textiles, translucent sole, carbon plate, stitching, pedestal, and studio surfaces should look physically plausible and high quality.",
        "weight": 1.1,
        "passingScore": 0.75
      },
      {
        "key": "commercialComposition",
        "label": "Commercial composition",
        "description": "The image should feel ready for a premium athletic campaign, with strong central focus, controlled negative space, and polished lighting.",
        "weight": 1,
        "passingScore": 0.7
      }
    ]
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "44638491-4f1d-4023-9f7d-fafdd961c6f4",
  "imageUUID": "cb9d6cca-59bf-4749-94cd-1cb21cabeaaa",
  "imageURL": "https://im.runware.ai/image/os/a01d21/ws/3/ii/cb9d6cca-59bf-4749-94cd-1cb21cabeaaa.jpg",
  "seed": 1195526321,
  "cost": 0.145176
}
transparent-background

Luna Moth Pastry Menu Cutout

Luna Moth Pastry Menu Cutout

Commercial menu photography of one clearly bounded, fully edible luna moth entremet created for an upscale natural-history museum café. The single pastry has a compact pistachio mousse body and two symmetrical pale celadon wafer-paper wings, with delicate cocoa-butter veining, tiny scalloped edges, subtle toasted gradients, and slim dark-chocolate antennae attached securely to the body. Refined patisserie craftsmanship, realistic edible materials, appetizing texture, minute crisp edge detail, no loose crumbs or detached garnish. Centered three-quarter overhead view showing the complete silhouette, generous clear space on every side, entirely in frame. Soft diffused studio lighting with restrained highlights and natural dimensional shading. Photorealistic premium restaurant menu cutout, precise clean edges, isolated on a truly transparent background with alpha transparency. No plate, no utensils, no props, no hands, no text, no logo, no border, no additional food.

import { createClient } from '@runware/sdk'

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

const [result] = await client.run({
  outputFormat: 'PNG',
  model: 'sourceful:riverflow-2.5@pro',
  positivePrompt: 'Commercial menu photography of one clearly bounded, fully edible luna moth entremet created for an upscale natural-history museum café. The single pastry has a compact pistachio mousse body and two symmetrical pale celadon wafer-paper wings, with delicate cocoa-butter veining, tiny scalloped edges, subtle toasted gradients, and slim dark-chocolate antennae attached securely to the body. Refined patisserie craftsmanship, realistic edible materials, appetizing texture, minute crisp edge detail, no loose crumbs or detached garnish. Centered three-quarter overhead view showing the complete silhouette, generous clear space on every side, entirely in frame. Soft diffused studio lighting with restrained highlights and natural dimensional shading. Photorealistic premium restaurant menu cutout, precise clean edges, isolated on a truly transparent background with alpha transparency. No plate, no utensils, no props, no hands, no text, no logo, no border, no additional food.',
  width: 1024,
  height: 1024,
  settings: {
    backgroundMode: 'transparent'
  }
})
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({
            "outputFormat": "PNG",
            "model": "sourceful:riverflow-2.5@pro",
            "positivePrompt": "Commercial menu photography of one clearly bounded, fully edible luna moth entremet created for an upscale natural-history museum café. The single pastry has a compact pistachio mousse body and two symmetrical pale celadon wafer-paper wings, with delicate cocoa-butter veining, tiny scalloped edges, subtle toasted gradients, and slim dark-chocolate antennae attached securely to the body. Refined patisserie craftsmanship, realistic edible materials, appetizing texture, minute crisp edge detail, no loose crumbs or detached garnish. Centered three-quarter overhead view showing the complete silhouette, generous clear space on every side, entirely in frame. Soft diffused studio lighting with restrained highlights and natural dimensional shading. Photorealistic premium restaurant menu cutout, precise clean edges, isolated on a truly transparent background with alpha transparency. No plate, no utensils, no props, no hands, no text, no logo, no border, no additional food.",
            "width": 1024,
            "height": 1024,
            "settings": {
                "backgroundMode": "transparent"
            }
        })


asyncio.run(main())
curl https://api.runware.ai/v1 \
  -H "Authorization: Bearer $RUNWARE_API_KEY" \
  -H "Content-Type: application/json" \
  -d '[
    {
      "taskType": "imageInference",
      "taskUUID": "0d989723-5cda-4e1b-b1ff-7573542e2f2c",
      "outputFormat": "PNG",
      "model": "sourceful:riverflow-2.5@pro",
      "positivePrompt": "Commercial menu photography of one clearly bounded, fully edible luna moth entremet created for an upscale natural-history museum café. The single pastry has a compact pistachio mousse body and two symmetrical pale celadon wafer-paper wings, with delicate cocoa-butter veining, tiny scalloped edges, subtle toasted gradients, and slim dark-chocolate antennae attached securely to the body. Refined patisserie craftsmanship, realistic edible materials, appetizing texture, minute crisp edge detail, no loose crumbs or detached garnish. Centered three-quarter overhead view showing the complete silhouette, generous clear space on every side, entirely in frame. Soft diffused studio lighting with restrained highlights and natural dimensional shading. Photorealistic premium restaurant menu cutout, precise clean edges, isolated on a truly transparent background with alpha transparency. No plate, no utensils, no props, no hands, no text, no logo, no border, no additional food.",
      "width": 1024,
      "height": 1024,
      "settings": {
        "backgroundMode": "transparent"
      }
    }
  ]'
runware run sourceful:riverflow-2.5@pro \
  outputFormat=PNG \
  positivePrompt="Commercial menu photography of one clearly bounded, fully edible luna moth entremet created for an upscale natural-history museum café. The single pastry has a compact pistachio mousse body and two symmetrical pale celadon wafer-paper wings, with delicate cocoa-butter veining, tiny scalloped edges, subtle toasted gradients, and slim dark-chocolate antennae attached securely to the body. Refined patisserie craftsmanship, realistic edible materials, appetizing texture, minute crisp edge detail, no loose crumbs or detached garnish. Centered three-quarter overhead view showing the complete silhouette, generous clear space on every side, entirely in frame. Soft diffused studio lighting with restrained highlights and natural dimensional shading. Photorealistic premium restaurant menu cutout, precise clean edges, isolated on a truly transparent background with alpha transparency. No plate, no utensils, no props, no hands, no text, no logo, no border, no additional food." \
  width=1024 \
  height=1024 \
  settings.backgroundMode=transparent
{
  "taskType": "imageInference",
  "taskUUID": "0d989723-5cda-4e1b-b1ff-7573542e2f2c",
  "outputFormat": "PNG",
  "model": "sourceful:riverflow-2.5@pro",
  "positivePrompt": "Commercial menu photography of one clearly bounded, fully edible luna moth entremet created for an upscale natural-history museum café. The single pastry has a compact pistachio mousse body and two symmetrical pale celadon wafer-paper wings, with delicate cocoa-butter veining, tiny scalloped edges, subtle toasted gradients, and slim dark-chocolate antennae attached securely to the body. Refined patisserie craftsmanship, realistic edible materials, appetizing texture, minute crisp edge detail, no loose crumbs or detached garnish. Centered three-quarter overhead view showing the complete silhouette, generous clear space on every side, entirely in frame. Soft diffused studio lighting with restrained highlights and natural dimensional shading. Photorealistic premium restaurant menu cutout, precise clean edges, isolated on a truly transparent background with alpha transparency. No plate, no utensils, no props, no hands, no text, no logo, no border, no additional food.",
  "width": 1024,
  "height": 1024,
  "settings": {
    "backgroundMode": "transparent"
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "0d989723-5cda-4e1b-b1ff-7573542e2f2c",
  "imageUUID": "ff86aad4-fcc5-4659-8dd4-e9fb35209bea",
  "imageURL": "https://im.runware.ai/image/os/a03d21/ws/3/ii/ff86aad4-fcc5-4659-8dd4-e9fb35209bea.png",
  "seed": 886603849,
  "cost": 0.2526
}
Text to Image

Modular Garden Speaker System

Modular Garden Speaker System

Premium commercial banner for SILT AUDIO: a modular outdoor speaker shaped like stacked smooth river stones, matte warm gray ceramic shells with brushed graphite seams, compact solar charging puck, dew beads, tiny ferns, placed on a sculpted basalt plinth beside shallow clear water in a serene indoor botanical showroom. Early morning diffused skylight, crisp reflections, balanced negative space on the right for copy, high-end product photography, precise surfaces, sharp logo area, elegant sustainable tech mood, no people, no extra text except subtle brand name SILT on the main unit.

import { createClient } from '@runware/sdk'

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

const [result] = await client.run({
  model: 'sourceful:riverflow-2.5@pro',
  positivePrompt: 'Premium commercial banner for SILT AUDIO: a modular outdoor speaker shaped like stacked smooth river stones, matte warm gray ceramic shells with brushed graphite seams, compact solar charging puck, dew beads, tiny ferns, placed on a sculpted basalt plinth beside shallow clear water in a serene indoor botanical showroom. Early morning diffused skylight, crisp reflections, balanced negative space on the right for copy, high-end product photography, precise surfaces, sharp logo area, elegant sustainable tech mood, no people, no extra text except subtle brand name SILT on the main unit.',
  width: 1456,
  height: 624,
  settings: {
    enhancePrompt: true,
    thinkingLevel: 'high',
    scoringPrompt: 'Prioritize a believable hero product, clean premium composition, legible single brand mark, refined surface detail, and usable empty space for a campaign headline.',
    scoringRubric: [
      {
        key: 'productFocus',
        label: 'Product Focus',
        description: 'The speaker system should be the clear focal point with a convincing premium consumer tech presence.',
        weight: 0.35,
        passingScore: 0.75
      },
      {
        key: 'surfaceRealism',
        label: 'Surface Realism',
        description: 'Ceramic, graphite, water, dew, foliage, and stone textures should appear physically plausible and refined.',
        weight: 0.3,
        passingScore: 0.7
      },
      {
        key: 'brandClarity',
        label: 'Brand Clarity',
        description: 'The SILT brand mark should be subtle, clean, and free from garbled extra lettering.',
        weight: 0.2,
        passingScore: 0.65
      },
      {
        key: 'layoutSpace',
        label: 'Layout Space',
        description: 'The composition should preserve clean negative space on the right for later copy placement.',
        weight: 0.15,
        passingScore: 0.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": "sourceful:riverflow-2.5@pro",
            "positivePrompt": "Premium commercial banner for SILT AUDIO: a modular outdoor speaker shaped like stacked smooth river stones, matte warm gray ceramic shells with brushed graphite seams, compact solar charging puck, dew beads, tiny ferns, placed on a sculpted basalt plinth beside shallow clear water in a serene indoor botanical showroom. Early morning diffused skylight, crisp reflections, balanced negative space on the right for copy, high-end product photography, precise surfaces, sharp logo area, elegant sustainable tech mood, no people, no extra text except subtle brand name SILT on the main unit.",
            "width": 1456,
            "height": 624,
            "settings": {
                "enhancePrompt": True,
                "thinkingLevel": "high",
                "scoringPrompt": "Prioritize a believable hero product, clean premium composition, legible single brand mark, refined surface detail, and usable empty space for a campaign headline.",
                "scoringRubric": [
                    {
                        "key": "productFocus",
                        "label": "Product Focus",
                        "description": "The speaker system should be the clear focal point with a convincing premium consumer tech presence.",
                        "weight": 0.35,
                        "passingScore": 0.75
                    },
                    {
                        "key": "surfaceRealism",
                        "label": "Surface Realism",
                        "description": "Ceramic, graphite, water, dew, foliage, and stone textures should appear physically plausible and refined.",
                        "weight": 0.3,
                        "passingScore": 0.7
                    },
                    {
                        "key": "brandClarity",
                        "label": "Brand Clarity",
                        "description": "The SILT brand mark should be subtle, clean, and free from garbled extra lettering.",
                        "weight": 0.2,
                        "passingScore": 0.65
                    },
                    {
                        "key": "layoutSpace",
                        "label": "Layout Space",
                        "description": "The composition should preserve clean negative space on the right for later copy placement.",
                        "weight": 0.15,
                        "passingScore": 0.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": "ed5b0d24-78c1-41b6-a4a6-4db1e36d6b8f",
      "model": "sourceful:riverflow-2.5@pro",
      "positivePrompt": "Premium commercial banner for SILT AUDIO: a modular outdoor speaker shaped like stacked smooth river stones, matte warm gray ceramic shells with brushed graphite seams, compact solar charging puck, dew beads, tiny ferns, placed on a sculpted basalt plinth beside shallow clear water in a serene indoor botanical showroom. Early morning diffused skylight, crisp reflections, balanced negative space on the right for copy, high-end product photography, precise surfaces, sharp logo area, elegant sustainable tech mood, no people, no extra text except subtle brand name SILT on the main unit.",
      "width": 1456,
      "height": 624,
      "settings": {
        "enhancePrompt": true,
        "thinkingLevel": "high",
        "scoringPrompt": "Prioritize a believable hero product, clean premium composition, legible single brand mark, refined surface detail, and usable empty space for a campaign headline.",
        "scoringRubric": [
          {
            "key": "productFocus",
            "label": "Product Focus",
            "description": "The speaker system should be the clear focal point with a convincing premium consumer tech presence.",
            "weight": 0.35,
            "passingScore": 0.75
          },
          {
            "key": "surfaceRealism",
            "label": "Surface Realism",
            "description": "Ceramic, graphite, water, dew, foliage, and stone textures should appear physically plausible and refined.",
            "weight": 0.3,
            "passingScore": 0.7
          },
          {
            "key": "brandClarity",
            "label": "Brand Clarity",
            "description": "The SILT brand mark should be subtle, clean, and free from garbled extra lettering.",
            "weight": 0.2,
            "passingScore": 0.65
          },
          {
            "key": "layoutSpace",
            "label": "Layout Space",
            "description": "The composition should preserve clean negative space on the right for later copy placement.",
            "weight": 0.15,
            "passingScore": 0.7
          }
        ]
      }
    }
  ]'
runware run sourceful:riverflow-2.5@pro \
  positivePrompt="Premium commercial banner for SILT AUDIO: a modular outdoor speaker shaped like stacked smooth river stones, matte warm gray ceramic shells with brushed graphite seams, compact solar charging puck, dew beads, tiny ferns, placed on a sculpted basalt plinth beside shallow clear water in a serene indoor botanical showroom. Early morning diffused skylight, crisp reflections, balanced negative space on the right for copy, high-end product photography, precise surfaces, sharp logo area, elegant sustainable tech mood, no people, no extra text except subtle brand name SILT on the main unit." \
  width=1456 \
  height=624 \
  settings.enhancePrompt=true \
  settings.thinkingLevel=high \
  settings.scoringPrompt="Prioritize a believable hero product, clean premium composition, legible single brand mark, refined surface detail, and usable empty space for a campaign headline." \
  settings.scoringRubric.0.key=productFocus \
  settings.scoringRubric.0.label="Product Focus" \
  settings.scoringRubric.0.description="The speaker system should be the clear focal point with a convincing premium consumer tech presence." \
  settings.scoringRubric.0.weight=0.35 \
  settings.scoringRubric.0.passingScore=0.75 \
  settings.scoringRubric.1.key=surfaceRealism \
  settings.scoringRubric.1.label="Surface Realism" \
  settings.scoringRubric.1.description="Ceramic, graphite, water, dew, foliage, and stone textures should appear physically plausible and refined." \
  settings.scoringRubric.1.weight=0.3 \
  settings.scoringRubric.1.passingScore=0.7 \
  settings.scoringRubric.2.key=brandClarity \
  settings.scoringRubric.2.label="Brand Clarity" \
  settings.scoringRubric.2.description="The SILT brand mark should be subtle, clean, and free from garbled extra lettering." \
  settings.scoringRubric.2.weight=0.2 \
  settings.scoringRubric.2.passingScore=0.65 \
  settings.scoringRubric.3.key=layoutSpace \
  settings.scoringRubric.3.label="Layout Space" \
  settings.scoringRubric.3.description="The composition should preserve clean negative space on the right for later copy placement." \
  settings.scoringRubric.3.weight=0.15 \
  settings.scoringRubric.3.passingScore=0.7
{
  "taskType": "imageInference",
  "taskUUID": "ed5b0d24-78c1-41b6-a4a6-4db1e36d6b8f",
  "model": "sourceful:riverflow-2.5@pro",
  "positivePrompt": "Premium commercial banner for SILT AUDIO: a modular outdoor speaker shaped like stacked smooth river stones, matte warm gray ceramic shells with brushed graphite seams, compact solar charging puck, dew beads, tiny ferns, placed on a sculpted basalt plinth beside shallow clear water in a serene indoor botanical showroom. Early morning diffused skylight, crisp reflections, balanced negative space on the right for copy, high-end product photography, precise surfaces, sharp logo area, elegant sustainable tech mood, no people, no extra text except subtle brand name SILT on the main unit.",
  "width": 1456,
  "height": 624,
  "settings": {
    "enhancePrompt": true,
    "thinkingLevel": "high",
    "scoringPrompt": "Prioritize a believable hero product, clean premium composition, legible single brand mark, refined surface detail, and usable empty space for a campaign headline.",
    "scoringRubric": [
      {
        "key": "productFocus",
        "label": "Product Focus",
        "description": "The speaker system should be the clear focal point with a convincing premium consumer tech presence.",
        "weight": 0.35,
        "passingScore": 0.75
      },
      {
        "key": "surfaceRealism",
        "label": "Surface Realism",
        "description": "Ceramic, graphite, water, dew, foliage, and stone textures should appear physically plausible and refined.",
        "weight": 0.3,
        "passingScore": 0.7
      },
      {
        "key": "brandClarity",
        "label": "Brand Clarity",
        "description": "The SILT brand mark should be subtle, clean, and free from garbled extra lettering.",
        "weight": 0.2,
        "passingScore": 0.65
      },
      {
        "key": "layoutSpace",
        "label": "Layout Space",
        "description": "The composition should preserve clean negative space on the right for later copy placement.",
        "weight": 0.15,
        "passingScore": 0.7
      }
    ]
  }
}
Response
{
  "taskType": "imageInference",
  "taskUUID": "ed5b0d24-78c1-41b6-a4a6-4db1e36d6b8f",
  "imageUUID": "a4caa3dd-65c0-472d-bf47-fa608e2e2b8f",
  "imageURL": "https://im.runware.ai/image/os/a05d22/ws/3/ii/a4caa3dd-65c0-472d-bf47-fa608e2e2b8f.jpg",
  "seed": 891817704,
  "cost": 0.068196
}