Models

GPT 5.6 Terra

OpenAI balanced model configured for vision understanding, deep reasoning, and text generation workloads.

Overview

GPT 5.6 Terra is a OpenAI model configured in Yolo Router. It is the balanced variant of the GPT-5.6 series, offering a middle ground between performance and cost for production workloads. Use the model ID gpt-5.6-terra when calling compatible APIs.

Key Specifications

ParameterValue
ProviderOpenAI
Model IDgpt-5.6-terra
Input ModalitiesText, Image
Output ModalitiesText
Pricing TypeUsage-based

Capabilities

  • Vision Understanding - Accepts visual context for image-aware tasks
  • Deep Reasoning - Suitable for multi-step analysis and planning
  • Text Generation - Generates answers, drafts, summaries, and rewrites

Pricing

TypePrice
Input$0.75 / 1M tokens
Output$4.5 / 1M tokens
Cache Read$0.075 / 1M tokens
Cache Write$0.9375 / 1M tokens

Usage Example

from openai import OpenAI

client = OpenAI(
    api_key="sk-...",
    base_url="https://api.yolorouter.com/v1",
)

response = client.responses.create(
    model="gpt-5.6-terra",
    input="Summarize this content.",
)

print(response.output_text)

Best Practices

  • Pass the model ID exactly as shown in the documentation.

  • Match the model capability tags to the text, image, audio, or video workload.

  • When cache prices are configured, keep stable prompt prefixes to improve cache reuse.

On this page