GPT 3.5 Turbo
OpenAI logo

GPT 3.5 Turbo

gpt-3.5-turbollms.txt
OpenAI
Since the GPT-3.5-turbo model has been officially deprecated, all requests targeting this model will be automatically routed to GPT-40-mini. We recommend using GPT-40-mini directly as a replacement.
This model will be retired on 2026-10-23. Plan to migrate to gpt-5.6-terra.
Calls still work until then. All model retirements

Pricing

  • Input Tokens: $0.5 /M tokens
  • Output Tokens: $1.5 /M tokens

Input Modalities

    Try this model

    Python
    import os
    from openai import OpenAI
    
    client = OpenAI(
        api_key=os.environ["AIHUBMIX_API_KEY"],
        base_url="https://aihubmix.com/v1",
    )
    
    response = client.chat.completions.create(
        model="gpt-3.5-turbo",
        messages=[
          {
            "role": "user",
            "content": "Hello, how are you?"
          }
        ],
        max_tokens=1024,
        stream=False,
    )
    
    print(response.choices[0].message.content)

    Frequently asked questions

    What is GPT 3.5 Turbo?

    Since the GPT-3.5-turbo model has been officially deprecated, all requests targeting this model will be automatically routed to GPT-40-mini. We recommend using GPT-40-mini directly as a replacement.