Install
openclaw skills install dola-seedreamGenerate high-quality images from text prompts using BytePlus Seedream models. Supports multiple artistic styles and aspect ratios. Use this skill when users want to create images from text descriptions, generate artwork in various styles, create visual content for creative projects, or need AI-powered image generation capabilities.
openclaw skills install dola-seedreamGenerate high-quality images from text prompts using BytePlus Seedream models. This skill provides access to three powerful Seedream model versions (4.0, 4.5, and 5.0), each offering unique capabilities for different use cases.
Use this skill when:
| Version | Model Name | Release Date | Recommendation | Best For |
|---|---|---|---|---|
| 4.0 | seedream-4-0-250828 | August 2025 | ⭐⭐⭐ | Daily use, supports 1K/2K/4K and Fast mode |
| 4.5 | seedream-4-5-251128 | November 2025 | ⭐⭐⭐⭐ | Detail-oriented, supports 2K/4K |
| 5.0-lite | seedream-5-0-260128 | 2026 | ⭐⭐⭐⭐⭐ | Highest quality, supports 2K/3K and PNG output |
standard and fast (for 4.0) modes# Required: API Key configuration (Get from BytePlus Console)
export ARK_DOLA_API_KEY="your-api-key-here"
python scripts/seedream_image_generate.py -p "A cute kitten playing in a garden" --version 5.0
| Option | Shortcut | Description | Default |
|---|---|---|---|
--prompt | -p | Image description text (required) | - |
--version | -v | Version selection: 4.0, 4.5, 5.0-lite | 5.0-lite |
--size | -s | Image dimensions (1K/2K/3K/4K or WxH) | 2K |
--image | -i | Single reference image URL | - |
--images | - | Multiple reference image URLs (space separated) | - |
--group | -g | Enable batch image generation | false |
--max-images | - | Maximum images for batch generation | 15 |
--output-format | - | Output format: png or jpeg (5.0-lite only) | jpeg |
--response-format | - | Response format: url or b64_json | url |
--prompt-mode | - | Prompt optimization mode: standard or fast | standard |
--timeout | -t | Timeout in seconds | 1200 |
--no-watermark | - | Disable watermark | false |
--stream | - | Enable server-side streaming | false |
import asyncio
from scripts.seedream_image_generate import seedream_generate
async def main():
# Generate image using 5.0 version
result = await seedream_generate([
{
"prompt": "A futuristic city landscape",
"size": "2048x2048",
"output_format": "png"
}
], version="5.0")
print(result)
if __name__ == "__main__":
asyncio.run(main())
When in doubt, use 5.0! ⭐
[Subject Description] + [Style/Art Movement] + [Lighting/Atmosphere] + [Quality/Resolution]
[Subject Description], [Creative Style/Art Movement], [Unique Perspective/Composition], [Special Lighting/Atmosphere], [Emphasizing 5.0 creative expression]
| Parameter | Seedream 4.0 | Seedream 4.5 | Seedream 5.0 | Description |
|---|---|---|---|---|
| model | ✅ | ✅ | ✅ | Model name |
| prompt | ✅ | ✅ | ✅ | Prompt (required) |
| image | ✅ | ✅ | ✅ | Reference image(s) |
| size | ✅ | ✅ | ✅ | Image dimensions |
| sequential_image_generation | ✅ | ✅ | ✅ | Batch generation control |
| sequential_image_generation_options | ✅ | ✅ | ✅ | Batch generation config |
| response_format | ✅ | ✅ | ✅ | Response format (url/b64_json) |
| watermark | ✅ | ✅ | ✅ | Watermark (true/false) |
| stream | ✅ | ✅ | ✅ | Streaming output |
| optimize_prompt_options | ✅ | ✅ | ✅ | Prompt optimization config |
| tools | ❌ | ❌ | ✅ | Tool configuration (5.0 only) |
| output_format | ❌ | ❌ | ✅ | Output format (png/jpeg, 5.0 only) |
A: 4.0 is for quick daily use, 4.5 offers better details for complex scenes, and 5.0 provides the highest quality with unique tools support.
A: URLs are valid for 24 hours. Please download and save your images promptly.
A: Common formats like JPG and PNG are supported, provided via URL or Base64.
A: Currently, only one version per call. For comparisons, make separate calls for different versions.
This skill is licensed under the Apache License 2.0. See the LICENSE file for details.
Please comply with BytePlus's terms of service and relevant laws and regulations when using this skill.