Skip to main content
DeepSeek V3.1 Terminus is available through Starrise AI via the OpenAI-compatible interface, excelling at complex reasoning, coding, and multi-turn conversations.

Key Capabilities

  • OpenAI-compatible — Drop-in replacement for the OpenAI SDK, no other code changes needed
  • Long context — Supports large document processing and multi-turn conversations
  • Streaming — Real-time token streaming via SSE
  • Strong reasoning — Suitable for complex, multi-step tasks

Quick Example

curl https://ai.alad.com/v1/chat/completions \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "deepseek-v3-1-terminus",
    "messages": [
      { "role": "user", "content": "Explain quantum entanglement in simple terms." }
    ]
  }'

Parameters

ParameterTypeRequiredDescription
modelstringYesFixed value: deepseek-v3-1-terminus
messagesarrayYesArray of { role, content } objects
max_tokensintegerNoMaximum number of tokens to generate
temperaturefloatNo02, controls randomness, default 1
streambooleanNoEnable SSE streaming, default false
top_pfloatNoNucleus sampling threshold
stopstring / arrayNoSequences where generation stops

API Reference

View the interactive API Playground for DeepSeek V3.1 Terminus.