GPT-3.5 Turbo (batch)

OpenAI chattool_use

API ID: openai/gpt-3.5-turbo

Input Price
$0.25
/1M tokens
Output Price
$0.75
/1M tokens

About GPT-3.5 Turbo (batch)

GPT-3.5 Turbo (batch) is a budget-friendly general-purpose model from OpenAI with standard context (16k), suitable for conversations, content creation, and general AI tasks.

๐Ÿ’ฐ
Price Ranking
#821 lowest price among 1240 Chat models

Model Specifications

Context Length
16k
Max Output
4k
Release Date
2023-05-28
Capabilities
chat tool_use
Input Modalities
text
Output Modalities
text

Best For

  • Conversations, content writing, general assistance

Consider Alternatives For

  • Image understanding (needs vision capability)

๐Ÿ’ฐ Real-World Cost Examples

Estimated monthly costs for common use cases

Personal AI Assistant
$0.34
/month
50 conversations/day, ~500 tokens each
Customer Service Bot
$10.50
/month
1000 tickets/day, ~800 tokens each

OpenAI Model Lineup

Compare all models from OpenAI to find the best fit

Model Input Output Context Capabilities
GPT-3.5 Turbo (batch) Current Free Free 16k chat tool_use
GPT-3.5 Turbo 16k (older v1106) Free Free 16k chat
GPT-3.5 Turbo 16k (older v1106) Free Free 16k chat
GPT-4 32k Free Free 33k chat
GPT-4 32k Free Free 33k chat
GPT-4 32k (older v0314) Free Free 33k chat

Similar Models from Other Providers

Cross-brand alternatives with similar capabilities

Gryphe MythoMax 13B
Input: $0.40
Output: $0.60
Context: 8k
Other Mercury
Input: $0.25
Output: $0.75
Context: 128k
Other Mercury Coder
Input: $0.25
Output: $0.75
Context: 128k
Alibaba Qwen Qwen2.5 VL 72B Instruct
Input: $0.25
Output: $0.75
Context: 128k

๐Ÿš€ Quick Start

Get started with GPT-3.5 Turbo (batch) API

OpenAI Python SDK
from openai import OpenAI
client = OpenAI()

response = client.chat.completions.create(
    model="openai/gpt-3.5-turbo",
    messages=[
        {"role": "user", "content": "Hello!"}
    ]
)
print(response.choices[0].message.content)