Profile

bytedance / seedream-v4.5/edit

Advanced image editing model by ByteDance that uses text prompts and up to 10 reference images to stylize, transform, and seamlessly composite visuals.

0.04

Model Input

Input

The text prompt used to edit the image.

  • https://media.modelrunner.ai/1JHLxA95JXfj3rQk2ftkB.png
  • https://media.modelrunner.ai/K1umLazzCDJ4t2ZTvWXUC.png
  • https://media.modelrunner.ai/c14xGWaVVn4yEq8maY6Cz.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. Width and height must be between 1920 and 4096, or total number of pixels must be between 2560*1440 and 4096*4096.

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`. The total number of images (image inputs + image outputs) must not exceed 15.

Additional Settings

Customize your input with more control.

Random seed to control the stochasticity of image generation.

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 54.204 seconds
Logs (1 lines)

Model Example Requests

Examples

5Y3E3V43ggsMK9HodzdVjbWp4tlBoCO033aW1CX8Ae

Model Details

Model Details

Seedream 4.5 Image Editing is a next-generation model by ByteDance that integrates image generation and advanced editing capabilities into a single, unified architecture. This specific variant focuses exclusively on advanced image-to-image transformation and stylization, allowing users to modify existing images with precise text prompts. Whether you are running it directly through the UI to download results instantly or integrating it into your applications, Seedream provides high-fidelity, creative visual adjustments.

A standout feature of this model is its ability to ingest multiple reference images simultaneously. By providing up to 10 input images, you can instruct the model to blend elements, replace specific products, or transfer styles across your references. This makes it incredibly powerful for e-commerce, advertising, and creative design tasks where you need to combine a product from one image, a background from another, and layout instructions from a third.

**Features** - **Multi-Image Processing**: Supply up to 10 input images to serve as references for your edit. - **Text-Guided Transformations**: Use natural language prompts to dictate exactly how the input images should be altered, combined, or stylized. - **Unified Architecture**: High-quality structural understanding allows for realistic product replacements and composite creations.

**What it’s good at** - Replacing subjects or products seamlessly within an existing scene. - Transferring visual styles across multiple reference photos. - Combining disparate elements into a single, cohesive composition.

## Advanced Configuration

**Multi-Image Generation (`max_images`)** When you need the model to output multiple edited variations per generation cycle, you can adjust the `max_images` parameter. Setting this above `1` enables multi-image output. The model will perform `num_images` generations and potentially return up to `max_images` images per generation. Your total output will range between `num_images` and `max_images * num_images`. Note that the combined total of input images and output images cannot exceed 15.

```javascript // Example of configuring max_images input: { max_images: 2, num_images: 1 } ```

To run this model via the ModelRunner JavaScript client:

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

const result = await modelrunner.subscribe("bytedance/seedream-v4.5/edit", { input: { prompt: "Replace the product in Figure 1 with that in Figure 2. For the title copy the text in Figure 3 to the top of the screen, the title should have a clear contrast with the background but not be overly eye-catching.", image_urls: [ "https://example.com/inputs/seedream_edit_input_1.png", "https://example.com/inputs/seedream_edit_input_2.png", "https://example.com/inputs/seedream_edit_input_3.png" ], image_size: "auto_4K", max_images: 1 } });

console.log(result.data); ```