Skip to content

inference.seededit.img2img.v1

Schema

{
"type": "object",
"required": [
"type",
"config"
],
"additionalProperties": false,
"properties": {
"type": {
"type": "string",
"enum": [
"inference.seededit.img2img.v1"
]
},
"config": {
"type": "object",
"required": [
"prompt"
],
"additionalProperties": false,
"properties": {
"image": {
"type": "string",
"format": "filename",
"example": "image.png",
"description": "Set image to edit."
},
"prompt": {
"type": "string",
"minLength": 3,
"maxLength": 4096,
"examples": [
"puppies in a cloud, 4k"
]
},
"guidance_scale": {
"type": "number",
"default": 5.5,
"minimum": 1,
"maximum": 10
},
"watermark": {
"type": "boolean",
"default": false,
"description": "When set to true a watermark is added indicating the output is AI generated."
},
"seed": {
"type": "integer",
"minimum": 0,
"maximum": 2147483647,
"description": "A randomness initializer for image reproducability."
}
}
}
}
}