GPT-5.6 Terra
Newby OpenAI
OpenAI mid tier of the GPT-5.6 family, balancing intelligence and cost with vision, tool calling, and a 1.05M context window.
Run queries immediately, pay only for usage
Per 1M Tokens
About this model
GPT-5.6 Terra is the balanced tier of the GPT-5.6 family, trading some of Sol's reasoning depth for a much lower price while keeping the same 1.05M-token context window, vision, and tool calling. It suits everyday production traffic that still needs frontier-family quality.
Capabilities
Use Cases
- Production apps
- Agents
- Code assistance
- Data analysis
Model Details
- Provider
- OpenAI
- Model ID
- gpt-5.6-terra
- Parameters
- Balanced
- Context Length
- 1M tokens
- Category
- chat
API Usage
Use the DOS API to integrate GPT-5.6 Terrainto your applications. Our API is compatible with OpenAI's client libraries for easy migration.
Model ID
gpt-5.6-terraPython
from dos import DOS
client = DOS()
response = client.chat.completions.create(
model="gpt-5.6-terra",
messages=[
{"role": "user", "content": "Hello, how are you?"}
]
)
print(response.choices[0].message.content)cURL
curl https://api.dos.ai/v1/chat/completions \
-H "Authorization: Bearer $DOS_API_KEY" \
-H "Content-Type: application/json" \
-d '{
"model": "gpt-5.6-terra",
"messages": [
{"role": "user", "content": "Hello, how are you?"}
]
}'Node.js
import DOS from 'dos-ai';
const client = new DOS();
const response = await client.chat.completions.create({
model: "gpt-5.6-terra",
messages: [
{ role: "user", content: "Hello, how are you?" }
]
});
console.log(response.choices[0].message.content);Related Models
DOS.AI Auto
Smart routing - automatically picks the best model for your request. Free for simple tasks, paid models for complex ones.
DOS.AI
Ultra-efficient MoE model — 35B total, 3B active parameters. Fast inference at near-8B cost with 70B-class quality.
DeepSeek V4 Flash
1M-context fast tier replacing DeepSeek V3