GPT-3.5 Turbo (older v0613)

OpenAI chattool_use

API ID: openai/gpt-3.5-turbo-0613

Input Price
$1.00
/1M tokens
Output Price
$2.00
/1M tokens

About GPT-3.5 Turbo (older v0613)

GPT-3.5 Turbo (older v0613) is a mid-range general-purpose model from OpenAI with standard context (4k), suitable for conversations, content creation, and general AI tasks.

๐Ÿ’ฐ
Price Ranking
#844 lowest price among 950 Chat models

Model Specifications

Context Length
4k
Max Output
4k
Release Date
2024-01-25
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
$1.05
/month
50 conversations/day, ~500 tokens each
Customer Service Bot
$33.00
/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 (older v0613) Current Free Free 4k 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

Other GLM 5
Input: $0.72
Output: $2.30
Context: 203k
Other Llama 3 Euryale 70B v2.1
Input: $1.48
Output: $1.48
Context: 8k
DeepSeek R1
Input: $0.70
Output: $2.40
Context: 64k
Moonshot AI Kimi K2 0905 (exacto)
Input: $0.60
Output: $2.50
Context: 131k

๐Ÿš€ Quick Start

Get started with GPT-3.5 Turbo (older v0613) API

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

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