Models

GPT 5.5

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

Overview

GPT 5.5 is a OpenAI model configured in Yolo Router. It is listed for vision understanding, deep reasoning, text generation workloads. Use the model ID gpt-5.5 when calling compatible APIs.

Key Specifications

ParameterValue
ProviderOpenAI
Model IDgpt-5.5
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$1.5 / 1M tokens
Output$9 / 1M tokens
Cache Read$0.15 / 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.5",
    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