---
title: VEED Fabric 1.0 | Runware Docs
url: https://runware.ai/docs/models/veed-fabric-1-0-hosted
description: Runware-hosted talking-video generation from image and audio inputs
---
# VEED Fabric 1.0

This entry is Runware's hosted deployment of VEED Fabric 1.0. It generates short speaking videos by animating a static image with synchronized speech and expressive motion, aligning lip movements, facial expressions, head gestures, and body motion to an audio input while preserving the appearance of the source image. It exists separately from the TPI-hosted VEED Fabric 1.0 model because the hosted deployment has a different API surface.

- **ID**: `veed:fabric@1.0-hosted`
- **Status**: live
- **Creator**: VEED
- **Release Date**: September 26, 2025
- **Capabilities**: Image to Video, Audio to Video, Checkpoint

## Request Parameters

**API Options**

Platform-level options for task execution and delivery.

### [taskType](https://runware.ai/docs/models/veed-fabric-1-0-hosted#request-tasktype)

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

Identifier for the type of task being performed

### [taskUUID](https://runware.ai/docs/models/veed-fabric-1-0-hosted#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/veed-fabric-1-0-hosted#request-outputtype)

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

Video output type.

**Allowed values**: `URL`

### [outputFormat](https://runware.ai/docs/models/veed-fabric-1-0-hosted#request-outputformat)

- **Type**: `string`
- **Default**: `MP4`

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

