Skip to content
OpenSmartRoute
Model catalogue
OpenAI

OpenAI

GPT-4.1

openai/gpt-4.1

Specification

Published by the vendor; the platform bills at the target's declared price.

OpenAI

GPT-4.1

tools

OpenAI openai/gpt-4.1

GPT-4.1 is a flagship large language model optimized for advanced instruction following, real-world software engineering, and long-context reasoning. It supports a 1 million token context window and outperforms GPT-4o and...

Input $/1M
$2.00
Output $/1M
$8.00
Context
1.0M
Max output
33K
Released
Apr 14, 2025
Modalities
imagetextfile

Cached input reads $0.50 per 1M

On this deployment

1 target runs this model; traffic is measured over the last 30 days.

OpenAI SDKpython
from openai import OpenAI

client = OpenAI(base_url="https://api.opensmartroute.ai/v1", api_key="osr_live_...")
resp = client.chat.completions.create(
    model="llm-frontier",   # the target on this deployment that runs GPT-4.1
    messages=[{"role": "user", "content": "Summarise this in one sentence."}],
)
print(resp.model, resp.choices[0].message.content)