Gemini 3 Pro
unofficialchat
Gemini 3 Pro specifications
| Context window | 1.05M |
|---|---|
| Max output tokens | 65536 |
| Release date | — |
| Input | Text |
| Output | Text |
Gemini 3 Pro pricing in rubles
You pay for what you use, per token and per unit. The final request cost is returned in the API response.
| Type | Price |
|---|---|
| Input tokens | 400 ₽ per 1M tokens |
| Output tokens | 2400 ₽ per 1M tokens |
Prices are in rubles and may change with exchange rates.
What Gemini 3 Pro can do
- Function calling
- feature.ide
- Streaming responses
Gemini 3 Pro API: connection and code examples
The service exposes a single OpenAI-compatible API. Set our base_url and the key from your dashboard.
OpenAI Python SDK
from openai import OpenAI
client = OpenAI(
api_key="YOUR_API_KEY",
base_url="https://api.neuralbridge.ru/v1",
)
response = client.chat.completions.create(
model="google/gemini-3-pro-11594",
messages=[{"role": "user", "content": "Привет! Расскажи о себе."}],
)
print(response.choices[0].message.content)Python (requests)
import requests
response = requests.post(
"https://api.neuralbridge.ru/v1/chat/completions",
headers={"Authorization": "Bearer YOUR_API_KEY"},
json={
"model": "google/gemini-3-pro-11594",
"messages": [{"role": "user", "content": "Привет! Расскажи о себе."}],
},
)
print(response.json()["choices"][0]["message"]["content"])cURL
curl https://api.neuralbridge.ru/v1/chat/completions \
-H "Authorization: Bearer YOUR_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "google/gemini-3-pro-11594",
"messages": [{"role": "user", "content": "Привет! Расскажи о себе."}]
}'API endpoints
POST /v1/chat/completionsprimary | Chat Completions Ana sohbet uç noktası: mesaj geçmişini alır ve modelin yanıtını döndürür. Akış ve normal modları destekler. |
POST /v1/responses | Responses Durum ve yapılandırılmış çıktı ile alternatif sohbet formatı. |
POST /v1/messages | Messages Anthropic formatı: Claude için yazılmış istemciler ve SDK'lar için aynı sohbet. |
POST /v1/converse | Converse Amazon Bedrock Converse formatı — ona göre yazılmış istemciler için. |
POST /v1/converse-stream | Converse Stream Bedrock Converse formatının akış versiyonu. |
POST /v1/generateContent | İçerik Oluştur Google Gemini formatı — onun için yazılmış istemciler ve SDK'lar için. |
POST /v1/streamGenerateContent | Stream Generate Content Gemini formatının akış sürümü. |
Supported request parameters
| Parameter | Default | Allowed values | Description |
|---|---|---|---|
temperature | 1 | — | Cevabın çeşitliliğini etkiler: değer ne kadar yüksekse çıktı o kadar rastgele, düşükse o kadar öngörülebilir. |
top_p | 1 | — | En olası token paylarının seçimlerini sınırlar: yalnızca olasılıkları toplamı P olanlar dikkate alınır. |
max_tokens | — | — | Modelin cevapta üretebileceği token sayısının üst sınırı. |
presence_penalty | 0 | — | Metinde zaten görülmüşse token olasılığını azaltır — model yeni konulara daha istekli geçer. |
frequency_penalty | 0 | — | Token olasılığını, tokenin daha önce ne kadar sık göründüğüne orantılı olarak azaltır — tekrarları önler. |
stop | — | — | Durdurma satırları listesi: model herhangi birini ürettiği anda üretim durur. |
seed | — | — | Rastgeleliği sabitler: aynı seed ve aynı parametrelerle yapılan tekrar isteği aynı sonucu verir. |
response_format | — | — | Yanıt formatı: normal metin veya belirli şemaya göre katı JSON. |
stream | false | — | Yanıtı, üretim sırasında bir akış olarak gönder, sonunda tek bir parça olarak değil. |
tools | — | — | — |
parallel_tool_calls | — | — | — |