uttapen

GPT-3.5 Turbo (older v0613) vs GPT-3.5 Turbo Instruct

Both sit behind the same key and the same code on uttapen — the only thing that changes is the model string, so you can run each of them against your own workload without touching anything else. On cost, GPT-3.5 Turbo (older v0613) comes out about 1.2× cheaper.

FeatureGPT-3.5 Turbo (older v0613)GPT-3.5 Turbo Instruct
ProviderOpenAIOpenAI
Model idopenai/gpt-3.5-turbo-0613openai/gpt-3.5-turbo-instruct
Context4,095 tokens4,095 tokens
Max output3,685 tokens3,685 tokens
Input / 1M tokens290,125 toman435,188 toman
Output / 1M tokens580,250 toman580,250 toman
≈ one 1,000-word request1,131 toman1,320 toman
Input cachingNoNo
Image inputNoNo
File inputNoNo
Tool callingYesNo
JSON outputYesYes
Reasoning modeNoNo

Which one for what?

GPT-3.5 Turbo (older v0613)

  • Agents that call your own APIs and database
1,131 toman per 1,000 words · Model page

GPT-3.5 Turbo Instruct

  • Chat, summarising, and everyday text generation
1,320 toman per 1,000 words · Model page

Run both with the same code

Swap the model value between the two ids and send the same request twice; what each answer cost comes back in the X-Uttapen-Cost-Toman header.

curl https://api.uttapen.ir/v1/chat/completions \
  -H "Authorization: Bearer sk-up-…" \
  -H "Content-Type: application/json" \
  -d '{
    "model": "openai/gpt-3.5-turbo-0613",
    "messages": [{"role": "user", "content": "Introduce yourself in one sentence."}],
    "stream": true
  }'

model = "openai/gpt-3.5-turbo-instruct"

More comparisons: all pairs · model rankings · full catalogue

base_url = https://api.uttapen.ir/v1