Submit Image Generation Task
seedream_submitSubmit image generation tasks instantly, avoiding timeout issues. Generate from text, edit with reference images, or blend multiple images, with results appearing in the web app.
Instructions
Submit an image generation task. Returns immediately - images will appear in the Web App.
USE THIS TOOL ON CLAUDE.AI - The regular seedream_generate tool times out on Claude.ai. This tool returns immediately after submitting the task.
After submitting: View your generated images at https://seedream-gallery.firebaseapp.com
Args:
prompt (string, required): Description of the image to generate
mode (string): 'text' (default), 'image' (editing with 1 ref image), or 'multi' (blending 2+ images)
size (string): '2K' (default), '4K', '4K-9:16' (2304x4096), or aspect ratios: '1:1', '4:3', '3:4', '16:9', '9:16', '3:2', '2:3', '21:9'
count (number): Number of images to generate (1-15, default: 4)
strength (number): Reference strength 0-1 for image/multi modes (default: 0.7)
images (string[]): Reference image URLs for 'image' or 'multi' modes
Examples:
Text mode: { prompt: "A sunset over mountains", mode: "text" }
Image mode: { prompt: "Make this photo look like an oil painting", mode: "image", images: ["https://...jpg"] }
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| mode | No | Generation mode: 'text' for text-to-image, 'image' for editing (requires images), 'multi' for blending (requires 2+ images) | text |
| size | No | Output image size | 2K |
| count | No | Number of images to generate (1-15) | |
| images | No | Reference image URLs for 'image' mode (1 image) or 'multi' mode (2-14 images). Required when mode is not 'text'. | |
| prompt | Yes | Text description of the image to generate | |
| strength | No | Reference strength for image/multi modes (0-1, default 0.7) |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| status | Yes | Task status: 'submitted' on success, 'error' on failure | |
| message | Yes | Confirmation message or error description | |
| success | Yes | Whether the task was submitted successfully | |
| entry_id | Yes | Entry ID for internal tracking |