Skip to main content

GPT-5.2

Approved Data Classifications

Description

GPT-5.2 is OpenAI's flagship model for coding and agentic tasks across industries. It supports reasoning.effort settings (none, low, medium, high, and xhigh), accepts text and image input, and outputs text. The model provides a 400,000-token context window with up to 128,000 output tokens and an Aug 31, 2025 knowledge cutoff. Pricing is $1.75 per 1M input tokens, $14 per 1M output tokens, and $0.175 per 1M cached input tokens.

Capabilities

ModelTraining DataInputOutputContext LengthCost (per 1 million tokens)
gpt-5.2Aug 31 2025Image, TextText400,000 (in) / 128,000 (out)$1.75/1M input
$14.00/1M output
info
  • 1M represents 1 Million Tokens
  • All prices listed are based on 1 Million Tokens
  • Cached input: $0.175 per 1M tokens

Availability

Cloud Provider

Usage

curl -X POST https://api.ai.it.ufl.edu/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer <API_TOKEN>" \
-d '{
"model": "gpt-5.2",
"messages": [
{
"role": "system",
"content": "You are a helpful assistant."
},
{
"role": "user",
"content": "Write a haiku about an Alligator."
}
]
}'

References

  1. OpenAI GPT-5.2 Model
    https://platform.openai.com/docs/models/gpt-5.2/
  2. OpenAI API Pricing
    https://openai.com/api/pricing/