Generate images from a prompt and send them as message attachments
Generate image variations using the Mutiro image service and send them as message attachments.
Examples:
Generate a single square image and send it to alice
mutiro user message send-image alice "A watercolor city skyline at dawn"
Generate three cinematic frames with a deterministic seed
mutiro user message send-image alice "Cyberpunk alley drenched in neon rain" --count 3 --aspect-ratio "16:9" --seed 42
Reply to an existing message with image results
mutiro user message send-image conv_123 "Prototype moodboard" --reply-to msg_456
Output JSON response for automation
mutiro user message send-image alice "Ocean cliffs at sunset" --json
mutiro user message send-image <username|conversation-id> <prompt> [flags]
Generate a single square image and send it to alice
Generate three cinematic frames with a deterministic seed
Reply to an existing message with image results
Output JSON response for automation
| Flag | Type | Description |
|---|---|---|
| --aspect-ratio | string | Aspect ratio (e.g., 3:2, 16:9) (default "3:2") |
| --caption | string | Caption for generated images (defaults to prompt) |
| --count int | bool | Number of image variations to request (default 1) |
| -h, --help | bool | help for send-image |
| --include-safety | bool | Request safety metadata in the response |
| --json | bool | Output result as JSON |
| --mime-type | string | Preferred output MIME type (e.g., image/png, image/jpeg) (default "image/png") |
| --model | string | Model to use (defaults to server-side configuration) |
| --negative | string | Negative prompt describing what to avoid |
| --reply-to | string | Message ID to reply to |
| --request-id | string | Optional idempotency key for the generation request |
| --seed int | bool | Random seed for deterministic outputs |
| --watermark | bool | Request provider watermark on generated images |
| Flag | Type | Description |
|---|---|---|
| --config | string | config file (default is ./.mutiro.yaml in current directory) |
| --debug | bool | debug mode |
| -v, --verbose | bool | verbose output |