claude-opus-4-5-20251101

Display Name: Claude Opus 4.5 (20251101)
Anthropic
Anthropic
Released on Nov 1 12:00 AM

claude-opus-4-5-20251101 is a model provided by Anthropic

Specifications

Context200,000
Maximum Output64,000
Inputtext, image
Outputtext, json

Performance (7-day Average)

Uptime
TPS

Pricing

Input$5.50/MTokens
Output$27.50/MTokens
Batch Input$2.75/MTokens
Batch Output$13.75/MTokens
Cache Creation$6.88/MTokens
Cached Input$0.55/MTokens

Usage Statistics

No usage data available for this model during the selected period
View your usage statistics for this model

Code Examples

Use the OpenAI Python SDK to call this model. Replace your-api-key with your API key.

python
from openai import OpenAI

client = OpenAI(
    base_url="https://api.ohmygpt.com/v1",
    api_key="your-api-key",  # Replace with your API key
)

response = client.chat.completions.create(
    model="claude-opus-4-5-20251101",
    messages=[
        {"role": "user", "content": "Hello!"}
    ],
)

print(response.choices[0].message.content)