Generates an image from a text prompt using an AI image model such as DALL-E 3. The node returns a URL pointing to the generated image, along with the final prompt that was used. Wire this into any workflow that needs to create visual content dynamically.
imageThe Image Generation node connects to an AI image model via your configured AI Provider and generates an image based on a text description you supply. Because the prompt field supports variable references, you can build the description dynamically from earlier workflow steps โ for example, asking an Agent node to write a detailed image prompt, then passing that prompt to this node.
Typical use cases include:
| Field | Status | Description |
|---|---|---|
| Provider | Required | Select an AI Provider that supports image generation. The provider must be configured with a model capable of generating images. Not all text-generation providers support image generation โ check your provider's capabilities. |
| Prompt | Required | A text description of the image to generate. Supports {{ variable }} references so you can build the prompt dynamically from earlier steps. Be as specific as possible โ include subject, style, mood, colour palette, and composition for best results. |
| Size | Optional | The dimensions of the generated image. Options: 1024x1024 (square), 1024x1792 (portrait / tall), 1792x1024 (landscape / wide). Default is 1024x1024. |
| Quality | Optional | standard generates faster at lower cost. hd produces higher detail and finer textures at higher cost. Currently only supported by DALL-E 3. Default is standard. |
| Style | Optional | vivid produces hyper-real, dramatic images with bold colours. natural produces more realistic, subdued images. Currently only supported by DALL-E 3. Default is vivid. |
| Field | Type | Description |
|---|---|---|
url | string | The URL of the generated image. This URL is temporary โ save the image to permanent storage if you need to keep it. |
revised_prompt | string | The prompt that was actually used by the model after any automatic revisions. The model may rephrase or expand your original prompt to improve image quality. Review this field if the output does not match your expectations. |
size | string | The dimensions of the image that was generated (e.g. 1024x1024). |
headline and topic.
{{ write_prompt.output.text }}. Set Size to 1792x1024 (landscape, ideal for social media headers). Set Quality to hd.
{{ generate_image.output.url }}) to download the image bytes, then pass them to an Amazon S3 or Local File node for permanent storage. Reference the saved file path in subsequent steps.
revised_prompt for debugging. If the generated image does not look right, check revised_prompt to see how the model interpreted your input. The model sometimes modifies prompts in ways that change the output.