Seedream 5.0 Pro
Seedream 5.0 Pro is ByteDance's flagship text-to-image model, delivering maximum-fidelity AI art with advanced visual reasoning and precise typography. This skill allows you to generate images from text and edit existing images using natural language commands.
Prerequisites
- MUAPI_API_KEY: You must have an API key from muapi.ai. Set it as an environment variable.
Usage Guide
You can use Seedream 5.0 Pro to create images in various aspect ratios (1:1, 16:9, 9:16, 4:3, 3:4) and resolutions (1K, 2K, 4K).
Text-to-Image
Generate an image from a descriptive text prompt.
python3.11 skills/seedream-5-pro/seedream_cli.py t2i --prompt "A cinematic portrait of a cyberpunk samurai in a neon-lit Tokyo alley" --size 4K --wait
Image Editing
Edit an existing image using natural language.
python3.11 skills/seedream-5-pro/seedream_cli.py edit --images "https://example.com/photo.jpg" --prompt "Change the background to a cyberpunk cityscape at night" --wait
Base (non-Pro) & Legacy Versions
Generate with the base Seedream 5.0 model or earlier versions for version-pinned pipelines.
python3.11 skills/seedream-5-pro/seedream_cli.py t2i-v5 --prompt "A quick draft of a mountain landscape at dawn" --wait
python3.11 skills/seedream-5-pro/seedream_cli.py t2i-v4-5 --prompt "A surreal sci-fi cityscape floating above the clouds" --wait
python3.11 skills/seedream-5-pro/seedream_cli.py t2i-v4 --prompt "A fantasy castle on a floating island" --wait
python3.11 skills/seedream-5-pro/seedream_cli.py t2i-v3 --prompt "An anime-style portrait of a warrior princess" --wait
Tips for Best Results
- Be Descriptive: Detailed prompts result in better image quality and more accurate scene construction.
- Wait for Completion: Use the
--wait flag to receive the final image URL directly. Without it, you will receive a request_id which you can check later using the status command.
- Aspect Ratios: Use
1:1 for square, 16:9/9:16 for widescreen/vertical content.
- Resolution: Use
--size 4K for maximum fidelity, --size 1K for fast drafts.
- Reproducibility: Pass
--seed to get deterministic, repeatable generations.
Commands Reference
| Command |
Arguments |
Description |
t2i |
--prompt, --aspect_ratio, --size, --num_images, --seed, --wait |
Text to Image (Seedream 5.0 Pro) |
edit |
--images, --prompt, --aspect_ratio, --size, --seed, --wait |
Image Editing (Seedream 5.0 Pro Edit) |
t2i-v5 |
--prompt, --aspect_ratio, --size, --num_images, --seed, --wait |
Text to Image (Seedream 5.0 base) |
edit-v5 |
--images, --prompt, --aspect_ratio, --size, --seed, --wait |
Image Editing (Seedream 5.0 base Edit) |
t2i-v4-5 |
--prompt, --aspect_ratio, --size, --num_images, --seed, --wait |
Text to Image (Seedream 4.5) |
edit-v4-5 |
--images, --prompt, --aspect_ratio, --size, --seed, --wait |
Image Editing (Seedream 4.5) |
t2i-v4 |
--prompt, --aspect_ratio, --size, --num_images, --seed, --wait |
Text to Image (Seedream v4) |
edit-v4 |
--images, --prompt, --aspect_ratio, --size, --seed, --wait |
Image Editing (Seedream v4) |
t2i-v3 |
--prompt, --aspect_ratio, --size, --num_images, --seed, --wait |
Text to Image (Seedream v3) |
status |
--request_id |
Check Task Status |
1---2name: seedream-5-pro3description: Generate 4K AI images from text prompts and edit existing images using natural language with Seedream 5.0 Pro (by ByteDance).4---56# Seedream 5.0 Pro78Seedream 5.0 Pro is ByteDance's flagship text-to-image model, delivering maximum-fidelity AI art with advanced visual reasoning and precise typography. This skill allows you to generate images from text and edit existing images using natural language commands.910## Prerequisites1112- **MUAPI_API_KEY**: You must have an API key from [muapi.ai](https://muapi.ai). Set it as an environment variable.1314## Usage Guide1516You can use Seedream 5.0 Pro to create images in various aspect ratios (1:1, 16:9, 9:16, 4:3, 3:4) and resolutions (1K, 2K, 4K).1718### Text-to-Image19Generate an image from a descriptive text prompt.20```bash21python3.11 skills/seedream-5-pro/seedream_cli.py t2i --prompt "A cinematic portrait of a cyberpunk samurai in a neon-lit Tokyo alley" --size 4K --wait22```2324### Image Editing25Edit an existing image using natural language.26```bash27python3.11 skills/seedream-5-pro/seedream_cli.py edit --images "https://example.com/photo.jpg" --prompt "Change the background to a cyberpunk cityscape at night" --wait28```2930### Base (non-Pro) & Legacy Versions31Generate with the base Seedream 5.0 model or earlier versions for version-pinned pipelines.32```bash33python3.11 skills/seedream-5-pro/seedream_cli.py t2i-v5 --prompt "A quick draft of a mountain landscape at dawn" --wait34python3.11 skills/seedream-5-pro/seedream_cli.py t2i-v4-5 --prompt "A surreal sci-fi cityscape floating above the clouds" --wait35python3.11 skills/seedream-5-pro/seedream_cli.py t2i-v4 --prompt "A fantasy castle on a floating island" --wait36python3.11 skills/seedream-5-pro/seedream_cli.py t2i-v3 --prompt "An anime-style portrait of a warrior princess" --wait37```3839## Tips for Best Results4041- **Be Descriptive**: Detailed prompts result in better image quality and more accurate scene construction.42- **Wait for Completion**: Use the `--wait` flag to receive the final image URL directly. Without it, you will receive a `request_id` which you can check later using the `status` command.43- **Aspect Ratios**: Use `1:1` for square, `16:9`/`9:16` for widescreen/vertical content.44- **Resolution**: Use `--size 4K` for maximum fidelity, `--size 1K` for fast drafts.45- **Reproducibility**: Pass `--seed` to get deterministic, repeatable generations.4647## Commands Reference4849| Command | Arguments | Description |50| :--- | :--- | :--- |51| `t2i` | `--prompt`, `--aspect_ratio`, `--size`, `--num_images`, `--seed`, `--wait` | Text to Image (Seedream 5.0 Pro) |52| `edit` | `--images`, `--prompt`, `--aspect_ratio`, `--size`, `--seed`, `--wait` | Image Editing (Seedream 5.0 Pro Edit) |53| `t2i-v5` | `--prompt`, `--aspect_ratio`, `--size`, `--num_images`, `--seed`, `--wait` | Text to Image (Seedream 5.0 base) |54| `edit-v5` | `--images`, `--prompt`, `--aspect_ratio`, `--size`, `--seed`, `--wait` | Image Editing (Seedream 5.0 base Edit) |55| `t2i-v4-5` | `--prompt`, `--aspect_ratio`, `--size`, `--num_images`, `--seed`, `--wait` | Text to Image (Seedream 4.5) |56| `edit-v4-5` | `--images`, `--prompt`, `--aspect_ratio`, `--size`, `--seed`, `--wait` | Image Editing (Seedream 4.5) |57| `t2i-v4` | `--prompt`, `--aspect_ratio`, `--size`, `--num_images`, `--seed`, `--wait` | Text to Image (Seedream v4) |58| `edit-v4` | `--images`, `--prompt`, `--aspect_ratio`, `--size`, `--seed`, `--wait` | Image Editing (Seedream v4) |59| `t2i-v3` | `--prompt`, `--aspect_ratio`, `--size`, `--num_images`, `--seed`, `--wait` | Text to Image (Seedream v3) |60| `status`| `--request_id` | Check Task Status |