- \`MP4\`: Widely supported video container (H.264), recommended for general use.
- \`WEBM\`: Optimized for web delivery.
- \`MOV\`: QuickTime format, common in professional workflows (Apple ecosystem).

**Allowed values**: `MP4` `WEBM` `MOV`

### [outputQuality](https://runware.ai/docs/models/veed-fabric-1-0-hosted#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/veed-fabric-1-0-hosted#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/veed-fabric-1-0-hosted#request-deliverymethod)

- **Type**: `string`
- **Default**: `async`

Determines how the API delivers task results.

**Allowed values**:

- `async` Returns an immediate acknowledgment with the task UUID. Poll for results using getResponse. Required for long-running tasks like video generation.

**Learn more** (1 resource):

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

### [uploadEndpoint](https://runware.ai/docs/models/veed-fabric-1-0-hosted#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/veed-fabric-1-0-hosted#request-safety)

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

Content safety checking configuration for video generation.

#### [checkContent](https://runware.ai/docs/models/veed-fabric-1-0-hosted#request-safety-checkcontent)

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

Enable or disable content safety checking.

#### [mode](https://runware.ai/docs/models/veed-fabric-1-0-hosted#request-safety-mode)

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

Safety checking mode for video generation.

**Allowed values**:

- `none` Disables checking.
- `fast` Checks key frames.
- `full` Checks all frames.

### [ttl](https://runware.ai/docs/models/veed-fabric-1-0-hosted#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/veed-fabric-1-0-hosted#request-includecost)

- **Type**: `boolean`

Include task cost in the response.

### [numberResults](https://runware.ai/docs/models/veed-fabric-1-0-hosted#request-numberresults)

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

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

### [acceleration](https://runware.ai/docs/models/veed-fabric-1-0-hosted#request-acceleration)

- **Type**: `string`
- **Default**: `medium`

Optimization level.

**Allowed values**: `none` `low` `medium` `high`

### [acceleratorOptions](https://runware.ai/docs/models/veed-fabric-1-0-hosted#request-acceleratoroptions)

- **Path**: `acceleratorOptions.cacheEndStep`
- **Type**: `object (7 properties)`

Advanced caching mechanisms to speed up generation.

#### [cacheEndStep](https://runware.ai/docs/models/veed-fabric-1-0-hosted#request-acceleratoroptions-cacheendstep)

- **Path**: `acceleratorOptions.cacheEndStep`
- **Type**: `integer`
- **Min**: `1`

Absolute step number to end caching. Must be greater than `cacheStartStep` and less than or equal to `steps`.

#### [cacheEndStepPercentage](https://runware.ai/docs/models/veed-fabric-1-0-hosted#request-acceleratoroptions-cacheendsteppercentage)

- **Path**: `acceleratorOptions.cacheEndStepPercentage`
- **Type**: `integer`
- **Min**: `1`
- **Max**: `100`

Percentage of steps to end caching. Alternative to `cacheEndStep`. Must be greater than `cacheStartStepPercentage`.

#### [cacheMaxConsecutiveSteps](https://runware.ai/docs/models/veed-fabric-1-0-hosted#request-acceleratoroptions-cachemaxconsecutivesteps)

- **Path**: `acceleratorOptions.cacheMaxConsecutiveSteps`
- **Type**: `integer`
- **Min**: `1`
- **Max**: `5`
- **Default**: `3`

Limits the maximum number of consecutive steps that can use cached computations before forcing a fresh computation.

#### [cacheStartStep](https://runware.ai/docs/models/veed-fabric-1-0-hosted#request-acceleratoroptions-cachestartstep)

- **Path**: `acceleratorOptions.cacheStartStep`
- **Type**: `integer`
- **Min**: `0`

Absolute step number to start caching. Must be less than `cacheEndStep`.

#### [cacheStartStepPercentage](https://runware.ai/docs/models/veed-fabric-1-0-hosted#request-acceleratoroptions-cachestartsteppercentage)

- **Path**: `acceleratorOptions.cacheStartStepPercentage`
- **Type**: `integer`
- **Min**: `0`
- **Max**: `99`

Percentage of steps to start caching. Alternative to `cacheStartStep`. Must be less than `cacheEndStepPercentage`.

#### [fbCache](https://runware.ai/docs/models/veed-fabric-1-0-hosted#request-acceleratoroptions-fbcache)

- **Path**: `acceleratorOptions.fbCache`
- **Type**: `boolean`

First Block Cache (FBCache) acceleration. Reuses feature block computations across steps.

#### [fbCacheThreshold](https://runware.ai/docs/models/veed-fabric-1-0-hosted#request-acceleratoroptions-fbcachethreshold)

- **Path**: `acceleratorOptions.fbCacheThreshold`
- **Type**: `float`
- **Min**: `0`
- **Max**: `1`
- **Step**: `0.01`
- **Default**: `0.25`

Controls the sensitivity threshold for determining when to reuse cached computations. Lower values reuse more aggressively.

**Inputs**

Input resources for the task (images, audio, etc). These must be nested inside the \`inputs\` object.

### [image](https://runware.ai/docs/models/veed-fabric-1-0-hosted#request-inputs-image)

- **Path**: `inputs.image`
- **Type**: `string`
- **Required**: true

Image input (UUID, URL, Data URI, or Base64).

### [audio](https://runware.ai/docs/models/veed-fabric-1-0-hosted#request-inputs-audio)

- **Path**: `inputs.audio`
- **Type**: `string`
- **Required**: true

Audio input (UUID or URL).

**Core Parameters**

Primary parameters that define the task output.

### [model](https://runware.ai/docs/models/veed-fabric-1-0-hosted#request-model)

- **Type**: `string`
- **Required**: true
- **Value**: `veed:fabric@1.0-hosted`

Identifier of the model to use for generation.

**Learn more** (3 resources):

- [Text To Image: Model Selection](https://runware.ai/docs/learn/text-to-image#model-selection) (learn)
- [Image Inpainting: Model Specialized Inpainting Models](https://runware.ai/docs/learn/image-inpainting#model-specialized-inpainting-models) (learn)
- [Image Outpainting: Other Critical Parameters](https://runware.ai/docs/learn/image-outpainting#other-critical-parameters) (learn)

### [resolution](https://runware.ai/docs/models/veed-fabric-1-0-hosted#request-resolution)

- **Type**: `string`
- **Default**: `720p`

Resolution preset for the output. When used with input media, automatically matches the aspect ratio from the input.

**Allowed values**: `480p` `720p`

### [seed](https://runware.ai/docs/models/veed-fabric-1-0-hosted#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):

- [Seed](https://runware.ai/docs/learn/seed) (learn)

**Settings**

Technical parameters to fine-tune the inference process. These must be nested inside the \`settings\` object.

### [audioCFGScale](https://runware.ai/docs/models/veed-fabric-1-0-hosted#request-settings-audiocfgscale)

- **Path**: `settings.audioCFGScale`
- **Type**: `float`
- **Min**: `0`
- **Max**: `20`
- **Step**: `0.01`
- **Default**: `3.05`

Classifier-free guidance scale for audio synchronization. Higher values produce stronger audio-video alignment.

### [colorCorrection](https://runware.ai/docs/models/veed-fabric-1-0-hosted#request-settings-colorcorrection)

- **Path**: `settings.colorCorrection`
- **Type**: `boolean`
- **Default**: `false`

Apply color correction to the generated video. Helps maintain consistent colors across video segments.

## Response Parameters

### [taskType](https://runware.ai/docs/models/veed-fabric-1-0-hosted#response-tasktype)

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

Identifier for the type of task this response belongs to.

### [taskUUID](https://runware.ai/docs/models/veed-fabric-1-0-hosted#response-taskuuid)

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

UUID v4 identifier echoed from the original request, used to match async responses to their tasks.

### [videoUUID](https://runware.ai/docs/models/veed-fabric-1-0-hosted#response-videouuid)

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

UUID of the output video.

### [videoURL](https://runware.ai/docs/models/veed-fabric-1-0-hosted#response-videourl)

- **Type**: `string`
- **Format**: `uri`

URL of the output video.

### [videoBase64Data](https://runware.ai/docs/models/veed-fabric-1-0-hosted#response-videobase64data)

- **Type**: `string`

Base64-encoded video data.

### [videoDataURI](https://runware.ai/docs/models/veed-fabric-1-0-hosted#response-videodatauri)

- **Type**: `string`
- **Format**: `uri`

Data URI of the output video.

### [seed](https://runware.ai/docs/models/veed-fabric-1-0-hosted#response-seed)

- **Type**: `integer`

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

### [NSFWContent](https://runware.ai/docs/models/veed-fabric-1-0-hosted#response-nsfwcontent)

- **Type**: `boolean`

Flag indicating if NSFW content was detected.

### [cost](https://runware.ai/docs/models/veed-fabric-1-0-hosted#response-cost)

- **Type**: `float`

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