Make
adGeneration__generateImage
[write] Queue an image render from a VERBATIM prompt. The prompt goes to the image model exactly as written: no creative-director rewrite, no brand brief, no added headline, subline or CTA, and no project logo. The image contains only what the prompt stipulates. Use this when the caller wants only specific stipulated text, forbids text/logos/CTAs, or wants raw scene, product, or photography imagery rather than a finished ad; use adGeneration.create for finished ads. Required: projectId (credit scoping only, nothing from it enters the prompt) and prompt. Optional: aspectRatio, quality (low/high/ultra), referenceImageUrls and inputImageId for image-to-image. Costs the same credits as adGeneration.create. Returns a generation ID. Poll adGeneration.getById until status is COMPLETED.
Remote (network-hosted)
Other tools also called adGeneration__generateImage?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"prompt": {
"type": "string",
"minLength": 1
},
"quality": {
"enum": [
"low",
"high",
"ultra"
],
"type": "string",
"default": "low"
},
"projectId": {
"type": "string"
},
"aspectRatio": {
"enum": [
"1:1",
"4:5",
"9:16",
"16:9"
],
"type": "string",
"default": "1:1"
},
"inputImageId": {
"type": "string"
},
"referenceImageUrls": {
"type": "array",
"items": {
"type": "string",
"format": "uri"
},
"maxItems": 4
}
}
}