Results for: “GPT-5 Nano”
GPT-5 Nano
GPT-5 Nano is the lightest and fastest model in the GPT-5 family, built for high-throughput use cases like classification, simple instruction-following, and structured outputs. It prioritizes speed and low cost, making it ideal for routing, pre-processing, or embedded AI where latency and efficiency matter more than nuanced reasoning.
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-nano",
"messages": [
{
"role": "user",
"content": "What is the meaning of life?"
}
]
})
)