Skip to content
AI & Agents
Skill

/byted-seedream-image-generate

Generate high-quality images from text prompts using Volcano Engine 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

From plugin
agentkit-samples
417156 skills
Install
$ npx -y skills add bytedance/agentkit-samples --skill byted-seedream-image-generate --agent claude-code

How it fires

How this skill gets triggered: by you, by Claude, or both.

  • Fires itselfAuto-invocation. Claude auto-loads it when your prompt matches the work.Auto-invocation is when the right skill fires by itself at the right moment, driven by a FLOW.md router and a hook, instead of you invoking it by name. It is the difference between a skill being installed and a skill actually getting used.Read the full definition →
  • You can call itInvoke it directly when you want it.
  • Slash command/byted-seedream-image-generate

Context preview

The summary Claude sees to decide when to auto-load this skill.

Generate high-quality images from text prompts using Volcano Engine 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

SKILL.md

byted-seedream-image-generate.SKILL.md
name: byted-seedream-image-generate
description: Generate high-quality images from text prompts using Volcano Engine 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.
license: Apache-2.0
tags: ["image-generation", "seedream", "volcengine", "ai-art", "text-to-image", "image-to-image"]
version: 1.0.0

byted-seedream-image-generate

Description

Generate high-quality images from text prompts using Volcano Engine Seedream models. This skill provides access to three powerful Seedream model versions (4.0, 4.5, and 5.0-lite), each offering unique capabilities for different use cases.

When to Use This Skill

Use this skill when:

  • Users want to create images from text descriptions
  • Users need to generate artwork in various artistic styles
  • Users want to create visual content for creative projects
  • Users need AI-powered image generation capabilities
  • Users want to convert reference images to different styles
  • Users need to generate multiple images in batch
  • Users require high-quality, professional-looking images

Model Versions

| Version | Model Name | Release Date | Recommendation | Best For | |---------|------------|--------------|----------------|----------| | 4.0 | doubao-seedream-4-0-250828 | August 2025 | ⭐⭐⭐ | Daily use, quick generation | | 4.5 | doubao-seedream-4-5-251128 | November 2025 | ⭐⭐⭐⭐ | Detail-oriented work, complex scenes | | 5.0 | doubao-seedream-5-0-260128 | 2026 | ⭐⭐⭐⭐⭐ | Highest quality, best creativity, tools support |

Features

  • **Text-to-Image**: Generate images from detailed text descriptions
  • **Image-to-Image**: Transform reference images into different styles
  • **Batch Generation**: Create multiple images in a single request
  • **Multiple Versions**: Choose from 4.0, 4.5, or 5.0-lite models
  • **Watermark Control**: Option to disable watermarks
  • **Custom Sizes**: Support for various image dimensions
  • **Output Formats**: PNG and JPEG formats (5.0-lite only)
  • **Web Search Tools**: Internet search integration (5.0-lite only)

Installation & Setup

Prerequisites

# Required: API Key configuration
export MODEL_IMAGE_API_KEY="your-api-key-here"
# or
export MODEL_AGENT_API_KEY="your-api-key-here"
# or
export ARK_API_KEY="your-api-key-here"

# Optional: API Base URL (default already configured)
export MODEL_IMAGE_API_BASE="https://ark.cn-beijing.volces.com/api/v3"
# or
export ARK_BASE_URL="https://ark.cn-beijing.volces.com/api/v3"

The script will prioritize: 1. Environment variables (`ARK_API_KEY`, `MODEL_IMAGE_API_KEY`, `MODEL_AGENT_API_KEY`) 2. Environment variables (`ARK_BASE_URL`, `MODEL_IMAGE_API_BASE`) 3. Default values

Usage

Basic Usage (5.0-lite version recommended)

cd scripts
python seedream_image_generate.py -p "A cute kitten playing in a garden"

Specify Version

# Use 4.0 version
python seedream_image_generate.py -p "A cute kitten" --version 4.0

# Use 4.5 version
python seedream_image_generate.py -p "A cute kitten" --version 4.5

# Use 5.0-lite version (recommended)
python seedream_image_generate.py -p "A cute kitten" --version 5.0

Advanced Options

# Custom size without watermark
python seedream_image_generate.py -p "Beautiful sunset" -s 2048x2048 --no-watermark --version 5.0

# Batch generation
python seedream_image_generate.py -p "Generate 3 cute dog pictures" -g --max-images 3 --version 4.5

# Image-to-image
python seedream_image_generate.py -p "Convert this image to anime style" -i "https://example.com/image.jpg" --version 5.0

# Web search tool (5.0-lite only)
python seedream_image_generate.py -p "Latest 2026 smartphone" --web-search --version 5.0

# Custom output format (5.0-lite only)
python seedream_image_generate.py -p "A beautiful landscape" --output-format png --version 5.0

# List all supported versions
python seedream_image_generate.py --list-versions

Command Line Options

| Option | Shortcut | Description | Default | |--------|----------|-------------|---------| | `--prompt` | `-p` | Image description text (required) | - | | `--version` | `-v` | Version selection: `4.0`, `4.5`, `5.0` | `5.0` | | `--size` | `-s` | Image dimensions | `2048x2048` | | `--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 only) | `jpeg` | | `--response-format` | - | Response format: `url` or `b64_json` | `url` | | `--stream` | - | Enable streaming output | `false` | | `--web-search` | - | Enable web search tool (5.0 only) | `false` | | `--optimize-prompt-mode` | - | Prompt optimization mode: `standard` or `fast` | - | | `--timeout` | `-t` | Timeout in seconds | `1200` | | `--no-watermark` | - | Disable watermark | `false` | | `--list-versions` | - | List all supported versions | - |

Python API Usage

import asyncio
import sys

sys.path.append("scripts")
from seedream_image_generate import seedream_generate

async def main():
    # Use 5.0-lite version (default)
    result = await seedream_generate([
        {
            "prompt": "A cute kitten",
            "size": "2048x2048",
            "watermark": False,
            "output_format": "png"  # 5.0-lite only
        }
    ], version="5.0")
    
    print(result)

asyncio.run(main())

Version Selection Guide

Choose 4.0 if:

  • You need quick daily generation
  • Quality requirements are not extremely high
  • You need faster generation speed
  • Simple scenes and styles

Choose 4.5 if:

  • You want richer details
  • You're working with complex scenes
  • You need better style reproduction
  • You have moderate qu
Read more
Ships withagentkit-samples

欢迎来到 AgentKit 代码工坊(Samples)仓库! AgentKit 是火山引擎推出的企业级 AI Agent 开发平台,为开发者提供完整的 Agent 构建、部署和运维解决方案。平台通过标准化的开发工具链和云原生基础设施,显著降低复杂智能体应用的开发部署门槛。 本代码库包含了一系列示例和教程,帮助您理解、实现和集成 AgentKit 的各项功能到您的应用中。

Get the whole plugin
Stats
428
Stars
91
Forks
Active
Maintenance
Python
Language
Apache-2.0
License
7h ago
Last commit
9mo ago
Created

Repo: bytedance/agentkit-samples