OpenAIРассужденияЗрение

OpenAI: o3

openai/o3

o3 is a well-rounded and powerful model across domains. It sets a new standard for math, science, coding, and visual reasoning tasks. It also excels at technical writing and instruction-following....

Доступна через единый OpenAI-совместимый API AI Gateway: подключайтесь через привычный SDK — меняется только base_url и параметр model. Оплата в рублях, контроль расхода и данные в РФ.

Возможности:ИнструментыJSON-режим

Быстрый старт

Первый запрос к openai/o3 — скопируйте и подставьте свой ключ.

from openai import OpenAI

client = OpenAI(
    base_url="https://ai-gatewey.ru/v1",
    api_key="sk-aigate-ваш_ключ",
)

resp = client.chat.completions.create(
    model="openai/o3",
    messages=[{"role": "user", "content": "Привет!"}],
)
print(resp.choices[0].message.content)