• bitcoinBitcoin(BTC)$77,264.000.07%
  • ethereumEthereum(ETH)$2,522.432.28%
  • tetherTether(USDT)$1.000.02%
  • binancecoinBNB(BNB)$734.313.00%
  • rippleXRP(XRP)$1.371.17%
  • usd-coinUSDC(USDC)$1.000.00%
  • solanaSolana(SOL)$101.671.96%
  • tronTRON(TRX)$0.3394070.26%
  • Figure HelocFigure Heloc(FIGR_HELOC)$1.02-1.77%
  • zcashZcash(ZEC)$1,148.613.29%
  • HyperliquidHyperliquid(HYPE)$79.02-1.18%
  • dogecoinDogecoin(DOGE)$0.0846891.07%
  • RainRain(RAIN)$0.015138-3.67%
  • moneroMonero(XMR)$545.277.61%
  • USDSUSDS(USDS)$1.000.01%
  • whitebitWhiteBIT Coin(WBT)$80.240.36%
  • chainlinkChainlink(LINK)$11.570.72%
  • leo-tokenLEO Token(LEO)$9.120.31%
  • cardanoCardano(ADA)$0.2090090.65%
  • stellarStellar(XLM)$0.1805382.46%
  • bitcoin-cashBitcoin Cash(BCH)$231.852.19%
  • Ethena USDeEthena USDe(USDE)$1.000.03%
  • daiDai(DAI)$1.00-0.01%
  • USD1USD1(USD1)$1.000.02%
  • litecoinLitecoin(LTC)$54.131.96%
  • uniswapUniswap(UNI)$6.364.66%
  • CantonCanton(CC)$0.0987420.24%
  • the-open-networkGram (prev. Toncoin)(GRAM)$1.381.91%
  • Global DollarGlobal Dollar(USDG)$1.000.00%
  • avalanche-2Avalanche(AVAX)$7.46-0.26%
  • hedera-hashgraphHedera(HBAR)$0.0746670.39%
  • nearNEAR Protocol(NEAR)$2.37-3.43%
  • shiba-inuShiba Inu(SHIB)$0.0000053.06%
  • suiSui(SUI)$0.73-1.32%
  • crypto-com-chainCronos(CRO)$0.0576001.58%
  • paypal-usdPayPal USD(PYUSD)$1.000.00%
  • BlackRock USD Institutional Digital Liquidity FundBlackRock USD Institutional Digital Liquidity Fund(BUIDL)$1.000.00%
  • MemeCoreMemeCore(M)$1.201.72%
  • tether-goldTether Gold(XAUT)$4,349.670.20%
  • Circle USYCCircle USYC(USYC)$1.140.03%
  • Ripple USDRipple USD(RLUSD)$1.000.00%
  • okbOKB(OKB)$114.533.52%
  • BittensorBittensor(TAO)$234.89-0.26%
  • Ondo US Dollar YieldOndo US Dollar Yield(USDY)$1.14-0.20%
  • aaveAave(AAVE)$126.232.87%
  • mantleMantle(MNT)$0.58-0.34%
  • pax-goldPAX Gold(PAXG)$4,353.880.19%
  • AsterAster(ASTER)$0.69-2.81%
  • World Liberty FinancialWorld Liberty Financial(WLFI)$0.0567282.13%
  • polkadotPolkadot(DOT)$1.05-7.01%
TradePoint.io
  • Main
  • AI & Technology
  • Stock Charts
  • Market & News
  • Business
  • Finance Tips
  • Trade Tube
  • Blog
  • Shop
No Result
View All Result
TradePoint.io
No Result
View All Result

OpenAI Launches the Agents API in Public Beta, Putting the Codex Harness Behind One API Call

September 10, 2026
in AI & Technology
Reading Time: 20 mins read
A A
OpenAI Launches the Agents API in Public Beta, Putting the Codex Harness Behind One API Call
ShareShareShareShareShare

OpenAI has released the Agents API in public beta. It gives developers the same harness and infrastructure that run Codex. OpenAI hosts and maintains the harness. Developers run the agent’s compute in an OpenAI-managed sandbox, their own infrastructure, or a partner sandbox.

Is it deployable? Yes. It is live for all developers in public beta. Data stays US-only, and Zero Data Retention is unsupported.

What OpenAI Shipped

The Agents API is a managed service built on the open-source Codex harness. OpenAI team states scaling Codex and ChatGPT for Work showed what long-running agents need. They need a harness that manages context, uses tools efficiently, and coordinates subagents. They also need infrastructure that keeps them running reliably for days.

The official docs organize the API around 4 concepts:

  • Agent: the model, instructions, tools, and MCP servers available to it.
  • Environment: an optional sandbox where the agent accesses files, loads skills, and runs commands.
  • Session: a durable agent instance that works on tasks and responds to input.
  • Events and items: the inputs sent to the agent and the output it produces.

A session runs in 4 steps. You create it and give it a task. Then you follow progress through streaming or webhooks. Finally, you continue with a new task or steer the current turn.

One API Call

OpenAI’s announcement shows an incident-investigation agent created in a single call:

import OpenAI from "openai";

const client = new OpenAI();

const session = await client.beta.agents.sessions.create({
  agent: {
    model: "gpt-6-astra",
    tools: [
      {
        type: "mcp",
        server_label: "observability",
        transport: {
          type: "http",
          server_url: "https://observability.example.com/mcp",
        },
      },
    ],
    multi_agent: { enabled: true, max_concurrent_subagents: 3 },
  },
  vault_ids: ["vault_YOUR_VAULT_ID"],
  environment: {
    type: "openai_hosted",
    capability_directories: ["/workspace/capabilities/skills"],
  },
  input:
    "Investigate service-api's elevated 5xx rate over the last 30 minutes. " +
    "Delegate deployment, error, and dependency analysis to subagents. " +
    "Save findings, evidence, and recommended mitigation in /workspace/outputs.",
});

