# inference.gemini-3-pro.txt2img.v1

Source: https://docs.prodia.com/job-types/inference-gemini-3-pro-txt2img-v1/

## Schema

```json
{
	"type": "object",
	"required": [
		"type",
		"config"
	],
	"additionalProperties": false,
	"properties": {
		"type": {
			"type": "string",
			"enum": [
				"inference.gemini-3-pro.txt2img.v1"
			]
		},
		"config": {
			"type": "object",
			"additionalProperties": false,
			"required": [
				"prompt"
			],
			"properties": {
				"prompt": {
					"type": "string",
					"minLength": 1,
					"maxLength": 5000,
					"examples": [
						"A hyper-realistic infographic of a gourmet cheeseburger"
					],
					"description": "A description of the desired output image."
				},
				"aspect_ratio": {
					"type": "string",
					"default": "1:1",
					"enum": [
						"1:1",
						"2:3",
						"3:2",
						"3:4",
						"4:3",
						"4:5",
						"5:4",
						"9:16",
						"16:9",
						"21:9"
					],
					"description": "Aspect ratio of output image."
				},
				"resolution": {
					"type": "string",
					"default": "1K",
					"enum": [
						"1K",
						"2K",
						"4K"
					],
					"description": "Resolution/image size of output. Use uppercase K."
				},
				"include_messages": {
					"type": "boolean",
					"default": false,
					"description": "Enable to include the model's messages in the output as message.txt files."
				}
			}
		}
	}
}
```
