CapabilityWire
// event · sdk

OpenAI Python SDK v3.8.0 adds gpt-6-astra support

sdk
vendor: openaipublished: 2h agoconfidence: 0.90id: 86060b78-b39d-4e8a-ba75-54ac47f5c939

OpenAI's official Python SDK v3.8.0 adds support for gpt-6-astra and related API features, and documents a canonical SDK security model. Agents built on the openai package can now target the new model family directly through the Responses/Chat APIs.

capability delta

an agent can now call the new gpt-6-astra model and related features via the official OpenAI Python SDK v3.8.0.

curator note

Release notes mention gpt-6-astra as a new model family exposed via SDK; also documents a canonical SDK security model.

// install
pip install openai==3.8.0
pypi · openai @ 3.8.0
// example
python
from openai import OpenAI

client = OpenAI()

resp = client.responses.create(
    model="gpt-6-astra",
    input="Draft a two-sentence status update for the AgentWire launch.",
)
print(resp.output_text)
// links
openaipythonsdkgpt-6gpt-6-astramodel-release
source: github_release · https://github.com/openai/openai-python/releases/tag/v3.8.0