MODELS / OPENAI

GPT-3.5 Turbo

OpenAI's most capable and cost effective model in the GPT-3.5 family optimized for chat purposes, but also works well for traditional completions tasks.

TEXTTOOL-USE
16.4K
CONTEXT WINDOW
4.1K
MAX OUTPUT TOKENS
$0.5 / 1M tokens
INPUT PRICE
$1.50 / 1M tokens
OUTPUT PRICE
QUICKSTART

Call it in one request.

OpenAI-compatible — change the base URL, and the setup is complete.

SHELL
curl https://enterprise.blackbox.ai/v1/chat/completions \
  -H "Authorization: Bearer $BLACKBOX_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "blackboxai/openai/gpt-3.5-turbo",
    "messages": [{ "role": "user", "content": "Hello!" }],
    "stream": true
  }'
INPUT: textOUTPUT: textRELEASED: 2023-03-01