Back to Modelsby OpenAI
O
GPT-3.5 Turbo
GPTFast, inexpensive model for simple tasks. Good for classification, summarization, and basic chat.
Jun 13, 2023
Specifications
Context Length
16K
16,385 tokens
Input Price
$0.50
per 1M tokens
Output Price
$1.50
per 1M tokens
Modalities
1
text→text
Capabilities
text generationchatfunction calling
API Usage
1Router is fully OpenAI-compatible. Just set the base URL and use this model ID:
openai/gpt-3.5-turbocURL
curl https://api.1router.com/v1/chat/completions \
-H "Authorization: Bearer $ROUTER_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "openai/gpt-3.5-turbo",
"messages": [{"role": "user", "content": "Hello!"}]
}'