Skip to content
OpenSmartRoute
Model catalogue
OpenAI

OpenAI

GPT-4.1 Nano

openai/gpt-4.1-nano

Specification

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

OpenAI

GPT-4.1 Nano

tools

OpenAI openai/gpt-4.1-nano

For tasks that demand low latency, GPT‑4.1 nano is the fastest and cheapest model in the GPT-4.1 series. It delivers exceptional performance at a small size with its 1 million...

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

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