GPT-3.5 Turbo Instruct
GPT-3.5 Turbo Instruct is an instruction-tuned completion model designed for the legacy Completions endpoint, offering a direct prompt-in, text-out format suited to few-shot tasks, templated generation, and workflows that predate the chat message structure.
import { streamText } from 'ai'
const result = streamText({ model: 'openai/gpt-3.5-turbo-instruct', prompt: 'Why is the sky blue?'})Playground
Try out GPT-3.5 Turbo Instruct by OpenAI. Usage is billed to your team at API rates. Free users (those who haven't made a payment) get $5 of credits every 30 days.
Ask GPT-3.5 Turbo Instruct anything to try it out.
Providers
Route requests across multiple providers. Copy a provider slug to set your preference. Visit the docs for more info. Using a provider means you agree to their terms, listed under Legal.
| Provider |
|---|
P50 throughput on live AI Gateway traffic, in tokens per second (TPS). Visit the docs for more info.
P50 time to first token (TTFT) on live AI Gateway traffic, in milliseconds. View the docs for more info.
Direct request success rate on AI Gateway and per-provider. Visit the docs for more info.
More models by OpenAI
| Model |
|---|
About GPT-3.5 Turbo Instruct
GPT-3.5 Turbo Instruct launched on September 18, 2023 as part of OpenAI's update that also brought fine-tuning support to the GPT-3.5 Turbo family. While the base GPT-3.5 Turbo targets the Chat Completions API, this variant works with the legacy Completions endpoint, the same interface GPT-3 era models used. That makes it the natural successor for workflows built on that format.
The model follows the instructed-completion paradigm: you write a free-form prompt and the model continues or responds directly, without requiring the message-role structure the chat endpoint demands. This suits few-shot pattern completion, structured data extraction from templated prompts, text transformation tasks, and any integration where a prompt-in, completion-out contract is preferable.
OpenAI positioned the Instruct variant as a bridge for developers who wanted Turbo-family efficiency and pricing without abandoning the Completions interface. For new projects, chat-format models generally offer more capability per token. But for existing pipelines or use cases where single-turn completion is semantically cleaner, GPT-3.5 Turbo Instruct fills a clear slot.
What To Consider When Choosing a Provider
- Configuration: If you're migrating legacy Completions-based integrations or maintaining backwards-compatible pipelines, note that this model's prompt format differs from chat models. Preserving your existing prompt templates avoids rework.
- Zero Data Retention: AI Gateway does not currently support Zero Data Retention for this model. See the documentation for models that support ZDR.
- Authentication: AI Gateway authenticates requests using an API key or OIDC token. You do not need to manage provider credentials directly.
When to Use GPT-3.5 Turbo Instruct
Best For
- Legacy completions integrations: Existing Completions-endpoint deployments where migrating to the chat message format isn't yet feasible
- Few-shot text transformation: Prompt templates with examples baked in for pattern completion
- Code completion: Inline suggestion features that use a fill-in-the-middle or suffix-based prompt style
- Structured extraction: Well-crafted prompts that reliably produce a specific output format
- Legacy chatbot pipelines: Automation pipelines built before the Chat Completions API became standard
Consider Alternatives When
- New projects: Starting a new project where GPT-3.5 Turbo or GPT-4o mini will generally offer better multi-turn coherence
- Chat-only features: The task requires vision input, function calling, or JSON mode, which are only available on chat-format models
- Deeper reasoning: You need the extended context or reasoning depth of the GPT-4 family
Conclusion
GPT-3.5 Turbo Instruct occupies a specific but important position: it is the only GPT-3.5 Turbo variant designed for the Completions endpoint, making it the right choice when a completion-style prompt contract is required or preferred. Through AI Gateway, teams can continue using this model alongside newer chat-format models under a single authentication layer.