The quickstart covers API key permissions and SDK setup.

Where the Agent Runs

Environment choice is the main architectural decision. The Agents API supports 3 sandbox options, and it can also run without a sandbox.

  • OpenAI-hosted sandbox: uses the sandboxing infrastructure behind Codex and ChatGPT. You can configure it with files, packages, skills, and plugins.
  • Self-hosted: you run codex exec-server inside your environment. It registers with a restricted key and connects over WebSocket. All connections are outbound.
  • Partner sandboxes: Blaxel, Cloudflare, Daytona, DigitalOcean, E2B, Modal, Oracle, Runloop, and Vercel have first-class integrations.

What the Harness Handles

OpenAI maintains the harness alongside its models, with versioned access at each model launch.

  • Long sessions: The API automatically compacts earlier context as a session nears its limit. Developers do not write their own compaction logic.
  • Efficient tool use: Tool search loads tool definitions only when needed. This reduces token usage and cost while preserving the model’s cache. Programmatic tool calling lets agents run calls in parallel and chain operations. Agents filter or combine results in code, so only relevant data returns into context. Supported tools include MCP, custom functions, and built-in tools like web search.
  • Subagents: With multi-agent support, the main agent splits complex tasks into independent pieces. Each subagent keeps its own context. The main agent coordinates them and combines the results.

Agents API vs Agents SDK vs Responses API

OpenAI’s runtime comparison positions the 3 options this way:

Agents API Agents SDK Responses API
Where the agent runs OpenAI runs a managed Codex harness Inside your application Your application, with optional hosted orchestration
Integration effort Low Medium High
State between tasks Saved session configuration, turns, and items Your storage and SDK sessions Manual history, response chaining, or Conversations
Execution environment OpenAI-hosted, self-hosted, or no sandbox Your runtime and sandbox providers Your own environment

Early Customer Results

OpenAI published these customer-reported numbers. They are vendor-supplied, not independent benchmarks.

  • Ciridae: evaluation score rose from 0.71 to 0.85, with a 4x latency reduction on subagent flows.
  • SafetyKit: 60% lower cost per case after migrating its case review workflow.
  • Hypha: 86% fewer failed agent responses after separating the harness from the sandbox.
  • Nash.ai: runs thousands of long-running agents across global logistics networks.

Key Takeaways

  • OpenAI’s Agents API exposes the managed Codex harness as a public beta API.
  • Agents run in OpenAI-hosted, self-hosted, or 9 partner sandboxes.
  • Compaction, tool search, programmatic tool calling, and subagents come built in.
  • There is no extra fee; you pay for tokens, tools, and container time.
  • US-only data residency and no ZDR limit regulated workloads for now.

Check out the Technical details. Also, feel free to follow us on Twitter and don’t forget to join our 150k+ML SubReddit and Subscribe to our Newsletter. Wait! are you on telegram? now you can join us on telegram as well.

Need to partner with us for promoting your GitHub Repo OR Hugging Face Page OR Product Release OR Webinar etc.? Connect with us

Credit: Source link

ShareTweetSendSharePin

Related Posts

Everybody’s Business: Unpacking Apple’s Upcoming Launches
AI & Technology

Everybody’s Business: Unpacking Apple’s Upcoming Launches

September 12, 2026
Why Laser Beams Are the Hottest New Tech in Defense
AI & Technology

Why Laser Beams Are the Hottest New Tech in Defense

September 12, 2026
Why Amazon Is Diversifying Its AI Chip Supply
AI & Technology

Why Amazon Is Diversifying Its AI Chip Supply

September 12, 2026
AI Healthcare Startup Forus Hits  Billion Valuation
AI & Technology

AI Healthcare Startup Forus Hits $3 Billion Valuation

September 12, 2026
Next Post
Seattle business leaders call on mayor to tackle public safety crisis

Seattle business leaders call on mayor to tackle public safety crisis

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Search

No Result
View All Result
XPENG Commissions Humanoid Robot Lines as IRON Walks Off Production – Unite.AI

XPENG Commissions Humanoid Robot Lines as IRON Walks Off Production – Unite.AI

September 8, 2026
Starbucks spends B on comfy armchairs, plants to lure lonely customers back to coffee shops

Starbucks spends $1B on comfy armchairs, plants to lure lonely customers back to coffee shops

September 10, 2026
Sandisk: It's The Perfect Time To Load Up

Sandisk: It's The Perfect Time To Load Up

September 6, 2026

About

Learn more

Our Services

Legal

Privacy Policy

Terms of Use

Bloggers

Learn more

Article Links

Contact

Advertise

Ask us anything

©2020- TradePoint.io - All rights reserved!

Tradepoint.io, being just a publishing and technology platform, is not a registered broker-dealer or investment adviser. So we do not provide investment advice. Rather, brokerage services are provided to clients of Tradepoint.io by independent SEC-registered broker-dealers and members of FINRA/SIPC. Every form of investing carries some risk and past performance is not a guarantee of future results. “Tradepoint.io“, “Instant Investing” and “My Trading Tools” are registered trademarks of Apperbuild, LLC.

This website is operated by Apperbuild, LLC. We have no link to any brokerage firm and we do not provide investment advice. Every information and resource we provide is solely for the education of our readers. © 2020 Apperbuild, LLC. All rights reserved.

No Result
View All Result
  • Main
  • AI & Technology
  • Stock Charts
  • Market & News
  • Business
  • Finance Tips
  • Trade Tube
  • Blog
  • Shop

© 2023 - TradePoint.io - All Rights Reserved!