letzai_create_image
Generate custom images using AI by providing a text prompt. Adjust settings like creativity, quality, mode, and dimensions to create photorealistic or artistic visuals.
Instructions
Create an image using the LetzAI public api
Input Schema
Name | Required | Description | Default |
---|---|---|---|
creativity | No | Defines how strictly the prompt should be respected. Higher Creativity makes the images more artificial. Lower makes it more photorealistic. Min: 1, Default: 2, Max: 5 | |
hasWatermark | No | Defines whether to set a watermark or not. Default is true | |
height | No | Height of the image should be between 520 and 2160 max pixels. Default is 1600. | |
mode | No | Select one of the different modes that offer different generation settings. Allowed values: default, sigma, turbo. Default is slow but high quality. Sigma is faster and great for close ups. Turbo is fastest, but lower quality. | turbo |
prompt | Yes | Image prompt to generate a new image. Can also include @tag to generate an image using a model from the LetzAi Platform | |
quality | No | Defines how many steps the generation should take. Higher is slower, but generally better quality. Min: 1, Default: 2, Max: 5 | |
systemVersion | No | Allowed values: 2, 3. UseLetzAI V2, or V3 (newest). | |
width | No | Width of the image should be between 520 and 2160 max pixels. Default is 1600. |
Input Schema (JSON Schema)
{
"properties": {
"creativity": {
"default": 2,
"description": "Defines how strictly the prompt should be respected. Higher Creativity makes the images more artificial. Lower makes it more photorealistic. Min: 1, Default: 2, Max: 5",
"type": "number"
},
"hasWatermark": {
"default": true,
"description": "Defines whether to set a watermark or not. Default is true",
"type": "boolean"
},
"height": {
"default": 1600,
"description": "Height of the image should be between 520 and 2160 max pixels. Default is 1600.",
"type": "number"
},
"mode": {
"default": "turbo",
"description": "Select one of the different modes that offer different generation settings. Allowed values: default, sigma, turbo. Default is slow but high quality. Sigma is faster and great for close ups. Turbo is fastest, but lower quality.",
"enum": [
"default",
"turbo",
"sigma"
],
"type": "string"
},
"prompt": {
"description": "Image prompt to generate a new image. Can also include @tag to generate an image using a model from the LetzAi Platform",
"type": "string"
},
"quality": {
"default": 2,
"description": "Defines how many steps the generation should take. Higher is slower, but generally better quality. Min: 1, Default: 2, Max: 5",
"type": "number"
},
"systemVersion": {
"default": 3,
"description": "Allowed values: 2, 3. UseLetzAI V2, or V3 (newest).",
"type": "number"
},
"width": {
"default": 1600,
"description": "Width of the image should be between 520 and 2160 max pixels. Default is 1600.",
"type": "number"
}
},
"required": [
"prompt"
],
"type": "object"
}