---
title: "Agent-runners | Netlify Changelog"
description: "Stay updated with the latest features, fixes, and improvements. Realize the speed, agility and performance of a scalable, composable web architecture with Netlify. Explore the composable web platform now!"
source: "https://www.netlify.com/changelog/tag/agent-runners/page/4/"
last_updated: "2026-08-03T09:52:48.000Z"
---
# Posts tagged "Agent-runners"

All Tags Agent-runners AI Ai-gateway Angular Astro AX Build CLI Database Design Devtools Domains E-commerce Extensions Forms Framework Functions Logs Next.js Nuxt.js Remix SDK Security Updates Workflow  [Subscribe to feed](https://www.netlify.com/changelog/tag/agent-runners/feed.xml)

-   [
    
    ## GPT-5.2 and GPT-5.2-Pro now available in AI Gateway and Agent Runners
    
    ](/changelog/gpt-5-2-ai-gateway/)
    
    December 11, 2025
    
    -   [ai gateway](/changelog/tag/ai-gateway/)
    -   [agent runners](/changelog/tag/agent-runners/)
    
    OpenAI’s GPT-5.2 and GPT-5.2-Pro are now available through AI Gateway and Agent Runners. You can call these models from Netlify Functions without configuring API keys; the AI Gateway provides the connection to OpenAI for you.
    
    Example usage in a Function:
    
    ```
    import { OpenAI } from "openai";
    export default async () => {  const openai = new OpenAI();
      const response = await openai.chat.completions.create({    model: "gpt-5.2",    messages: [      { role: "user", content: "What are the key improvements in GPT-5.2?" }    ]  });
      return new Response(JSON.stringify(response), {    headers: { "Content-Type": "application/json" }  });};
    ```
    
    These models work across any function type and are compatible with other Netlify primitives such as caching and rate limiting, giving you control over request behavior across your site.
    
    See the [AI Gateway documentation](https://docs.netlify.com/build/ai-gateway/overview/) for details.
    
    Agent Runners support the same models, enabling AI to complete long-running coding tasks. You can learn more in the [Agent Runners documentation](https://docs.netlify.com/build/build-with-ai/agent-runners/overview/).
    
    [Permalink to GPT-5.2 and GPT-5.2-Pro now available in AI Gateway and Agent Runners Permalink](/changelog/gpt-5-2-ai-gateway/)
    
-   [
    
    ## GPT-5.1-Codex-Max now available in AI Gateway and Agent Runners
    
    ](/changelog/gpt-5-1-codex-max-ai-gateway-agent-runners/)
    
    December 4, 2025
    
    -   [ai gateway](/changelog/tag/ai-gateway/)
    -   [agent runners](/changelog/tag/agent-runners/)
    
    OpenAI’s GPT-5.1-Codex-Max model is 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. The AI Gateway handles everything automatically. Here’s an example using the GPT-5.1-Codex-Max model:
    
    ```
    import OpenAI from 'openai';
    export default async () => {    const openai = new OpenAI();
        const response = await openai.responses.create({        model: 'gpt-5.1-codex-max',        input: 'What improvements are in GPT‑5.1-Codex-Max?'    });
        return new Response(JSON.stringify(response), {        headers: { 'Content-Type': 'application/json' }    });};
    ```
    
    GPT-5.1-Codex-Max is available across Background Functions, Scheduled Functions, and Edge Functions. You get automatic access to Netlify’s caching, rate limiting, and authentication infrastructure.
    
    Learn more in the [AI Gateway documentation](https://docs.netlify.com/build/ai-gateway/overview/).
    
    You can also leverage GPT-5.1-Codex-Max with Agent Runners to build powerful AI-powered workflows, including expanded tool use and support for long-running agent tasks. Learn more in the [Agent Runners documentation](https://docs.netlify.com/build/build-with-ai/agent-runners/overview/).
    
    [Permalink to GPT-5.1-Codex-Max now available in AI Gateway and Agent Runners Permalink](/changelog/gpt-5-1-codex-max-ai-gateway-agent-runners/)
    
-   [
    
    ## Claude Opus 4.5 now live in AI Gateway, plus latest Claude Code via Agent Runners
    
    ](/changelog/claude-opus-4-5-ai-gateway-agent-runners/)
    
    November 24, 2025
    
    -   [ai gateway](/changelog/tag/ai-gateway/)
    -   [agent runners](/changelog/tag/agent-runners/)
    
    Anthropic’s Claude Opus 4.5 model is now available through Netlify’s AI Gateway with zero configuration required.
    
    Use the Anthropic SDK directly in your Netlify Functions without managing API keys or authentication. The AI Gateway handles everything automatically. Here’s an example using the Claude Opus 4.5 model:
    
    ```
    import Anthropic from "@anthropic-ai/sdk";
    export default async () => {  const anthropic = new Anthropic();
      const response = await anthropic.messages.create({    model: "claude-opus-4-5-20251101",    max_tokens: 4096,    messages: [      {        role: "user",        content: "Give me pros and cons of using claude-opus-4-5-20251120 over other models."      },    ],  });
      return new Response(JSON.stringify(response), {    headers: { "Content-Type": "application/json" }  });}
    ```
    
    Claude Opus 4.5 is available across Background Functions, Scheduled Functions, and Edge Functions. You get automatic access to Netlify’s caching, rate limiting, and authentication infrastructure.
    
    Learn more in the [AI Gateway documentation](https://docs.netlify.com/build/ai-gateway/overview/).
    
    You can also access the newest Claude Code capabilities via Agent Runners, including expanded tool use and support for long-running agent workflows. Learn more in the [Agent runner documentation](https://docs.netlify.com/build/agent-runners/).
    
    [Permalink to Claude Opus 4.5 now live in AI Gateway, plus latest Claude Code via Agent Runners Permalink](/changelog/claude-opus-4-5-ai-gateway-agent-runners/)
    
-   [
    
    ## Gemini 3 now available in AI Gateway and Agent Runners
    
    ](/changelog/gemini-3-ai-gateway-agent-runners/)
    
    November 18, 2025
    
    -   [ai gateway](/changelog/tag/ai-gateway/)
    -   [agent runners](/changelog/tag/agent-runners/)
    
    Google’s Gemini 3 Pro Preview model is now available through Netlify’s AI Gateway and Agent Runners with zero configuration required.
    
    Use the Google GenAI SDK directly in your Netlify Functions without managing API keys or authentication. The AI Gateway handles everything automatically. Here’s an example using the Gemini 3 Pro Preview model:
    
    ```
    import { GoogleGenAI } from "@google/genai";
    export default async (request: Request, context: Context) => {  const ai = new GoogleGenAI({});
      const response = await ai.models.generateContent({    model: "gemini-3-pro-preview",    contents: "Explain why gemini 3 is better than other models",  });
      return new Response(JSON.stringify({ answer: response.text }), {    headers: { "Content-Type": "application/json" }  });};
    ```
    
    Gemini 3 is available across Background Functions, Scheduled Functions, and Agent Runners. You get automatic access to Netlify’s caching, rate limiting, and authentication infrastructure.
    
    Learn more in the [AI Gateway documentation](https://docs.netlify.com/build/ai-gateway/overview/) and [Agent Runners documentation](https://docs.netlify.com/build/build-with-ai/agent-runners/overview/).
    
    [Permalink to Gemini 3 now available in AI Gateway and Agent Runners Permalink](/changelog/gemini-3-ai-gateway-agent-runners/)
    

[Previous page](/changelog/tag/agent-runners/page/3)