Seedream 5.0 Pro ist LIVE | Jetzt im Bildgenerator testen →
openai
openai/gpt-5.6-terra

openai/gpt-5.6-terra

Veröffentlichungsdatum: 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.

Preise

Pay-per-Use

Keine Vorabkosten, zahlen Sie nur, was Sie nutzen

Eingabe$2.50 / M Tokens
Ausgabe$15.00 / M Tokens
Cache Read$0.25 / M Tokens
Cache Write$3.13 / M Tokens

Modell ausprobieren

openai/gpt-5.6-terra
Online
openai
Hallo! Ich bin ein hilfreicher KI-Assistent. Womit kann ich helfen?
Bereit, dieses Modell in einem lokalen Coding-Agent zu verwenden?Agent-Setup

API-Nutzung

Verwenden Sie die folgenden Codebeispiele zur Integration mit unserer 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)

Modelleinführung

OpenAI: GPT-5.6 Terra

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.


Why Use GPT-5.6 Terra

  • Balanced GPT-5.6 model for production workloads
  • Strong reasoning and coding performance with better cost efficiency than the flagship tier
  • Well suited for agentic workflows, tool use, and structured outputs
  • Supports long-context workloads such as document analysis and extended multi-turn sessions
  • Works with both Chat Completions and Responses API workflows

Key Features

  • Context Window: 1,050,000 tokens
  • Max Output: 128,000 tokens
  • Vision Input: Supported
  • Function Calling: Supported
  • Structured Outputs: Supported
  • Best Fit: general production reasoning, coding, agents, long-context tasks

Specifications

SpecificationValue
ProviderOpenAI
Model IDopenai/gpt-5.6-terra
Model FamilyGPT-5.6
PositioningBalanced model
Context Window1,050,000 tokens
Max Output128,000 tokens
VisionSupported
Function CallingSupported
Structured OutputsSupported
Recommended Workloadsgeneral reasoning, coding, agentic workflows, long-context tasks

Pricing

Token TypeCost
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.


How to Use

Chat Completions

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."}
    ]
  }'

Pro Mode

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:

  • higher reasoning depth
  • better consistency on difficult tasks
  • more token usage
  • higher latency than standard requests

Responses API Example

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"
    }
  }'

When to Use Pro Mode

Choose Pro mode for:

  • multi-step coding and debugging
  • agent workflows with tools or long chains of reasoning
  • tasks that require deeper analysis instead of quick turnaround
  • prompts where higher accuracy is worth additional cost and latency

Use standard mode when:

  • latency matters more than depth
  • the task is simple or repetitive
  • you are optimizing for throughput or cost

Notes

  • Designed as a balanced option within the GPT-5.6 family
  • Best paired with the Responses API when reasoning, tool use, or multi-turn state matters

Info

Anbieteropenai
Typllm

Unterstützte Funktionen

Eingabe
TextBild
Ausgabe
Text
Kontext1,050,000
Max. Ausgabe128,000
Vision✓ Unterstützt
Function Calling✓ Unterstützt

API-Zugriffsanleitung

Base URLhttps://llm.wavespeed.ai/v1
API-Endpunktchat/completions
Modell-IDopenai/gpt-5.6-terra

GPT 5.6 Terra API

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.

Eingabe

$2.5 /M

Ausgabe

$15 /M

Kontext

1050K

Max. Ausgabe

128K

Vision

Unterstützt

Tool-Nutzung

Unterstützt

GPT 5.6 Terra auf WaveSpeedAI testen

Zugriff auf GPT 5.6 Terra über unsere einheitliche API — OpenAI-kompatibel, keine Kaltstarts, transparente Preise.

Häufige Fragen zu GPT 5.6 Terra

Wie viel kostet die GPT 5.6 Terra-API?+

Preise auf WaveSpeedAI: $2.50 pro Million Input-Tokens und $15.00 pro Million Output-Tokens. Prompt-Caching und Batch-Verarbeitung werden separat berechnet und reduzieren die effektiven Kosten bei langen, sich wiederholenden Workloads.

Wie groß ist das Kontextfenster von GPT 5.6 Terra?+

GPT 5.6 Terra unterstützt bis zu 1050K Kontext-Tokens und bis zu 128K Output-Tokens pro Anfrage.

Ist GPT 5.6 Terra OpenAI-kompatibel?+

Ja. WaveSpeedAI stellt GPT 5.6 Terra über einen OpenAI-kompatiblen Endpunkt unter https://llm.wavespeed.ai/v1 bereit. Richten Sie das offizielle OpenAI SDK mit Ihrem WaveSpeedAI-API-Schlüssel auf diese Base-URL — keine weiteren Codeänderungen erforderlich.

Wie starte ich mit GPT 5.6 Terra?+

Bei WaveSpeedAI anmelden, in Access Keys einen API-Schlüssel erstellen und eine Anfrage an https://llm.wavespeed.ai/v1/chat/completions mit der oben angezeigten Model-ID senden. Neue Konten erhalten kostenlose Credits, um GPT 5.6 Terra zu testen.

Verwandte LLM-APIs

GPT-5.6 Terra | OpenAI Frontier LLM API Pricing | WaveSpeedAI