Skip to main content
GPT-5.2 is available through Starrise AI via OpenAI Responses API (/v1/responses).

Key Capabilities

  • Responses API — Uses the new /v1/responses endpoint, replacing messages with input
  • Reasoning control — Configurable reasoning effort (minimal / low / medium / high) and summary
  • Verbosity control — Set response verbosity to low, medium, or high
  • Streaming — Real-time token streaming via SSE
  • Tool calling — Supports function calling and tool use

Quick Example

curl https://ai.alad.com/v1/responses \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-5.2",
    "input": [
      { "role": "user", "content": "Explain quantum entanglement in simple terms." }
    ],
    "reasoning": {
      "effort": "high",
      "summary": "auto"
    },
    "text": {
      "format": { "type": "text" },
      "verbosity": "medium"
    },
    "store": true
  }'

Parameters

ParameterTypeRequiredDescription
modelstringYesFixed value: gpt-5.2
inputarrayYesArray of { role, content } objects
streambooleanNoEnable SSE streaming, default false
temperaturefloatNo02, controls randomness, default 1
top_pfloatNoNucleus sampling threshold, default 1
max_output_tokensintegerNoMaximum output tokens
stopstring / arrayNoSequences where generation stops
reasoningobjectNo{ effort, summary } — Controls reasoning depth
textobjectNo{ format, verbosity } — Controls output format and verbosity
toolsarrayNoList of tools the model can call
storebooleanNoStore response for later retrieval, default true

API Reference

View the interactive API Playground for GPT-5.2.