Skip to main content
Doubao Seed 2.0 Mini is a chat model available through Starrise AI via an OpenAI-compatible API. ByteDance’s Seed 2.0 Mini compact model — ideal for high-throughput scenarios.

Key Capabilities

  • OpenAI compatible — Use the OpenAI SDK directly with no code changes
  • Compact and fast — The smallest model in the Seed 2.0 series with fast inference
  • High throughput — Suitable for batch processing and latency-sensitive applications
  • 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-mini",
    "messages": [
      { "role": "user", "content": "Explain quantum entanglement in simple terms." }
    ]
  }'

Parameters

ParameterTypeRequiredDescription
modelstringYesMust be doubao-seed-2.0-mini
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 Mini.