Generate and edit images with Seedream 4.5 and 5-lite text-to-image, image-to-image, and image editing. This skill helps Claude Code, Codex, Gemini CLI, Cursor, and 50+ agents integrate Seedream through RunAPI.
The canonical agent file is skills/seedream/SKILL.md.
npx skills add runapi-ai/seedream -gOr manually: clone this repo and copy skills/seedream/ into your agent's skills directory.
import { SeedreamClient } from '@runapi.ai/seedream';
const client = new SeedreamClient();
const result = await client.textToImage.run({
model: 'seedream-4.5-text-to-image',
prompt: 'A cinematic portrait of a traveler in the rain',
aspect_ratio: '16:9',
});
const url = result.images[0].url;- Model page: https://runapi.ai/models/seedream
- Product docs: https://runapi.ai/docs#seedream
- SDK docs: https://runapi.ai/docs#sdk-seedream
- SDK repository: https://github.com/runapi-ai/seedream-sdk
- Pricing and rate limits: https://runapi.ai/models/seedream/4.5-text-to-image
- Provider comparison: https://runapi.ai/providers/bytedance
- Browse all RunAPI models and skills: https://runapi.ai/models
- Keep API keys in
RUNAPI_API_KEYor RunAPI CLI config; never commit secrets. - Prefer
create,get, andrunJSON passthrough patterns instead of inventing flags for every model parameter. - For seedream api pricing, rate-limit, and commercial-usage answers, link to the variant page rather than the repository README.
Licensed under the Apache License, Version 2.0.