GPT-5.4 Nano and Mini available in AI Gateway
v5.4
1 featureThis release1 featureNew capabilitiesAI-tallied from the release notes
From the original release noteView original ↗
OpenAI’s GPT-5.4 Nano and GPT-5.4 Mini models are now available through Netlify’s AI Gateway with zero configuration required.
Use the OpenAI SDK directly in your Netlify Functions without managing API keys or authentication. The AI Gateway handles everything automatically. Here’s an example using the GPT-5.4 Nano model:
import OpenAI from 'openai';
export default async () => { const openai = new OpenAI();
const response = await openai.responses.create({
model: 'gpt-5.4-nano',
input: 'Give a concise explanation of how AI works.',
});
return Response.json(response);
};
GPT-5.4 Nano and GPT-5.4 Mini are available for all Function types. You get automatic access to Netlify’s caching, rate limiting, and authentication infrastructure.
Learn more in the AI Gateway documentation
Fetched August 11, 2026