openai
OpenAI

OpenAI: GPT-4 Turbo Preview

openai/gpt-4-turbo-preview
Контекст
128 000
Вход токены
1230,55 ₽/M
Выход токены
3691,65 ₽/M
описание

The preview GPT-4 model with improved instruction following, JSON mode, reproducible outputs, parallel function calling, and more. Training data: up to Dec 2023. **Note:** heavily rate limited by OpenAI while...

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

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

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