# inference.veo.lite.img2vid.v2

Source: https://docs.prodia.com/job-types/inference-veo-lite-img2vid-v2/

The `inference.veo.lite.img2vid.v2` job animates an input image into a video guided by a text prompt using Veo 3.1 Lite.

```json
{
    "type": "inference.veo.lite.img2vid.v2",
    "config": {
        "prompt": "a red fox trotting through a snowy forest at golden hour",
        "image": "reference.png"
    }
}
```

This job type is also available under its partner alias `inference.partner.veo.lite.img2vid.v2`.

## Schema

```json
{
	"$schema": "https://json-schema.org/draft/2020-12/schema",
	"type": "object",
	"required": [
		"type",
		"config"
	],
	"properties": {
		"type": {
			"type": "string"
		},
		"config": {
			"type": "object",
			"properties": {
				"prompt": {
					"type": "string"
				},
				"image": {
					"type": "string",
					"format": "filename",
					"example": "reference.png"
				}
			}
		}
	}
}
```
