Skip to main content
Doubao Seed 2.0 Pro is a chat model available through Starrise 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

curl https://ai.alad.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." }
    ]
  }'

Parameters

ParameterTypeRequiredDescription
modelstringYesMust be doubao-seed-2.0-pro
messagesarrayYesList of { role, content } messages
max_tokensintegerNoMaximum number of tokens to generate
temperaturefloatNo02, controls randomness, default 1
streambooleanNoEnable SSE streaming output, default false
top_pfloatNoNucleus sampling threshold, default 1
stopstring / arrayNoSequences that trigger generation stop

API Reference

View the interactive API documentation for Doubao Seed 2.0 Pro.