---
title: Bria 3.2 | Runware Docs
url: https://runware.ai/docs/models/bria-3-2
description: Commercial-safe text to image model for production use
---
# Bria 3.2

Bria 3.2 is a compact text to image model built on fully licensed data. It delivers strong prompt alignment, high aesthetic quality, and reliable short text rendering. Ideal for enterprise workflows that need compliant image generation with predictable behavior and easy integration.

- **ID**: `bria:10@1`
- **Status**: live
- **Creator**: Bria
- **Release Date**: June 10, 2025
- **Capabilities**: Text to Image

## Pricing

Each image generation costs $0.04 at 1024x1024.

- **1024x1024 · 8 steps**: `$0.04`

## Compatibility & Validation

`width` and `height` must be used together.

---

The following dimension combinations are supported:

| Configuration | Dimensions |
| --- | --- |
| `1K (1:1)` | `1024x1024` |
| `1K (2:3)` | `832x1216` |
| `1K (3:2)` | `1216x832` |
| `1K (7:9)` | `896x1152` |
| `1K (9:7)` | `1152x896` |
| `1K (14:17)` | `896x1088` |
| `1K (17:14)` | `1088x896` |
| `1K (4:7)` | `768x1344` |
| `1K (7:4)` | `1344x768` |

## Request Parameters

**API Options**

Platform-level options for task execution and delivery.

### [taskType](https://runware.ai/docs/models/bria-3-2#request-tasktype)

- **Type**: `string`
- **Required**: true
- **Value**: `imageInference`

Identifier for the type of task being performed

### [taskUUID](https://runware.ai/docs/models/bria-3-2#request-taskuuid)

- **Type**: `string`
- **Required**: true
- **Format**: `UUID v4`

UUID v4 identifier for tracking tasks and matching async responses. Must be unique per task.

### [outputType](https://runware.ai/docs/models/bria-3-2#request-outputtype)

- **Type**: `string`
- **Default**: `URL`

Image output type.

**Allowed values**: `URL` `base64Data` `dataURI`

### [outputFormat](https://runware.ai/docs/models/bria-3-2#request-outputformat)

- **Type**: `string`
- **Default**: `JPG`

Specifies the file format of the generated output. The available values depend on the task type and the specific model's capabilities.

- \`JPG\`: Best for photorealistic images with smaller file sizes (no transparency).
- \`PNG\`: Lossless compression, supports high quality and transparency (alpha channel).
- \`WEBP\`: Modern format providing superior compression and transparency support.

> [!NOTE]
> \*\*Transparency\*\*: If you are using features like background removal or LayerDiffuse that require transparency, you must select a format that supports an alpha channel (e.g., \`PNG\`, \`WEBP\`, \`TIFF\`). \`JPG\` does not support transparency.

**Allowed values**: `JPG` `PNG` `WEBP`

### [outputQuality](https://runware.ai/docs/models/bria-3-2#request-outputquality)

- **Type**: `integer`
- **Min**: `20`
- **Max**: `99`
- **Default**: `95`

Compression quality of the output. Higher values preserve quality but increase file size.

### [webhookURL](https://runware.ai/docs/models/bria-3-2#request-webhookurl)

- **Type**: `string`
- **Format**: `URI`

Specifies a webhook URL where JSON responses will be sent via HTTP POST when generation tasks complete. For batch requests with multiple results, each completed item triggers a separate webhook call as it becomes available.

**Learn more** (1 resource):

- [Webhooks](https://runware.ai/docs/platform/webhooks) (platform)

### [deliveryMethod](https://runware.ai/docs/models/bria-3-2#request-deliverymethod)

- **Type**: `string`
- **Default**: `sync`

Determines how the API delivers task results.

**Allowed values**:

- `sync` Returns complete results directly in the API response.
- `async` Returns an immediate acknowledgment with the task UUID. Poll for results using getResponse.

**Learn more** (1 resource):

- [Task Polling](https://runware.ai/docs/platform/task-polling) (platform)

### [uploadEndpoint](https://runware.ai/docs/models/bria-3-2#request-uploadendpoint)

- **Type**: `string`
- **Format**: `URI`

Specifies a URL where the generated content will be automatically uploaded using the HTTP PUT method. The raw binary data of the media file is sent directly as the request body. For secure uploads to cloud storage, use presigned URLs that include temporary authentication credentials.

**Common use cases:**

- **Cloud storage**: Upload directly to S3 buckets, Google Cloud Storage, or Azure Blob Storage using presigned URLs.
- **CDN integration**: Upload to content delivery networks for immediate distribution.

```text
// S3 presigned URL for secure upload
https://your-bucket.s3.amazonaws.com/generated/content.mp4?X-Amz-Signature=abc123&X-Amz-Expires=3600

