> ## Documentation Index
> Fetch the complete documentation index at: https://docs.vibetoken.cn/llms.txt
> Use this file to discover all available pages before exploring further.

# Seedream 3.0 — 文本生成图像

> 使用字节跳动 Seedream 3.0 从文本提示词生成图像。

|              |                               |
| ------------ | ----------------------------- |
| **Model ID** | `bytedance/seedream-3.0-t2i`  |
| **Family**   | `seedream-3-0`                |
| **Task**     | `text-to-image`               |
| **Provider** | ByteDance                     |
| **Modality** | Image                         |
| **Price**    | \$0.03 / image（刊例价），按 5% 折扣计费 |

## 参数

<ParamField body="prompt" type="string" required>
  用于生成图像的文本描述。
</ParamField>

<ParamField body="size" type="string" default="1024x1024">
  输出分辨率。可选值为 `1024x1024`、`1024x1536`、`1536x1024`、`2048x2048` 之一。
</ParamField>

<ParamField body="guidance_scale" type="number" default="2.5">
  图像遵循提示词的紧密程度（1–10）。
</ParamField>

<ParamField body="seed" type="integer">
  用于复现的随机种子。省略或设为 `-1` 表示使用随机种子。
</ParamField>

## 示例

```bash theme={null}
curl https://vibetoken.cn/v1/images/generations \
  -H "Authorization: Bearer $VIBETOKEN_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "bytedance/seedream-3.0-t2i",
    "prompt": "a red panda barista pulling an espresso shot, warm morning light",
    "size": "1024x1024"
  }'
```
