Google
Gemini 3 Pro
Google's latest 2025 frontier multimodal model with breakthrough reasoning capabilities and exceptional performance
Context Length1M tokens
Output Length64K tokens
Model TypeMultimodal Large Language Model
ๅฎไปทไธ่งๆ ผ
๐ฐ ๅฎไปท
่พๅ
ฅ$2.0 / M tokens
่พๅบ$12.0 / M tokens
โ๏ธ ่งๆ ผ
Context Length1M tokens
Output Length64K tokens
Model TypeMultimodal Large Language Model
MultimodalText, images, audio, video, code
Training Cutoff DateJanuary 2025
API SupportGemini API / OpenAI API
API ่ฐ็จ็คบไพ
Python
from openai import OpenAI
client = OpenAI(
base_url="https://api.xairouter.com/v1",
api_key="your-api-key"
)
response = client.chat.completions.create(
model="gemini-3-pro-preview",
messages=[
{"role": "user", "content": "Hello!"}
]
)
print(response.choices[0].message.content)cURL
curl https://api.xairouter.com/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"model": "gemini-3-pro-preview",
"messages": [
{"role": "user", "content": "Hello!"}
]
}'