Profile

bytedance / seedream-v5/edit

Edit and seamlessly compose images using text prompts and multiple reference images with the fast, high-quality Seedream 5.0 Lite model.

0.035

Model Input

Input

The text prompt used to edit the image

  • https://media.modelrunner.ai/qnZHFiSgmrZFMWB08Zpax.png
  • https://media.modelrunner.ai/IcHRXHLAOu8XMFX8PYzA9.png

List of URLs of input images for editing. Presently, up to 10 image inputs are allowed. If over 10 images are sent, only the last 10 will be used.

The size of the generated image. Total pixels must be between 2560x1440 and 3072x3072. In case the image size does not fall within these parameters, the image size will be adjusted to by scaling.

Additional Settings

Customize your input with more control.

Min: 1 - Max: 6

Number of separate model generations to be run with the prompt.

Min: 1 - Max: 6

If set to a number greater than one, enables multi-image generation. The model will potentially return up to `max_images` images every generation, and in total, `num_images` generations will be carried out. In total, the number of images generated will be between `num_images` and `max_images*num_images`.

Safety checker can only be disabled on API call

You need to be logged in to run this model and view results.
Log in

Model Output

Output

preview
Generated in 45.646 seconds
Logs (1 lines)

Model Example Requests

Examples

BOJfa0Za0mNWZNGutdyKO2A4KqWCVMh8JCfMMScKBA

Model Details

Model Details

Seedream 5.0 Lite brings fast, high-quality intelligent image editing directly to your creative workflow. Designed to handle complex, multi-conditional image manipulation, this model allows you to upload up to 10 reference images and use a descriptive text prompt to dictate exactly how they should be combined, modified, or edited. Whether you are composing visuals directly in the user interface or integrating via the API, you can easily generate and download your final high-resolution edits right from the app.

**Features** * **Multi-Image Inputs**: Supply multiple reference images simultaneously to effortlessly blend products, logos, and background scenes. * **Text-Driven Precision**: Use natural language prompts to specify which image corresponds to which element in your desired output (e.g., "Replace Figure 1 with Figure 2"). * **Intelligent Compositing**: The model seamlessly integrates elements, matching tricky details like lighting, textures (such as frosted glass), and accurate perspective.

**What it’s good at** * **E-Commerce Mockups**: Easily swap out products in lifestyle shots or apply logos and branding directly to blank merchandise items. * **Advanced Retouching**: Remove unwanted elements, text, or background clutter while seamlessly preserving the core subject. * **Style and Texture Transfer**: Render specific materials, finishes, or artistic styles onto existing objects based solely on your prompt and reference inputs.

**Tips for Best Results** * Clearly identify your input images in your prompt (e.g., "Figure 1", "Figure 2") in the exact order they are uploaded to the platform. * Keep your text instructions concise but highly specific about required textures, actions, and desired lighting.

## Safety & Content Moderation

**Enable Safety Checker** By default, the model includes a content moderation filter to prevent the generation of inappropriate or unsafe imagery. * `enable_safety_checker`: A boolean value that defaults to `true`. This setting can only be configured via the API. If your specific workflow requires bypassing this filter for legitimate use cases, you can disable it by passing `false` in your API request.

```javascript import { modelrunner } from "@modelrunner/client";

const result = await modelrunner.subscribe("bytedance/seedream-v5/edit", { input: { prompt: "Replace the product in Figure 1 with that in Figure 2. Seamlessly render logo in Figure 3 into the product design, in frosted glass texture. Remove any extra text in Figure 1, and design a catchy tagline for the perfume.", image_urls: [ "https://media.modelrunner.ai/perfume-scene.png", "https://media.modelrunner.ai/new-bottle.png", "https://media.modelrunner.ai/brand-logo.png" ], enable_safety_checker: true } }); ```