Results for: “GPT-5.1”
GPT-5.1
GPT-5.1 is an upgrade to the GPT-5 family, designed to be more intelligent, more conversational, and easier to personalize. It improves on GPT-5 in both capability and communication style. GPT-5.1 adapts its reasoning effort dynamically, responding quickly to simple requests while thinking more deeply on complex ones. It also integrates refined steering controls so users can customize ChatGPT's tone and personality with ease.
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.1",
"messages": [
{
"role": "user",
"content": "What is the meaning of life?"
}
]
})
)