openai/gpt-5.6-terra
Data de lançamento: 2026-07-09
1,050,000 context · $2.50/M input tokens · $15.00/M output tokens
GPT-5.6 Terra is the balanced model in OpenAI's GPT-5.6 series, positioned between the flagship Sol tier and the cost-efficient Luna tier. It is well suited for everyday coding, reasoning, and agentic workflows, offering a strong balance of quality, latency, and cost for general production use.
Pagamento por uso
Sem custo inicial, pague apenas pelo que usar
Use os exemplos de código abaixo para integrar com nossa API:
from openai import OpenAI
client = OpenAI(
api_key="YOUR_API_KEY",
base_url="https://llm.wavespeed.ai/v1"
)
response = client.chat.completions.create(
model="openai/gpt-5.6-terra",
messages=[
{"role": "user", "content": "Hello!"}
]
)
print(response.choices[0].message.content)GPT-5.6 Terra is the balanced model in OpenAI's GPT-5.6 series. It is designed for strong general-purpose reasoning, coding, and agentic workflows while offering a better balance of quality, latency, and cost than the flagship tier.
WaveSpeed AI exposes openai/gpt-5.6-terra through an OpenAI-compatible API, so it can be used with standard OpenAI SDKs and existing chat-completions-based application flows.
| Specification | Value |
|---|---|
| Provider | OpenAI |
| Model ID | openai/gpt-5.6-terra |
| Model Family | GPT-5.6 |
| Positioning | Balanced model |
| Context Window | 1,050,000 tokens |
| Max Output | 128,000 tokens |
| Vision | Supported |
| Function Calling | Supported |
| Structured Outputs | Supported |
| Recommended Workloads | general reasoning, coding, agentic workflows, long-context tasks |
| Token Type | Cost |
|---|---|
| Input | $2.50 per million tokens |
| Cached Input | $0.25 per million tokens |
| Cache Write | $3.125 per million tokens |
| Output | $15 per million tokens |
Pricing should still be reviewed against your active upstream configuration before publishing.
Use Chat Completions when you want a straightforward OpenAI-compatible integration path for standard conversational and coding workflows.
Python
from openai import OpenAI
client = OpenAI(
api_key="YOUR_API_KEY",
base_url="https://llm.wavespeed.ai/v1"
)
response = client.chat.completions.create(
model="openai/gpt-5.6-terra",
messages=[
{"role": "user", "content": "Summarize this implementation plan in one paragraph."}
]
)
print(response.choices[0].message.content)
cURL
curl https://llm.wavespeed.ai/v1/chat/completions \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"model": "openai/gpt-5.6-terra",
"messages": [
{"role": "user", "content": "Summarize this implementation plan in one paragraph."}
]
}'
GPT-5.6 Terra supports a stronger reasoning path through Pro mode.
Pro mode is not a separate core model that you need to configure independently. Instead, use the same base model, openai/gpt-5.6-terra, and enable Pro mode in the Responses API with:
{
"reasoning": {
"mode": "pro"
}
}
Use Pro mode when you want the model to spend more effort on difficult reasoning, planning, and tool-using tasks. It is a better fit for complex coding, high-stakes decision logic, and multi-step agent workflows where answer quality matters more than speed or token efficiency.
In practice, Pro mode usually means:
Python
from openai import OpenAI
client = OpenAI(
api_key="YOUR_API_KEY",
base_url="https://llm.wavespeed.ai/v1"
)
response = client.responses.create(
model="openai/gpt-5.6-terra",
input="Review this rollout plan and identify the main operational risk.",
reasoning={
"mode": "pro",
"effort": "medium"
}
)
print(response.output_text)
cURL
curl https://llm.wavespeed.ai/v1/responses \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY" \
-d '{
"model": "openai/gpt-5.6-terra",
"input": "Review this rollout plan and identify the main operational risk.",
"reasoning": {
"mode": "pro",
"effort": "medium"
}
}'
Choose Pro mode for:
Use standard mode when:
openai/gpt-5.6-terra
GPT-5.6 Terra is the balanced model in OpenAI's GPT-5.6 series, positioned between the flagship Sol tier and the cost-efficient Luna tier. It is well suited for everyday coding, reasoning, and agentic workflows, offering a strong balance of quality, latency, and cost for general production use.
Entrada
$2.5 /M
Saída
$15 /M
Contexto
1050K
Saída máx.
128K
Vision
Suportado
Uso de ferramentas
Suportado
Acesse GPT 5.6 Terra através da nossa API unificada — compatível com OpenAI, sem inicializações a frio, preços transparentes.
Preços no WaveSpeedAI: $2.50 por milhão de tokens de entrada e $15.00 por milhão de tokens de saída. Prompt caching e batch processing são cobrados separadamente e reduzem o custo efetivo em cargas longas e repetitivas.
GPT 5.6 Terra suporta até 1050K tokens de contexto e até 128K tokens de saída por requisição.
Sim. O WaveSpeedAI expõe o GPT 5.6 Terra através de um endpoint compatível com OpenAI em https://llm.wavespeed.ai/v1. Aponte o SDK oficial da OpenAI para esta base URL com sua chave API do WaveSpeedAI — sem outras alterações no código.
Entre no WaveSpeedAI, crie uma chave API em Access Keys, então envie uma requisição para https://llm.wavespeed.ai/v1/chat/completions com o model id mostrado acima. Contas novas recebem créditos grátis para avaliar o GPT 5.6 Terra.