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

# Doubao Seed 2.0 Pro

> ByteDance's Seed 2.0 Pro flagship model with the strongest reasoning capabilities.

Doubao Seed 2.0 Pro is a chat model available through Cube AI via an OpenAI-compatible API. ByteDance's Seed 2.0 Pro flagship model with the strongest reasoning capabilities.

## Key Capabilities

* **OpenAI compatible** — Use the OpenAI SDK directly with no code changes
* **Best reasoning** — The top choice for complex multi-step tasks
* **Deep analysis** — Excels at research, planning, and detailed problem-solving
* **Streaming** — Supports real-time streaming output via SSE

## Quick Example

<CodeGroup>
  ```bash cURL theme={null}
  curl https://ai.cubeuaeai.com/v1/chat/completions \
    -H "Authorization: Bearer YOUR_API_KEY" \
    -H "Content-Type: application/json" \
    -d '{
      "model": "doubao-seed-2.0-pro",
      "messages": [
        { "role": "user", "content": "Explain quantum entanglement in simple terms." }
      ]
    }'
  ```

  ```python Python theme={null}
  from openai import OpenAI

  client = OpenAI(
      api_key="YOUR_API_KEY",
      base_url="https://ai.cubeuaeai.com/v1"
  )

  response = client.chat.completions.create(
      model="doubao-seed-2.0-pro",
      messages=[
          {"role": "user", "content": "Explain quantum entanglement in simple terms."}
      ]
  )

  print(response.choices[0].message.content)
  ```

  ```python Streaming theme={null}
  from openai import OpenAI

  client = OpenAI(
      api_key="YOUR_API_KEY",
      base_url="https://ai.cubeuaeai.com/v1"
  )

  stream = client.chat.completions.create(
      model="doubao-seed-2.0-pro",
      messages=[
          {"role": "user", "content": "Write a short poem about the ocean."}
      ],
      stream=True
  )

  for chunk in stream:
      print(chunk.choices[0].delta.content or "", end="")
  ```
</CodeGroup>

## Parameters

| Parameter     | Type           | Required | Description                                  |
| ------------- | -------------- | -------- | -------------------------------------------- |
| `model`       | string         | Yes      | Must be `doubao-seed-2.0-pro`                |
| `messages`    | array          | Yes      | List of `{ role, content }` messages         |
| `max_tokens`  | integer        | No       | Maximum number of tokens to generate         |
| `temperature` | float          | No       | `0`–`2`, controls randomness, default `1`    |
| `stream`      | boolean        | No       | Enable SSE streaming output, default `false` |
| `top_p`       | float          | No       | Nucleus sampling threshold, default `1`      |
| `stop`        | string / array | No       | Sequences that trigger generation stop       |

<Card title="API Reference" icon="code" href="/en/api-reference/model-api/bytedance/doubao-seed-2.0-pro">
  View the interactive API documentation for Doubao Seed 2.0 Pro.
</Card>
