openai
OpenAI

OpenAI: GPT-3.5 Turbo (older v0613)

openai/gpt-3.5-turbo-0613
Контекст
4 095
Вход токены
123,05 ₽/M
Выход токены
246,11 ₽/M
описание

GPT-3.5 Turbo is OpenAI's fastest model. It can understand and generate natural language or code, and is optimized for chat and traditional completion tasks.

Training data up to Sep 2021.

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

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

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