# inference.nano-banana.img2img.v1

Source: https://docs.prodia.com/job-types/inference-nano-banana-img2img-v1/

## Schema

```json
{
	"type": "object",
	"required": [
		"type",
		"config"
	],
	"additionalProperties": false,
	"properties": {
		"type": {
			"type": "string",
			"enum": [
				"inference.nano-banana.img2img.v1"
			]
		},
		"config": {
			"type": "object",
			"additionalProperties": false,
			"required": [
				"prompt"
			],
			"properties": {
				"image": {
					"type": "string",
					"format": "filename",
					"example": "input.png",
					"description": "The input image that will be edited."
				},
				"prompt": {
					"type": "string",
					"minLength": 0,
					"maxLength": 2500,
					"examples": [
						"puppies in a cloud, 4k"
					],
					"description": "A description of the desired output."
				},
				"include_messages": {
					"type": "boolean",
					"default": false,
					"description": "Enable to include the model's messages in the output as message.txt files."
				}
			}
		}
	}
}
```
