GPT-6 Sol and GPT-6 Luna now available in AI Gateway and Agent Runners
September 22, 2026
OpenAI’s GPT-6 Sol and GPT-6 Luna models are now available through Netlify’s AI Gateway and Agent Runners with zero configuration required.
Use the OpenAI SDK directly in your Netlify Functions without managing API keys or authentication. AI Gateway handles everything automatically. Here’s an example using GPT-6 Sol with the Responses API:
import OpenAI from 'openai';
export default async () => { const openai = new OpenAI();
const response = await openai.responses.create({ model: 'gpt-6-sol', input: 'Give a concise explanation of how AI works.', });
return Response.json(response);};GPT-6 Sol and GPT-6 Luna are also available across Scheduled Functions, Background Functions, and Edge Functions. You get automatic access to Netlify’s caching, rate limiting, and authentication infrastructure.
Learn more in the AI Gateway documentation and Agent Runners documentation.