Results for: “Gemini 3.0 Pro Preview”
Gemini 3.0 Pro Preview
Gemini 3 Pro is Google's intelligent model that delivers cutting-edge performance in reasoning, multimodal understanding, and software development. It surpasses Gemini 2.5 Pro across every major benchmark, topping the LMArena Leaderboard with a 1501 Elo and achieving top-tier scores in GPQA Diamond, MathArena Apex, and ARC-AGI-2.
1M 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": "gemini-3-pro-preview",
"messages": [
{
"role": "user",
"content": "What is the meaning of life?"
}
]
})
)