openai
OpenAI

OpenAI: GPT-4o (2024-05-13)

openai/gpt-4o-2024-05-13
Контекст
128 000
Вход токены
615,27 ₽/M
Выход токены
1845,82 ₽/M
описание

GPT-4o ("o" for "omni") is OpenAI's latest AI model, supporting both text and image inputs with text outputs. It maintains the intelligence level of [GPT-4 Turbo](/models/openai/gpt-4-turbo) while being twice as...

модальности
+
+
интеграция

Как использовать через API

bash
# Запрос к API VEGA через openai/gpt-4o-2024-05-13
curl https://api.vega.chat/api/v1/chat/completions \
  -H "Content-Type: application/json" \
  -H "Authorization: Bearer $VEGA_API_KEY" \
  -d '{
    "model": "openai/gpt-4o-2024-05-13",
    "messages": [
      {  "role": "user", "content": "Hello!"  }
    ]
  }'