Results for: “GPT-5.2”
GPT-5.2
GPT-5.2 is OpenAI's capable and refined model, built to excel in professional knowledge work, complex reasoning, multimodal understanding, and agentic workflows. It sets new state-of-the-art scores across many frontier benchmarks, including GDPval (74.1%), SWE-Bench Verified (80.0%), GPQA Diamond (92.4%), and ARC-AGI-2 (52.9%), often outperforming industry experts at real-world tasks.
400K Tokens
Python
Typescript
Shell
Loading...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import requests
import json
response = requests.post(
url="https://1rpc.ai/v1/chat/completions",
headers={
"Authorization": "Bearer <1RPC_AI_API_KEY>",
"Content-type": "application/json",
},
data=json.dumps ({
"model": "gpt-5.2",
"messages": [
{
"role": "user",
"content": "What is the meaning of life?"
}
]
})
)