Skip to main content
Doubao Seed 2.0 Mini is a chat model available through AnyFast via an OpenAI-compatible interface. ByteDance’s compact Seed 2.0 Mini model, designed for high-throughput scenarios.

Key capabilities

  • OpenAI-compatible — Works as a drop-in replacement with the OpenAI SDK
  • Compact — Smallest model in the Seed 2.0 family with fast inference
  • High Throughput — Ideal for batch processing and latency-sensitive applications
  • Streaming — Supports real-time token streaming via SSE

Quick example

curl https://www.anyfast.ai/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 } objects
max_tokensintegerNoMaximum tokens to generate
temperaturefloatNo02. Controls randomness. Default: 1
streambooleanNoEnable SSE streaming. Default: false
top_pfloatNoNucleus sampling threshold. Default: 1
stopstring / arrayNoSequences that stop generation

API Reference

View the interactive API playground for Doubao Seed 2.0 Mini.