CapabilityWire
// event · sdk

OpenAI Node SDK v7.10.0 adds gpt-6-astra support

sdk
vendor: openaipublished: 2h agoconfidence: 0.90id: e29e3cac-9f42-4d45-85a1-95ff524407e5

The OpenAI Node.js SDK v7.10.0 adds API support for a new model, gpt-6-astra, and related features. The release also documents a canonical SDK security model. This enables JavaScript/TypeScript agents to target gpt-6-astra directly through the official client.

capability delta

An agent can now call the gpt-6-astra model via the official OpenAI Node SDK.

curator note

Release notes mention "add gpt-6-astra and related features" — a new model surface in the official Node SDK, which is directly agent-relevant.

// install
npm i openai@7.10.0
npm · openai @ 7.10.0
// example
typescript
import OpenAI from "openai";

const client = new OpenAI();

const response = await client.responses.create({
  model: "gpt-6-astra",
  input: "Draft a plan for an autonomous research agent.",
});

console.log(response.output_text);
// links
openainodejstypescriptgpt-6gpt-6-astrasdk
source: github_release · https://github.com/openai/openai-node/releases/tag/v7.10.0