Skip to content
OpenSmartRoute
Model catalogue
OpenAI

OpenAI

GPT-4.1 Mini

openai/gpt-4.1-mini

Specification

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

OpenAI

GPT-4.1 Mini

tools

OpenAI openai/gpt-4.1-mini

GPT-4.1 Mini is a mid-sized model delivering performance competitive with GPT-4o at substantially lower latency and cost. It retains a 1 million token context window and scores 45.1% on hard...

Input $/1M
$0.40
Output $/1M
$1.60
Context
1.0M
Max output
33K
Released
Apr 14, 2025
Modalities
imagetextfile
Intelligence index-
Coding index20
Agentic index-

Cached input reads $0.10 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-mid",   # the target on this deployment that runs GPT-4.1 Mini
    messages=[{"role": "user", "content": "Summarise this in one sentence."}],
)
print(resp.model, resp.choices[0].message.content)