// Google Cloud Storage presigned URL
https://storage.googleapis.com/your-bucket/content.jpg?X-Goog-Signature=xyz789

// Custom storage endpoint
https://storage.example.com/uploads/generated-image.jpg
```

The content data will be sent as the request body to the specified URL when generation is complete.

### [safety](https://runware.ai/docs/models/bria-3-2#request-safety)

- **Path**: `safety.checkContent`
- **Type**: `object (2 properties)`

Content safety checking configuration for image generation.

#### [checkContent](https://runware.ai/docs/models/bria-3-2#request-safety-checkcontent)

- **Path**: `safety.checkContent`
- **Type**: `boolean`
- **Default**: `false`

Enable or disable content safety checking. When enabled, defaults to `fast` mode.

#### [mode](https://runware.ai/docs/models/bria-3-2#request-safety-mode)

- **Path**: `safety.mode`
- **Type**: `string`
- **Default**: `none`

Safety checking mode for image generation.

**Allowed values**:

- `none` Disables checking.
- `fast` Performs a single check.

### [ttl](https://runware.ai/docs/models/bria-3-2#request-ttl)

- **Type**: `integer`
- **Min**: `60`

Time-to-live (TTL) in seconds for generated content. Only applies when `outputType` is `URL`.

### [includeCost](https://runware.ai/docs/models/bria-3-2#request-includecost)

- **Type**: `boolean`
- **Default**: `false`

Include task cost in the response.

### [numberResults](https://runware.ai/docs/models/bria-3-2#request-numberresults)

- **Type**: `integer`
- **Min**: `1`
- **Max**: `20`
- **Default**: `1`

Number of results to generate. Each result uses a different seed, producing variations of the same parameters.

**Generation Parameters**

Core parameters for controlling the generated content.

### [model](https://runware.ai/docs/models/bria-3-2#request-model)

- **Type**: `string`
- **Required**: true
- **Value**: `bria:10@1`

Identifier of the model to use for generation.

**Learn more** (3 resources):

- [Text To Image: Model Selection The Foundation Of Generation](https://runware.ai/docs/guides/text-to-image#model-selection-the-foundation-of-generation) (guide)
- [Image Inpainting: Model Specialized Inpainting Models](https://runware.ai/docs/guides/image-inpainting#model-specialized-inpainting-models) (guide)
- [Image Outpainting: Other Critical Parameters](https://runware.ai/docs/guides/image-outpainting#other-critical-parameters) (guide)

### [positivePrompt](https://runware.ai/docs/models/bria-3-2#request-positiveprompt)

- **Type**: `string`
- **Required**: true
- **Min**: `2`
- **Max**: `3000`

Text prompt describing elements to include in the generated output.

**Learn more** (2 resources):

- [Text To Image: Prompts Guiding The Generation](https://runware.ai/docs/guides/text-to-image#prompts-guiding-the-generation) (guide)
- [Image Outpainting: Other Critical Parameters](https://runware.ai/docs/guides/image-outpainting#other-critical-parameters) (guide)

### [negativePrompt](https://runware.ai/docs/models/bria-3-2#request-negativeprompt)

- **Type**: `string`
- **Min**: `2`
- **Max**: `3000`

Prompt to guide what to exclude from generation. Ignored when guidance is disabled (CFGScale ≤ 1).

**Learn more** (1 resource):

- [Text To Image: Prompts Guiding The Generation](https://runware.ai/docs/guides/text-to-image#prompts-guiding-the-generation) (guide)

### [width](https://runware.ai/docs/models/bria-3-2#request-width)

- **Type**: `integer`
- **Required**: true
- **Paired with**: height

Width of the generated media in pixels.

**Learn more** (2 resources):

- [Image To Image: Dimensions Changing Aspect Ratio](https://runware.ai/docs/guides/image-to-image#dimensions-changing-aspect-ratio) (guide)
- [Image Outpainting: Dimensions Critical For Outpainting](https://runware.ai/docs/guides/image-outpainting#dimensions-critical-for-outpainting) (guide)

### [height](https://runware.ai/docs/models/bria-3-2#request-height)

- **Type**: `integer`
- **Required**: true
- **Paired with**: width

Height of the generated media in pixels.

**Learn more** (2 resources):

- [Image To Image: Dimensions Changing Aspect Ratio](https://runware.ai/docs/guides/image-to-image#dimensions-changing-aspect-ratio) (guide)
- [Image Outpainting: Dimensions Critical For Outpainting](https://runware.ai/docs/guides/image-outpainting#dimensions-critical-for-outpainting) (guide)

### [seed](https://runware.ai/docs/models/bria-3-2#request-seed)

- **Type**: `integer`
- **Min**: `0`
- **Max**: `9223372036854776000`

Random seed for reproducible generation. When not provided, a random seed is generated in the unsigned 32-bit range.

**Learn more** (1 resource):

- [Text To Image: Seed Controlling Randomness Deterministically](https://runware.ai/docs/guides/text-to-image#seed-controlling-randomness-deterministically) (guide)

### [steps](https://runware.ai/docs/models/bria-3-2#request-steps)

- **Type**: `integer`
- **Min**: `20`
- **Max**: `50`
- **Default**: `20`

Total number of denoising steps. Higher values generally produce more detailed results but take longer.

**Learn more** (1 resource):

- [Text To Image: Steps Trading Quality For Speed](https://runware.ai/docs/guides/text-to-image#steps-trading-quality-for-speed) (guide)

### [controlNet](https://runware.ai/docs/models/bria-3-2#request-controlnet)

- **Path**: `controlNet.model`
- **Type**: `array of objects (8 properties)`

With ControlNet, you can provide a guide image to help the model generate images that align with the desired structure. This guide image can be generated with our ControlNet preprocessing tool, extracting guidance information from an input image. The guide image can be in the form of an edge map, a pose, a depth estimation or any other type of control image that guides the generation process via the ControlNet model.

Multiple ControlNet models can be used at the same time to provide different types of guidance information to the model.

**Examples**:

```json
"controlNet": [
  {
    "model": "<controlnet-model-air>",
    "guideImage": "c64351d5-4c59-42f7-95e1-eace013eddab",
    "weight": 0.7,
    "startStep": 0,
    "endStep": 20,
    "controlMode": "controlnet"
  }
]
```

**Learn more** (2 resources):

- [Game Assets Canny: Controlnet And Edge Detection](https://runware.ai/docs/guides/game-assets-canny#controlnet-and-edge-detection) (guide)
- [Text To Image: Controlnet Structural Guidance](https://runware.ai/docs/guides/text-to-image#controlnet-structural-guidance) (guide)

#### [model](https://runware.ai/docs/models/bria-3-2#request-controlnet-model)

- **Path**: `controlNet.model`
- **Type**: `string`
- **Required**: true

ControlNet model identifier.

#### [weight](https://runware.ai/docs/models/bria-3-2#request-controlnet-weight)

- **Path**: `controlNet.weight`
- **Type**: `float`
- **Min**: `-4`
- **Max**: `4`
- **Step**: `0.01`
- **Default**: `1`

Strength of the ControlNet influence. A value of 0 means no influence. Higher values increase the influence, and negative values can be used to steer away from the guide image.

#### [guideImage](https://runware.ai/docs/models/bria-3-2#request-controlnet-guideimage)

- **Path**: `controlNet.guideImage`
- **Type**: `string`
- **Required**: true

Reference image for ControlNet guidance (UUID, URL, Data URI, or Base64).

#### [controlMode](https://runware.ai/docs/models/bria-3-2#request-controlnet-controlmode)

- **Path**: `controlNet.controlMode`
- **Type**: `string`
- **Default**: `balanced`

ControlNet guidance mode.

**Allowed values**:

- `balanced` Equal weight between ControlNet and prompt.
- `controlnet` Prioritize ControlNet guidance.
- `prompt` Prioritize prompt guidance.

#### [endStep](https://runware.ai/docs/models/bria-3-2#request-controlnet-endstep)

- **Path**: `controlNet.endStep`
- **Type**: `integer`
- **Min**: `1`

Absolute step number to end ControlNet influence. Must be greater than `startStep` and less than or equal to `steps`.

#### [endStepPercentage](https://runware.ai/docs/models/bria-3-2#request-controlnet-endsteppercentage)

- **Path**: `controlNet.endStepPercentage`
- **Type**: `integer`
- **Min**: `1`
- **Max**: `100`

Percentage of steps to end ControlNet influence. Must be greater than `startStepPercentage`.

#### [startStep](https://runware.ai/docs/models/bria-3-2#request-controlnet-startstep)

- **Path**: `controlNet.startStep`
- **Type**: `integer`
- **Min**: `0`

Absolute step number to start ControlNet influence. Must be less than `endStep`.

#### [startStepPercentage](https://runware.ai/docs/models/bria-3-2#request-controlnet-startsteppercentage)

- **Path**: `controlNet.startStepPercentage`
- **Type**: `integer`
- **Min**: `0`
- **Max**: `99`

Percentage of steps to start ControlNet influence. Must be less than `endStepPercentage`.

### [ipAdapters](https://runware.ai/docs/models/bria-3-2#request-ipadapters)

- **Path**: `ipAdapters.model`
- **Type**: `array of objects (7 properties)`

IP-Adapters enable image-prompted generation, allowing you to use reference images to guide the style and content of your generations. Multiple IP Adapters can be used simultaneously.

**Examples**:

```json
"ipAdapters": [
  {
    "model": "<ip-adapter-model-air>",
    "guideImages": ["c64351d5-4c59-42f7-95e1-eace013eddab"],
    "weight": 0.75
  },
  {
    "model": "<ip-adapter-model-air>",
    "guideImages": ["d7e8f9a0-2b5c-4e7f-a1d3-9c8b7a6e5d4f"],
    "weight": 0.5
  }
]
```

**Learn more** (1 resource):

- [Image To Image: Ip Adapters Reference Based Generation](https://runware.ai/docs/guides/image-to-image#ip-adapters-reference-based-generation) (guide)

#### [model](https://runware.ai/docs/models/bria-3-2#request-ipadapters-model)

- **Path**: `ipAdapters.model`
- **Type**: `string`
- **Required**: true

We make use of the [AIR system](https://runware.ai/models) to identify IP-Adapter models. This identifier is a unique string that represents a specific model.

**Supported models list**:

| AIR ID | Model Name |
| --- | --- |
| runware:55@1 | IP Adapter SDXL |
| runware:55@2 | IP Adapter SDXL Plus |
| runware:55@3 | IP Adapter SDXL Plus Face |
| runware:55@4 | IP Adapter SDXL Vit-H |
| runware:55@5 | IP Adapter SD 1.5 |
| runware:55@6 | IP Adapter SD 1.5 Plus |
| runware:55@7 | IP Adapter SD 1.5 Light |
| runware:55@8 | IP Adapter SD 1.5 Plus Face |
| runware:55@10 | IP Adapter SD 1.5 Vit-G |

#### [weight](https://runware.ai/docs/models/bria-3-2#request-ipadapters-weight)

- **Path**: `ipAdapters.weight`
- **Type**: `float`
- **Min**: `-4`
- **Max**: `4`
- **Step**: `0.01`
- **Default**: `1`

Strength of the IP-Adapter influence. A value of 0 means no influence. Higher values increase the influence, and negative values can be used to steer away from the reference.

#### [guideImages](https://runware.ai/docs/models/bria-3-2#request-ipadapters-guideimages)

- **Path**: `ipAdapters.guideImages`
- **Type**: `array of strings`
- **Required**: true

Images to guide the IP-Adapter (UUID, URL, Data URI, or Base64).

#### [combineMethod](https://runware.ai/docs/models/bria-3-2#request-ipadapters-combinemethod)

- **Path**: `ipAdapters.combineMethod`
- **Type**: `string`
- **Default**: `concat`

Controls how multiple reference images are combined.

**Allowed values**: `concat` `add` `subtract` `average` `norm_average`

#### [embedScaling](https://runware.ai/docs/models/bria-3-2#request-ipadapters-embedscaling)

- **Path**: `ipAdapters.embedScaling`
- **Type**: `string`
- **Default**: `kv`

Determines which embedding components are used and their strength.

**Allowed values**: `only_v` `kv` `kv_penalty_c` `k_mean_v_penalty_c`

#### [weightType](https://runware.ai/docs/models/bria-3-2#request-ipadapters-weighttype)

- **Path**: `ipAdapters.weightType`
- **Type**: `string`
- **Default**: `normal`

Shapes how influence evolves during generation.

**Allowed values**: `normal` `ease_in` `ease_out` `ease_in_out` `weak_input` `weak_output` `weak_middle` `strong_middle` `style_transfer` `composition` `strong_style_transfer` `style_and_composition` `strong_style_and_composition`

#### [weightComposition](https://runware.ai/docs/models/bria-3-2#request-ipadapters-weightcomposition)

- **Path**: `ipAdapters.weightComposition`
- **Type**: `float`
- **Min**: `0`
- **Max**: `1`
- **Step**: `0.01`

Controls composition/layout influence specifically.

**Provider Settings**

Parameters specific to this model provider. These must be nested inside the \`providerSettings.bria\` object.

### [contentModeration](https://runware.ai/docs/models/bria-3-2#request-providersettings-bria-contentmoderation)

- **Path**: `providerSettings.bria.contentModeration`
- **Type**: `boolean`
- **Default**: `true`

Apply content moderation to inputs and outputs.

### [enhanceImage](https://runware.ai/docs/models/bria-3-2#request-providersettings-bria-enhanceimage)

- **Path**: `providerSettings.bria.enhanceImage`
- **Type**: `boolean`
- **Default**: `false`

Generate images with richer details and sharper textures.

### [ipSignal](https://runware.ai/docs/models/bria-3-2#request-providersettings-bria-ipsignal)

- **Path**: `providerSettings.bria.ipSignal`
- **Type**: `boolean`
- **Default**: `false`

Flag potential IP-related content in prompt or output.

### [medium](https://runware.ai/docs/models/bria-3-2#request-providersettings-bria-medium)

- **Path**: `providerSettings.bria.medium`
- **Type**: `string`

Artistic medium.

**Allowed values**: `photography` `art`

### [promptEnhancement](https://runware.ai/docs/models/bria-3-2#request-providersettings-bria-promptenhancement)

- **Path**: `providerSettings.bria.promptEnhancement`
- **Type**: `boolean`
- **Default**: `false`

Expand prompt with descriptive variations.

## Response Parameters

### [taskType](https://runware.ai/docs/models/bria-3-2#response-tasktype)

- **Type**: `string`
- **Required**: true
- **Value**: `imageInference`

Type of the task.

### [taskUUID](https://runware.ai/docs/models/bria-3-2#response-taskuuid)

- **Type**: `string`
- **Required**: true
- **Format**: `UUID v4`

UUID of the task.

### [imageUUID](https://runware.ai/docs/models/bria-3-2#response-imageuuid)

- **Type**: `string`
- **Required**: true
- **Format**: `UUID v4`

UUID of the output image.

### [imageURL](https://runware.ai/docs/models/bria-3-2#response-imageurl)

- **Type**: `string`
- **Format**: `URI`

URL of the output image.

### [imageBase64Data](https://runware.ai/docs/models/bria-3-2#response-imagebase64data)

- **Type**: `string`

Base64-encoded image data.

### [imageDataURI](https://runware.ai/docs/models/bria-3-2#response-imagedatauri)

- **Type**: `string`
- **Format**: `URI`

Data URI of the output image.

### [seed](https://runware.ai/docs/models/bria-3-2#response-seed)

- **Type**: `integer`

The seed used for generation. If none was provided, shows the randomly generated seed.

### [NSFWContent](https://runware.ai/docs/models/bria-3-2#response-nsfwcontent)

- **Type**: `boolean`

Flag indicating if NSFW content was detected.

### [cost](https://runware.ai/docs/models/bria-3-2#response-cost)

- **Type**: `float`

Task cost in USD. Present when `includeCost` is set to `true` in the request.

## Examples

### Floating Library Over Saltflats (Text to Image)

![Floating Library Over Saltflats](https://assets.runware.ai/examples/bria-3-2/26195acf-14b5-4aab-a897-b9d4586d5669.jpg)

**Request**:

```json
{
  "taskType": "imageInference",
  "taskUUID": "461ec00c-f303-4f5c-b9d9-b1242f1c319b",
  "model": "bria:10@1",
  "positivePrompt": "A vast mirror-like salt flat at sunrise with a colossal floating public library suspended by elegant brass balloons and taut cables, drifting just above the reflective ground. Long wooden stairways descend from the library to tiny reading platforms scattered across the white plain. A few readers in wind-swept linen coats carry books between platforms. The library architecture mixes weathered oak, glass conservatory wings, and intricate mechanical details, all rendered with believable scale and clean geometry. In the distance, thin mountain ridges shimmer in pale gold haze. Soft apricot and silver light, crisp reflections, gentle atmospheric perspective, highly detailed textures, cinematic wide composition. On a hanging wayfinding sign near the nearest platform, clearly readable short text: \"OPEN READ\". Premium commercial photography look, natural color grading, sharp focus, refined visual balance.",
  "negativePrompt": "blurry, low detail, warped architecture, duplicated people, unreadable text, extra limbs, oversaturated colors, foggy frame, tilted horizon, cluttered composition, cropped library, distorted reflections, watermark, logo, frame, harsh shadows",
  "width": 1344,
  "height": 768,
  "seed": 21437,
  "steps": 32,
  "providerSettings": {
    "bria": {
      "promptEnhancement": true,
      "enhanceImage": true,
      "medium": "photography",
      "contentModeration": true,
      "ipSignal": true
    }
  }
}
```

**Response**:

```json
{
  "taskType": "imageInference",
  "taskUUID": "461ec00c-f303-4f5c-b9d9-b1242f1c319b",
  "imageUUID": "27676f5b-6a03-41e9-a10c-d4ee596745d1",
  "imageURL": "https://im.runware.ai/image/os/a20d05/ws/2/ii/27676f5b-6a03-41e9-a10c-d4ee596745d1.jpg",
  "seed": 21437,
  "cost": 0.04
}
```

---

### Fogbound Cliffside Lighthouse Library (Text to Image)

![Fogbound Cliffside Lighthouse Library](https://assets.runware.ai/examples/bria-3-2/25229d17-4a7c-47e8-bd25-e9c795d04d80.jpg)

**Request**:

```json
{
  "taskType": "imageInference",
  "taskUUID": "b76c39a2-bf39-4653-975a-8b0ecc87b56b",
  "model": "bria:10@1",
  "positivePrompt": "A windswept lighthouse transformed into a public library on a rugged sea cliff, vast shelves visible through tall arched windows, curling paper maps pinned under brass weights, a spiral stair wrapping the central beacon chamber, flocks of white seabirds circling over rough gray waves, late afternoon fog glowing softly, wild coastal grasses bending in the wind, a hand-painted sign above the door reading 'Tide Archive', intricate stonework, cinematic depth, highly detailed, atmospheric, imaginative, elegant composition",
  "negativePrompt": "low detail, blurry, distorted architecture, duplicate birds, unreadable text, extra buildings, oversaturated colors, flat lighting, people, vehicles, watermark, logo, frame, clutter",
  "width": 1216,
  "height": 832,
  "seed": 39272,
  "steps": 32,
  "providerSettings": {
    "bria": {
      "medium": "art",
      "promptEnhancement": true,
      "enhanceImage": true,
      "contentModeration": true,
      "ipSignal": true
    }
  }
}
```

**Response**:

```json
{
  "taskType": "imageInference",
  "taskUUID": "b76c39a2-bf39-4653-975a-8b0ecc87b56b",
  "imageUUID": "4351528b-d316-4a79-b3b8-74fcea4a70f7",
  "imageURL": "https://im.runware.ai/image/os/a21d05/ws/2/ii/4351528b-d316-4a79-b3b8-74fcea4a70f7.jpg",
  "seed": 39272,
  "cost": 0.04
}
```

---

### Handwritten Bakery Window Display (Text to Image)

![Handwritten Bakery Window Display](https://assets.runware.ai/examples/bria-3-2/a0920f39-2178-458b-b5ba-e14d184091a6.jpg)

**Request**:

```json
{
  "taskType": "imageInference",
  "taskUUID": "0607a202-784c-4ea9-a51d-d85fc6b35d06",
  "model": "bria:10@1",
  "positivePrompt": "A charming street-facing bakery storefront in early morning, warm sunlight catching the glass, a tidy window display with crusty loaves, braided challah, fruit tarts, and small cakes on wooden stands. The main focus is elegant readable handwritten window text that says 'MAPLE & THYME BAKERY' and a smaller line below that says 'Fresh Bread Daily'. Cream-painted trim, potted herbs, striped awning, subtle reflections, inviting small-town atmosphere, realistic photography, natural colors, crisp details, balanced composition, professional commercial imagery.",
  "negativePrompt": "blurry text, unreadable lettering, misspelled words, extra signage, duplicate pastries, people blocking the window, clutter, warped glass, distorted perspective, oversaturated colors, low detail, watermark, logo collage",
  "width": 1216,
  "height": 832,
  "seed": 90438,
  "steps": 32,
  "providerSettings": {
    "bria": {
      "promptEnhancement": true,
      "enhanceImage": true,
      "medium": "photography",
      "contentModeration": true,
      "ipSignal": false
    }
  }
}
```

**Response**:

```json
{
  "taskType": "imageInference",
  "taskUUID": "0607a202-784c-4ea9-a51d-d85fc6b35d06",
  "imageUUID": "64b9d46c-476f-423f-b476-e2aec1d1e85d",
  "imageURL": "https://im.runware.ai/image/os/a13d12/ws/2/ii/64b9d46c-476f-423f-b476-e2aec1d1e85d.jpg",
  "seed": 90438,
  "cost": 0.04
}
```