o3-pro
Гид по API
Chat completion
Вызывайте openai/o3-pro через стандартный endpoint chat completions TheRouter. Цепочка рассуждения выполняется на сервере, модель возвращает финальный ответ одним сообщением. Сложные задачи могут занимать минуты — поднимите таймаут клиента до минимум 600 с.
curl https://api.therouter.ai/v1/chat/completions \
-H "Authorization: Bearer $THEROUTER_API_KEY" \
-H "Content-Type: application/json" \
--max-time 900 \
-d '{
"model": "openai/o3-pro",
"messages": [
{"role": "user", "content": "Prove that for every prime p > 2, p^2 - 1 is divisible by 24. Show every step."}
]
}'Режим рассуждения
o3-pro принимает параметр reasoning для явного управления. Модель настроена под высокие усилия, сниженные значения уменьшают compute и могут ухудшить качество на сложных задачах. Передавайте reasoning.effort='high' для полного o3-pro.
curl https://api.therouter.ai/v1/chat/completions \
-H "Authorization: Bearer $THEROUTER_API_KEY" \
-H "Content-Type: application/json" \
--max-time 900 \
-d '{
"model": "openai/o3-pro",
"reasoning": { "effort": "high" },
"messages": [
{"role": "user", "content": "Diagnose why this Kubernetes pod is OOMKilled even though resources.limits.memory is set to 4Gi."}
]
}'Вызов инструментов
o3-pro поддерживает function calling и инструменты в стиле ChatGPT (веб-поиск, анализ файлов, Python). Подходит для agent-лупов, где каждый шаг действительно сложен — исследования из многих документов, сложные рефакторинги, финансовый или научный анализ.
curl https://api.therouter.ai/v1/chat/completions \
-H "Authorization: Bearer $THEROUTER_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "openai/o3-pro",
"messages": [{"role": "user", "content": "Compare last quarter revenue growth for Apple, Microsoft and Nvidia and rank them."}],
"tools": [{
"type": "function",
"function": {
"name": "get_earnings",
"description": "Fetch most recent reported revenue for a stock ticker",
"parameters": {
"type": "object",
"properties": { "ticker": {"type": "string"} },
"required": ["ticker"]
}
}
}],
"parallel_tool_calls": true
}'Vision
o3-pro принимает изображения вместе с текстом. Полезно для сложных диаграмм, плотных графиков, сканов доказательств или скриншотов легаси-кода.
curl https://api.therouter.ai/v1/chat/completions \
-H "Authorization: Bearer $THEROUTER_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "openai/o3-pro",
"messages": [{"role": "user", "content": [
{"type": "text", "text": "Read this circuit schematic and explain how the feedback loop stabilises gain."},
{"type": "image_url", "image_url": {"url": "https://therouter.ai/assets/vision-sample.png"}}
]}]
}'Реестр фактов — каждая утверждаемая величина имеет источник
| источник | URL | получено | |
|---|---|---|---|
| Дата релиза | techcrunch.com ↗ | 2026-06-01 | проверено |
| Дата отсечения знаний | llm-stats.com ↗ | 2026-06-01 | проверено |
| Режим рассуждения | platform.openai.com ↗ | 2026-06-01 | проверено |
| Нативное API | platform.openai.com ↗ | 2026-06-01 | проверено |
| Поддержка инструментов | techcrunch.com ↗ | 2026-06-01 | проверено |
| Лицензия | — | — | проверено |
| AIME 2024 | r/singularity launch-day benchmarks thread ↗ | 2026-06-01 | к проверке |
| GPQA Diamond | techcrunch.com ↗ | 2026-06-01 | к проверке |
| 4-for-4 reliability (AIME 2024) | OpenAI launch chart summary ↗ | 2026-06-01 | к проверке |
| 4-for-4 reliability (GPQA Diamond) | OpenAI launch chart summary ↗ | 2026-06-01 | к проверке |
| GPT-5 Pro запущен на OpenAI DevDay 2025 | openai.com ↗ | 2026-06-01 | проверено |
| o3-pro выпущена, заменяя o1-pro | techcrunch.com ↗ | 2026-06-01 | проверено |
| o3 и o4-mini анонсированы, o3-pro в планах | openai.com ↗ | 2026-06-01 | проверено |
| Сколько времени занимает ответ o3-pro? | platform.openai.com ↗ | 2026-06-01 | к проверке |